/* ===================  RESET & BASE  =================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }
    
    body {
      font-family: var(--font-primary);
      line-height: 1.6;
      color: var(--text-primary);
      background-color: var(--white);
      font-size: 16px;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 1rem;
      color: var(--black);
    }
    
    /* Tamanhos reduzidos e mais proporcionais */
    h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
    h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
    h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
    
    p {
      margin-bottom: 1rem;
      line-height: 1.7;
      color: var(--text-primary);
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    /* ===================  LAYOUT UTILITIES  =================== */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 15px; /* Reduzido */
    }
    
    .section {
      padding: 80px 0; /* Reduzido de 120px */
      position: relative;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 4rem; /* Reduzido */
      max-width: 800px; /* Reduzido */
      margin-left: auto;
      margin-right: auto;
    }
    
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem); /* Muito reduzido */
      font-weight: 700;
      color: var(--black);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }
    
    .section-subtitle {
      font-size: 1.1rem; /* Reduzido */
      color: var(--gray);
      line-height: 1.6;
      margin-top: 1.5rem;
      max-width: 600px; /* Mais estreito */
      margin-left: auto;
      margin-right: auto;
    }

    /* ===================  BUTTONS  =================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px; /* Reduzido */
      border: none;
      border-radius: var(--radius);
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 15px; /* Reduzido */
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      min-width: 200px; /* Reduzido */
    }
    
    .btn-primary {
      background: var(--gradient-primary);
      color: var(--white);
      box-shadow: var(--shadow);
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    
    .btn-secondary:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-2px);
    }
    
    .btn-outline {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
    }
    
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    /* ===================  CARDS  =================== */
    .card {
      background: var(--white);
      border-radius: var(--radius-large);
      padding: 2rem; /* Reduzido */
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
      max-width: 380px; /* Limitado */
      margin: 0 auto;
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-primary);
    }
    
    .card:hover {
      transform: translateY(-8px); /* Reduzido */
      box-shadow: var(--shadow-lg);
    }
    
    .card-icon {
      width: 70px; /* Reduzido */
      height: 70px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    /* ===================  HEADER & NAVIGATION  =================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgb(255 255 255);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      /* transition: var(--transition); */
    }
    
    .header.scrolled {
      background: rgb(255 255 255);
      box-shadow: var(--shadow);
    }
    
    .nav {
      padding: 1rem 0; /* Reduzido */
    }
    
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .logo img {
      /* height: 50px; */ /* Reduzido */
      width: auto;
      transition: var(--transition);
    }
    
    .nav-menu {
      display: flex;
      gap: 2rem;
      align-items: center;
    }
    
    .nav-link {
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: 15px;
      color: var(--black);
      position: relative;
      padding: 0.5rem 0;
      transition: var(--transition);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: var(--transition);
      border-radius: 2px;
    }
    
    .nav-link:hover {
      color: var(--primary);
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
    }
    
    .nav-toggle span {
      width: 25px;
      height: 3px;
      background: var(--black);
      margin: 3px 0;
      transition: var(--transition);
      border-radius: 2px;
    }

    /* ===================  HERO SECTION  =================== */
    .hero {
      min-height: 100vh; /* Reduzido */
      background: var(--gradient-overlay), url("../../images/banner.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(212, 175, 55, 0.1));
      z-index: 1;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      /* max-width: 800px; */ /* Reduzido */
      padding: 2em 0;
      margin-top: 6rem;
    }
    
    .hero-title {
      font-size: clamp(2.2rem, 5vw, 4rem); /* Muito reduzido */
      font-weight: 700;
      color: var(--primary-light);
      margin-bottom: 0.5rem;
      /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); */
    }
    
    .hero-subtitle {
      font-size: clamp(1.3rem, 3vw, 2rem); /* Reduzido */
      font-weight: 600;
      color: var(--primary-light);
      margin-bottom: 1.5rem;
      line-height: 1.3;
      /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3); */
    }
    
    .hero-description {
      font-size: clamp(1rem, 2.5vw, 1.3rem); /* Reduzido */
      margin-bottom: 2.5rem;
      font-weight: 300;
      line-height: 1.6;
      opacity: 1; /* Removido opacity reduzida */
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      color: #fff;
    }
    
    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ===================  GRID LAYOUTS  =================== */
    .benefits-grid,
    .treatments-grid,
    .team-grid,
    .features-grid,
    .harmony-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Reduzido */
      gap: 2rem; /* Reduzido */
    }

    /* ===================  BENEFITS SECTION  =================== */
    .benefits {
      background: var(--accent-light);
      position: relative;
    }
    
    .benefits-intro {
      text-align: center;
      max-width: 95%;
      margin: 0 auto 4rem;
    }
    
    .benefits-intro h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 1.5rem;
      color: var(--black);
      font-weight: 700;
    }
    
    .benefits-intro p {
      font-size: 1.1rem;
      color: var(--text-primary);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    
    .highlight-text {
      background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-light) 100%);
      background-repeat: no-repeat;
      background-size: 100% 0.3em;
      background-position: 0 88%;
      font-weight: 600;
      color: var(--black);
      padding: 0 4px;
    }
    
    .benefit-card {
      background: var(--white);
      padding: 2rem;
      border-radius: var(--radius-large);
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      max-width: 380px;
      margin: 0 auto;
    }
    
    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-primary);
    }
    
    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    
    .benefit-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--white);
      margin: 0 auto 1.5rem;
    }
    
    .benefit-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--secondary);
      font-weight: 600;
    }
    
    .benefit-card p {
      color: var(--text-primary);
      line-height: 1.6;
      margin-bottom: 0;
      font-size: 1rem;
    }

    /* ===================  ABOUT SECTION  =================== */
    .about {
      padding: 80px 0;
      background: var(--white);
    }
    
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }
    
    .about-image {
      position: relative;
    }
    
    .about-image img {
      width: 100%;
      border-radius: var(--radius-large);
      /* box-shadow: var(--shadow-lg); */
    }
    
    .about-text h2 {
      text-align: left;
      margin-bottom: 1.5rem;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--black);
      position: relative;
    }
    
    .about-text h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }
    
    .about-text p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }
    
    .about-cta {
      margin-top: 2rem;
      text-align: center;
    }

    /* ===================  TREATMENTS SECTION  =================== */
    .treatments {
      background: var(--gray-light);
      position: relative;
    }
    
    .treatment-card {
      background: var(--white);
      border-radius: var(--radius-large);
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      max-width: 380px;
      margin: 0 auto;
    }
    
    .treatment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-primary);
    }
    
    .treatment-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    
    .treatment-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    
    .treatment-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--secondary);
      font-weight: 600;
    }
    
    .treatment-card p {
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-size: 1rem;
    }
    
    .treatment-list {
      list-style: none;
    }
    
    .treatment-list li {
      padding: 0.6rem 0;
      color: var(--text-primary);
      font-size: 14px;
      position: relative;
      padding-left: 1.5rem;
      transition: var(--transition);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .treatment-list li:last-child {
      border-bottom: none;
    }
    
    .treatment-list li::before {
      content: '✨';
      position: absolute;
      left: 0;
      top: 0.6rem;
      font-size: 12px;
      color: var(--primary);
    }

    /* ===================  LASER SECTION  =================== */
    .laser-section {
      background: var(--white);
      text-align: center;
      position: relative;
    }
    
    .laser-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--black);
      margin-bottom: 1rem;
    }
    
    .laser-description {
      font-size: 1.2rem;
      color: var(--text-primary);
      margin-bottom: 2.5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }
    
    .laser-image {
      margin: 2.5rem 0;
    }
    
    .laser-image img {
      width: 100%;
      max-width: 750px;
      margin: 0 auto;
      border-radius: var(--radius-large);
      box-shadow: var(--shadow-lg);
    }

    /* ===================  BODY AESTHETICS SECTION  =================== */
    .body-aesthetics {
      background: var(--accent-light);
      min-height: 100vh; /* Reduzido */
      background: var(--gradient-overlay), url("../../images/07.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .body-image {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .body-image img {
      width: 100%;
      /* max-width: 500px; */
      border-radius: var(--radius-large);
      box-shadow: var(--shadow-lg);
    }
    
    .feature-card {
      background: var(--white);
      padding: 2rem;
      border-radius: var(--radius-large);
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: left;
      max-width: 380px;
      margin: 0 auto;
    }
    
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 1rem;
    }
    
    .feature-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 0.8rem;
    }
    
    .feature-card p {
      color: var(--text-primary);
      line-height: 1.6;
      margin-bottom: 0;
      font-size: 1rem;
    }

    /* ===================  FACIAL HARMONY SECTION  =================== */
    .facial-harmony {
      background: var(--white);
    }
    
    .harmony-card {
      background: var(--white);
      border-radius: var(--radius-large);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      max-width: 380px;
      margin: 0 auto;
    }
    
    .harmony-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    
    .harmony-image img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    
    .harmony-content {
      padding: 2rem;
    }
    
    .harmony-content h3 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      color: var(--secondary);
    }
    
    .harmony-content p {
      color: var(--text-primary);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    /* ===================  DOCTOR SECTION  =================== */
    .doctor {
      background: var(--gray-light);
    }
    
    .doctor-content {
      display: grid;
      grid-template-columns: 350px 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    .doctor-image img {
      width: 100%;
      border-radius: var(--radius-large);
      box-shadow: var(--shadow-lg);
    }
    
    .doctor-text h2 {
      text-align: left;
      margin-bottom: 0.8rem;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--secondary);
      position: relative;
    }
    
    .doctor-text h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }
    
    .doctor-text h3 {
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }
    
    .doctor-text p {
      margin-bottom: 1.5rem;
      line-height: 1.7;
      color: var(--text-primary);
      font-size: 1.05rem;
    }
    
    .credentials {
      list-style: none;
      margin: 2rem 0;
      background: var(--white);
      padding: 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }
    
    .credentials li {
      padding: 0.8rem 0;
      color: var(--secondary);
      font-weight: 500;
      position: relative;
      padding-left: 2rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      font-size: 15px;
    }
    
    .credentials li:last-child {
      border-bottom: none;
    }
    
    .credentials li::before {
      content: '💠';
      position: absolute;
      left: 0;
      top: 0.8rem;
      font-size: 14px;
    }

    /* ===================  TEAM SECTION  =================== */
    .team {
      background: var(--accent-light);
    }
    
    .team-card {
      background: var(--white);
      border-radius: var(--radius-large);
      padding: 2.1rem 0.7rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      max-width: 320px;
      margin: 0 auto;
    }
    
    .team-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-primary);
    }
    
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    
    .team-avatar {
      width: 100px;
      height: 100px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--white);
      font-weight: 600;
      margin: 0 auto 1.5rem;
    }
    
    .team-card h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--secondary);
      font-weight: 600;
    }
    
    .team-specialty {
      color: var(--text-primary);
      font-size: 14px;
      line-height: 1.5;
    }

    /* ===================  RESULTS SECTION  =================== */
    .results {
      background: var(--white);
    }
    
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-large);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-lg);
    }
    
    .gallery img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    /* ===================  CONTACT SECTION  =================== */
    .contact {
      background: var(--gray-light);
    }
    
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    
    .contact-form {
      background: var(--white);
      padding: 2.5rem;
      border-radius: var(--radius-large);
      box-shadow: var(--shadow);
      position: relative;
    }
    
    .contact-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: var(--radius-large) var(--radius-large) 0 0;
    }
    
    .contact-form h3 {
      margin-bottom: 1.5rem;
      color: var(--secondary);
      font-size: 1.5rem;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--black);
      font-size: 14px;
    }
    
    .form-input {
      width: 100%;
      padding: 1rem 1.2rem;
      border: 2px solid var(--gray-medium);
      border-radius: var(--radius);
      font-size: 15px;
      font-family: var(--font-primary);
      transition: var(--transition);
      background: var(--white);
    }
    
    .form-input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }
    
    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .contact-info {
      background: var(--white);
      padding: 2.5rem;
      border-radius: var(--radius-large);
      box-shadow: var(--shadow);
      position: relative;
    }
    
    .contact-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: var(--radius-large) var(--radius-large) 0 0;
    }
    
    .contact-info h3 {
      margin-bottom: 2rem;
      color: var(--secondary);
      font-size: 1.5rem;
      text-align: center;
    }
    
    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
      padding: 1.2rem;
      background: var(--accent-light);
      border-radius: var(--radius);
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    
    .info-item:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow);
    }
    
    .info-icon {
      font-size: 1.5rem;
      margin-right: 1rem;
      width: 35px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    
    .info-text {
      color: var(--text-primary);
      line-height: 1.6;
    }
    
    .info-text strong {
      color: var(--secondary);
      display: block;
      margin-bottom: 0.3rem;
      font-weight: 600;
      font-size: 1rem;
    }

    /* ===================  FOOTER  =================== */
    .footer {
      background: var(--secondary);
      color: var(--white);
      text-align: center;
      padding: 2.5rem 0;
    }
    
    .footer p {
      color: #eee4e4;
      margin-bottom: 0.8rem;
      opacity: 0.9;
      font-size: 15px;
      line-height: 1.5;
    }
    
    .footer a {
      color: var(--primary-light);
      font-weight: 600;
      transition: var(--transition);
    }
    
    .footer a:hover {
      color: var(--white);
      text-decoration: underline;
    }

    /* ===================  RESPONSIVE DESIGN  =================== */
    @media (max-width: 1024px) {
      .doctor-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }
      
      .doctor-text h2::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }
    
    @media (max-width: 768px) {
      .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-radius: 0 0 var(--radius-large) var(--radius-large);
      }
      
      .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      
      .nav-toggle {
        display: flex;
      }
      
      .hero {
        min-height: 80vh;
        padding: 1.5rem 0;
      }
      
      .hero-cta {
        flex-direction: column;
        align-items: center;
      }
      
      .about-content,
      .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }
      
      .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .section {
        padding: 60px 0;
      }
      
      .container {
        padding: 0 15px;
      }
      
      .benefits-grid,
      .treatments-grid,
      .team-grid,
      .features-grid,
      .harmony-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      .contact-form,
      .contact-info {
        padding: 2rem 1.5rem;
      }
		.features-grid {
     grid-template-columns: 1fr !important;
    gap: 2rem !important;
    }
	.features-grid .feature-card {
    max-width: auto;
}
    }
    
    @media (max-width: 480px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.3rem;
      }
      
      .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-width: 180px;
      }
      
      .card,
      .benefit-card,
      .treatment-card,
      .team-card,
      .feature-card {
        padding: 1.5rem 1.2rem;
      }
      
      .nav {
        padding: 0.8rem 0;
      }
      
      .logo img {
        height: 45px;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }

i.fa-solid.fa-spa{font-size:21px}

h3.fas.fa-spa {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 13px;
    border-radius: 100px;
}

.feature-list h3:before {
				display: block;
				color: #fff;
				background: #2f333b url("images/overlay.png");
				border-radius: 2.5em;
				text-align: center;
				width: 2.5em;
				height: 2.5em;
				line-height: 2.5em;
				margin-right: 0.75em;
				position: absolute;
				left: 0;
				margin-top: -0.5em;
			}
			
 /* ===================  GRID LAYOUTS  =================== */
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));/* Reduzido */
	gap: 1rem !important;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(470px, 1fr));/* Reduzido */
	gap: 2rem !important;
}
.features-grid .feature-card {
    max-width: 100%;
}

section.body-aesthetics.section .section-title {
    color: var(--primary-light);
}
section.body-aesthetics.section .section-subtitle{
	 color: #fff;
}

ul#navMenu li {
    /* border: 1px solid #000; */
    list-style: none;
}
span.topicos {
    font-size: 0.8em;
    font-weight: 600;
}

.btn_text-center {
    align-items: center;
    text-align: center;
}

/* ======= ESTRUTURA (GALERIA + VÍDEO) ======= */
#structure { background: var(--white); }
#structure .media { display: grid; grid-template-columns: 1fr .8fr; gap: 2rem; align-items: start; }
@media (max-width: 900px){ #structure .media{ grid-template-columns: 1fr; } }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .75rem; }
.gallery-grid a { position: relative; overflow: hidden; border-radius: var(--radius); display:block; }
.gallery-grid img { width:100%; height:140px; object-fit: cover; transition: transform var(--transition); }
.gallery-grid a:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox{ position:fixed; inset:0; background:rgba(0,0,0,.8); display:none; align-items:center; justify-content:center; padding:2rem; z-index:1100; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width:90vw; max-height:80vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox .close, .lightbox .prev, .lightbox .next{ position:absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.6); color:#fff; border:none; padding:.6rem .8rem; cursor:pointer; border-radius: .4rem; }
.lightbox .close{ top: 2rem; right:2rem; transform:none; }
.lightbox .prev{ left: 1rem; }
.lightbox .next{ right: 1rem; }

/* Vídeo */
.video-wrap{ position: relative; width:100%; aspect-ratio:16/9; background:#000; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.video-wrap video{ width:100%; height:100%; display:block; }
.video-caption { font-size:.95rem; color: var(--brown); margin-top:.75rem; }
