/*************************** GLOBAL STYLES ***************************/
:root {
  --white: #ffffff;
  --black: #000000;
  --ks-pink-accent: #a20d61;
  --ks-vivid_pink: #790051;
  --ks-dark_pink: #6e003d;
  --ks-sand: #ecc38e;
  --ks-light_sand: #fff5e1;
  --ks-dark_sand: #6f512d;
}

/* RESET BÁSICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "archivo", sans-serif;
  background-color: #1d0211;
  color: #333;
  margin: 0;
  padding: 0;
}

main {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* CONTAINER CENTRAL */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER COM BACKGROUND */
.bio-header {
  width: 100%;
  height: 55vh;
  min-height: 450px;
  max-height: 650px;
  background-image: url(https://growcleanerpro.com/links/assets/images/link-bio-kamila-01.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

/* CONTAINER DO HERO */
.container-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* ÍCONES SOCIAIS */
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--ks-pink-accent);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icons a:hover {
  background-color: var(--ks-vivid_pink);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(162, 13, 97, 0.4);
}

/* LINK BUTTONS SECTION */
.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px 20px;
  padding-bottom: 30px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.link-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(to top, #6f512d, #ecc38e);
  border: 2px solid #b58a5d;
  border-radius: 100px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.link-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: #a57a50;
}

.link-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-color: #e6bd8a;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 16px;
  padding: 4px;
  overflow: visible;
}

.link-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 3px;
}

.link-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.link-btn-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d0211;
  text-transform: none;
  margin-bottom: 1px;
  font-family: "argent-cf", sans-serif;
}

.link-btn-subtitle {
  font-family: "archivo", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #1d0211;
  line-height: 1.25;
}

/* MEDIA QUERY PARA MOBILE */
@media (max-width: 768px) {
  .bio-header {
    width: 100%;
    height: 45vh;
    min-height: 200px;
    max-height: 430px;
    background-image: url(https://growcleanerpro.com/links/assets/images/link-bio-kamila-01.jpg);
    background-size: 300%;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .container-hero {
    padding: 16px;
    padding-bottom: 24px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .link-buttons {
    padding: 14px 16px;
    padding-bottom: 30px;
    gap: 20px;
  }

  .link-btn-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    margin-right: 14px;
  }

  .link-btn-title {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    line-height: .8;
  }

  .link-btn-subtitle {
    font-size: 1rem;
  }
}

/*************************** CALC4CLEAN PAGE STYLES ***************************/

/* Hero Section */
.hero-section {
  padding: 60px 0;
  text-align: center;
}

.hero-content h2 {
  font-family: "argent-cf", sans-serif;
  font-size: 3rem;
  color: var(--ks-pink-accent);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--ks-dark_sand);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Waitlist Box */
.waitlist-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--ks-dark_sand);
}

/* Form Styles */
.waitlist-form {
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--ks-dark_sand);
  font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--ks-pink-accent);
}

/* Radio Group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: var(--ks-pink-accent);
  background-color: #fef0d6;
}

.radio-option input[type="radio"] {
  margin-right: 12px;
  transform: scale(1.2);
}

.radio-option input[type="radio"]:checked+.radio-custom {
  background-color: var(--ks-pink-accent);
}

/* Submit Button */
.btn-primary {
  background: linear-gradient(to right, var(--ks-pink-accent), var(--ks-vivid_pink));
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(162, 13, 97, 0.3);
}

/* Privacy Notice */
.privacy-notice {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-top: 20px;
  text-align: center;
}

.privacy-notice a {
  color: var(--ks-pink-accent);
  text-decoration: none;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: var(--white);
  margin: 40px -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.benefits-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.benefits-content h2 {
  font-family: "argent-cf", sans-serif;
  font-size: 2.5rem;
  color: var(--ks-pink-accent);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.benefits-intro {
  font-size: 1.3rem;
  color: var(--ks-dark_sand);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.benefits-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ks-dark_sand);
  margin-bottom: 2rem;
}

.benefits-highlight {
  background: linear-gradient(135deg, #fef0d6, #ecc38e);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.benefits-highlight p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ks-dark_sand);
  margin-bottom: 1rem;
}

.benefits-highlight p:last-child {
  margin-bottom: 0;
}

.benefits-conclusion {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ks-dark_sand);
  margin: 2rem 0;
}

.benefits-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ks-pink-accent);
  margin: 2rem 0;
  font-weight: 500;
}

.benefits-cta {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ks-dark_sand);
  margin-top: 2rem;
}

/* Profiles Section */
.profiles-section {
  padding: 80px 0;
}

.profiles-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.profiles-content h2 {
  font-family: "argent-cf", sans-serif;
  font-size: 2.5rem;
  color: var(--ks-pink-accent);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.profiles-intro {
  font-size: 1.2rem;
  color: var(--ks-dark_sand);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.profile-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-card h3 {
  font-family: "argent-cf", sans-serif;
  font-size: 1.8rem;
  color: var(--ks-pink-accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.profile-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ks-dark_sand);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .waitlist-box {
    padding: 30px 20px;
    margin: 20px 0;
  }

  .benefits-content h2,
  .profiles-content h2 {
    font-size: 2rem;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile-card {
    padding: 30px 20px;
  }

  .radio-group {
    gap: 10px;
  }

  .radio-option {
    padding: 12px;
  }
}

/* TEST 2 */


#flash-message {
  display: none;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(160 255 164);
  color: rgb(20 73 23);
  padding: 18px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-size: 1.1rem;
  z-index: 9999;
  transition: opacity 0.4s
}


.copyright {
  color: #ffffff5c;
  font-size: .8rem;
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .copyright {
    color: #ffffff5c;
    font-size: .9rem;
    text-align: center;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 10%;
    margin: 0 auto;
  }
}

