 :root {
     --bg: #0f0f10;
     --text: #f7f7f8;
     --muted: #cfcfd3;
     --brand: #e1b81f;
     /* rosa elegante */
     --brand-2: #624f0b;;
     --gold-light: #f5cc6e;
     /* tom complementar */
     --card: #151517;
     --stroke: #26262a;
     --success: #36c690;
     --danger: #ef6262;
     --shadow: 0 10px 30px rgba(0, 0, 0, .35);
     --text-dim: #b0b0b5;
     --font-display: 'Playfair Display', serif;
 }

 * {
     box-sizing: border-box
 }

 html,
 body {
     margin: 0;
     padding: 0;
     background: var(--bg);
     color: var(--text);
     font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
 }

 img {
     max-width: 100%;
     display: block
 }

 a {
     color: inherit;
     text-decoration: none
 }

 .container {
     width: 100%;
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px
 }

 header {
     position: sticky;
     top: 0;
     z-index: 50;
     background: rgba(15, 15, 16, .7);
     backdrop-filter: blur(8px);
     border-bottom: 1px solid var(--stroke)
 }

 .nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 64px
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 700
 }

 .logo .mark {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background:
         radial-gradient(circle at 30% 30%, var(--brand) 0%, var(--brand-2) 60%, #6b4254 100%);
     box-shadow: 0 6px 18px rgba(229, 161, 184, .35)
 }

 .links {
     display: flex;
     gap: 20px
 }

 .links a {
     padding: 8px 12px;
     border-radius: 10px;
     border: 1px solid transparent
 }

 .links a:hover {
     border-color: var(--stroke);
     background: rgba(255, 255, 255, .04);
     color: var(--text);
 }

 .cta {
     padding: 10px 16px;
     border-radius: 12px;
     background: var(--brand);
     color: #1a0f13;
     font-weight: 600;
     box-shadow: 0 8px 20px rgba(229, 161, 184, .35)
 }

 .cta:hover {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(225, 184, 31, 0.4);
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.btn-curso {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    color: #0f0f10;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(225, 184, 31, 0.3),
        0 0 20px rgba(225, 184, 31, 0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-curso:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(225, 184, 31, 0.4),
        0 0 50px rgba(225, 184, 31, 0.25);
}

.btn-curso::after {
    content: '→';
    transition: transform 0.3s ease;
}
 .menu-btn {
     display: none;
     background: none;
     border: none;
     color: var(--text);
     font-size: 22px
 }

 /* Hero */
 .hero {
     padding: 80px 0 40px;
     background:
         radial-gradient(1200px 600px at 80% -20%, rgba(229, 161, 184, .25), transparent 40%),
         radial-gradient(800px 400px at 10% 20%, rgba(155, 158, 106, 0.25), transparent 40%)
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1.1fr .9fr;
     gap: 32px;
     align-items: center
 }

 .eyebrow {
     color: var(--brand);
     letter-spacing: .12em;
     font-weight: 600;
     text-transform: uppercase;
     font-size: 12px
 }

 .title {
     font-family: "Playfair Display", serif;
     font-size: 52px;
     line-height: 1.05;
     margin: 10px 0 16px;
 }

 .subtitle {
     color: var(--muted);
     font-size: 18px;
 }

 .actions {
     display: flex;
     gap: 12px;
     margin-top: 22px;
     flex-wrap: wrap
 }

 .btn-secondary {
     padding: 10px 16px;
     border: 1px solid var(--stroke);
     border-radius: 12px;
     color: var(--text)
 }

 .btn-secondary:hover {
     background: rgba(255, 255, 255, .04);
     border-color: var(--stroke);
     color: var(--text)
 }

 .hero-card {
     background: linear-gradient(180deg, #161617, #111112);
     border: 1px solid var(--stroke);
     border-radius: 18px;
     padding: 18px;
     box-shadow: var(--shadow)
 }

 .hero-card .photo {
     aspect-ratio: 4/5;
     border-radius: 14px;
     overflow: hidden;
     border: 1px solid var(--stroke);
     background: linear-gradient(135deg, #1b1b1e, #242428)
 }

 .badges {
     display: flex;
     gap: 10px;
     margin-top: 14px;
     flex-wrap: wrap
 }

 .badge {
     font-size: 12px;
     padding: 6px 10px;
     border-radius: 999px;
     text-align: center;
     border: 1px solid var(--stroke);
     color: var(--muted)
 }

 .badge i {
     color: var(--brand);
     margin-right: 6px
 }

 /* Section */
 section {
     padding: 60px 0;
     border-top: 1px solid var(--stroke)
 }

 .section-title {
     font-family: "Playfair Display", serif;
     font-size: 32px;
     margin-bottom: 10px;
     color: var(--brand);
 }

 .section-sub {
     color: var(--muted);
     max-width: 680px
 }

 /* Serviços */
 .cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
     margin-top: 24px
 }

 .card {
     background: var(--card);
     border: 1px solid var(--stroke);
     border-radius: 16px;
     padding: 16px;
     transition: .2s;
     cursor: pointer;
 }

 .card:hover {
     transform: translateY(-2px);
     border-color: #35353a
 }

 .card h4 {
     color : var(--brand);
     margin-top: 20px;
     text-align: center;
     font-size: 18px;
     
 }
 
 .card p {
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  margin-top: 20px;
  text-indent: 20px;
}

 .tag {
     display: inline-block;
     font-size: 12px;
     color: #ddd;
     background: #1b1b1e;
     border: 1px solid var(--stroke);
     padding: 4px 8px;
     border-radius: 999px;
     margin-top: 8px
 }

 /* Galeria antes/depois */
 .gallery {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 12px;
     margin-top: 22px
 }

 .gallery .item {
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid var(--stroke)
 }

 .label {
     position: absolute;
     left: 8px;
     top: 8px;
     background: rgba(0, 0, 0, .5);
     color: #fff;
     font-size: 12px;
     padding: 4px 8px;
     border-radius: 999px
 }

 /* Depoimentos */
 .testimonials {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
     margin-top: 24px;
     text-align: center
 }

 .quote {
     background: var(--card);
     border: 1px solid var(--stroke);
     border-radius: 14px;
     padding: 16px
 }

 .stars {
     color: #f5cc6e;
     margin-bottom: 8px
     
 }

 .who {
     color: var(--muted);
     font-size: 14px;
     margin-top: 8px;
 }

 /* Agendamento */
 .form {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-top: 22px
 }

 .form .field {
     display: flex;
     flex-direction: column;
     gap: 8px
 }

 .form label {
     font-size: 14px;
     color: var(--muted)
 }

 .form input,
 .form select,
 .form textarea {
     background: #141416;
     border: 1px solid var(--stroke);
     color: var(--text);
     border-radius: 12px;
     padding: 10px 12px;
     outline: none
 }

 .form textarea {
     min-height: 110px;
     resize: vertical
 }

 .form .full {
     grid-column: 1/-1
 }

 .form .submit {
     grid-column: 1/-1;
     display: flex;
     gap: 12px;
     align-items: center
 }

 .note {
     color: var(--muted);
     font-size: 13px
 }

 /* Footer */
 footer {
    padding: 40px 0;
    border-top: 1px solid var(--stroke);
    color: var(--muted);
    max-width: 100%;   
    overflow-x: hidden; 
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px;
    width: 100%;       
    box-sizing: border-box;
}

 .social {
     display: flex;
     gap: 10px
 }

 .social a {
     border: 1px solid var(--stroke);
     padding: 8px 10px;
     border-radius: 10px
 }

 .bottom-bar{
    margin-top: 40px;
    font-size: 14px;
    text-align: center;
    color: var(--brand);
 }

 /* Responsivo */
 @media (max-width:980px) {
     .hero-grid {
         grid-template-columns: 1fr
     }

     .cards {
         grid-template-columns: repeat(2, 1fr)
     }

     .gallery {
         grid-template-columns: repeat(3, 1fr)
     }

     .testimonials {
         grid-template-columns: repeat(2, 1fr)
     }

     .foot-grid {
         grid-template-columns: 1fr 1fr
     }
 }

 @media (max-width:640px) {
     .links {
         display: none
     }

     .menu-btn {
         display: block
     }

     .title {
         font-size: 36px
     }

     .cards {
         grid-template-columns: 1fr
     }

     .gallery {
         grid-template-columns: repeat(2, 1fr)
     }

     .testimonials {
         grid-template-columns: 1fr
     }

     .form {
         grid-template-columns: 1fr
     }
        .foot-grid {
            grid-template-columns: 1fr
        }
 }

 /* Animações simples */
 .reveal {
     opacity: 0;
     transform: translateY(16px);
     transition: opacity .5s ease, transform .5s ease
 }

 .reveal.in {
     opacity: 1;
     transform: none
 }

 /* Modal Styles */
 .modal {
    display: none; 
    position: fixed; 
    z-index: 100; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
 }

 .modal-content {
    background-color: var(--card);
    margin: 15% auto; 
    padding: 24px;
    border: 1px solid var(--stroke);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
    animation: slide-down 0.4s ease-out;
 }

 .modal-content h2 { color: var(--brand); }
 .modal-content p {
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    text-indent: 20px;
 }

 .modal-cta {
    margin-top: 16px;
    display: inline-block;
 }

 .close-btn {
    color: var(--muted);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
 }

 @keyframes slide-down {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
 }

 /* ============================================= */
/* ==         Seção CTA Cursos              == */
/* ============================================= */

.curso-cta-section {
  padding: 80px 20px;
  text-align: center;
  background: 
    radial-gradient(ellipse 150% 80% at 50% 100%, rgba(225, 184, 31, 0.1), transparent 50%),
    var(--bg);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.curso-cta-section .section-title {
  color: var(--brand);
}

.curso-cta-section .section-sub {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.curso-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Estilo do botão primário para cursos */
.btn-primary {
  padding: 18px 38px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #0f0f10;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(225, 184, 31, 0.4),
    0 0 40px rgba(225, 184, 31, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(225, 184, 31, 0.5),
    0 0 60px rgba(225, 184, 31, 0.3);
}

.btn-primary .btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: rotate(-10deg) scale(1.1);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color 0.3s ease;
  font-size: 16px;
  cursor: pointer;
}

.btn-back:hover {
  color: var(--brand);
}

.curso-hero {
  position: relative;
  padding: 100px 20px 80px;
  background: 
    radial-gradient(ellipse 1600px 800px at 50% -20%, rgba(225, 184, 31, 0.2), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 80% 100%, rgba(98, 79, 11, 0.15), transparent 60%),
    radial-gradient(ellipse 800px 600px at 20% 80%, rgba(225, 184, 31, 0.1), transparent 50%),
    var(--bg);
  overflow: hidden;
}

.curso-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(225, 184, 31, 0.3) 10%, var(--brand) 50%, rgba(225, 184, 31, 0.3) 90%, transparent);
  animation: shine 3s ease-in-out infinite;
}

.curso-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle 2px at 20% 30%, rgba(225, 184, 31, 0.4), transparent),
    radial-gradient(circle 2px at 60% 70%, rgba(225, 184, 31, 0.3), transparent),
    radial-gradient(circle 2px at 80% 20%, rgba(225, 184, 31, 0.4), transparent),
    radial-gradient(circle 2px at 40% 90%, rgba(225, 184, 31, 0.3), transparent);
  background-size: 200% 200%;
  animation: sparkle 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.5; background-position: 0% 0%; }
  50% { opacity: 1; background-position: 100% 100%; }
}

.curso-hero .container {
  position: relative;
  z-index: 1;
}

.curso-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.15), rgba(98, 79, 11, 0.1));
  border: 2px solid rgba(225, 184, 31, 0.4);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(225, 184, 31, 0.2);
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(225, 184, 31, 0.2); }
  50% { transform: scale(1.03); box-shadow: 0 0 30px rgba(225, 184, 31, 0.4); }
}

.curso-badge::before {
  content: '✨';
  font-size: 20px;
  animation: rotate-icon 3s linear infinite;
}

@keyframes rotate-icon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.curso-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.curso-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.curso-content h1 {
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold-light) 25%, var(--brand) 50%, var(--gold-light) 75%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  background-size: 300% 300%;
  filter: drop-shadow(0 0 20px rgba(225, 184, 31, 0.3));
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.curso-content .subtitle {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.curso-content .subtitle strong {
  color: var(--brand);
  font-weight: 600;
}

.curso-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.06), rgba(98, 79, 11, 0.04));
  border: 1px solid rgba(225, 184, 31, 0.25);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 184, 31, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.12), rgba(98, 79, 11, 0.08));
  border-color: rgba(225, 184, 31, 0.5);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(225, 184, 31, 0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(225, 184, 31, 0.3);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotate(8deg) scale(1.1);
}

.feature-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--brand);
}

.feature-text p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.btn-gold-outline {
  padding: 18px 38px;
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-gold-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(225, 184, 31, 0.1);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-gold-outline:hover::before {
  width: 100%;
}

.btn-gold-outline:hover {
  background: rgba(225, 184, 31, 0.15);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(225, 184, 31, 0.3);
}

.curso-visual {
  position: relative;
}

.curso-card {
  background: linear-gradient(180deg, #161617, #0d0d0e);
  border: 2px solid rgba(225, 184, 31, 0.4);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(225, 184, 31, 0.15);
  position: relative;
  overflow: hidden;
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.curso-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 184, 31, 0.15) 0%, transparent 70%);
  animation: rotate-glow 12s linear infinite;
}

@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.curso-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 0%, rgba(225, 184, 31, 0.5) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.curso-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1b1b1e, #242428);
  margin-bottom: 24px;
  z-index: 1;
  border: 1px solid rgba(225, 184, 31, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.curso-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.curso-card:hover .curso-image img {
  transform: scale(1.05);
}

.curso-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 16px 12px;
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.08), rgba(98, 79, 11, 0.06));
  border: 1px solid rgba(225, 184, 31, 0.3);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.15), rgba(98, 79, 11, 0.1));
  border-color: rgba(225, 184, 31, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(225, 184, 31, 0.2);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  display: block;
  text-shadow: 0 0 20px rgba(225, 184, 31, 0.5);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(15, 15, 16, 0.95), rgba(20, 20, 22, 0.9));
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid rgba(225, 184, 31, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(225, 184, 31, 0.2);
  animation: float-badge 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-badge-1 {
  top: 20px;
  right: -30px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 100px;
  left: -30px;
  animation-delay: 2s;
}

.badge-icon {
  font-size: 28px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(225, 184, 31, 0.6));
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.2), rgba(98, 79, 11, 0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ============================================= */
/* ==            Página FAQ                   == */
/* ============================================= */

.faq-section {
  padding: 100px 20px 80px;
}

.faq-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold-light) 50%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(225, 184, 31, 0.3));
}

.faq-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.06), rgba(98, 79, 11, 0.04));
  border: 2px solid rgba(225, 184, 31, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(225, 184, 31, 0.5);
  box-shadow: 0 8px 24px rgba(225, 184, 31, 0.2);
  transform: translateY(-2px);
}

.faq-item.active {
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.12), rgba(98, 79, 11, 0.08));
  border-color: rgba(225, 184, 31, 0.6);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
  color: var(--gold-light);
}

.faq-icon {
  font-size: 28px;
  color: var(--brand);
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.2), rgba(98, 79, 11, 0.1));
  border-radius: 8px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  padding-top: 8px;
  border-top: 1px solid rgba(225, 184, 31, 0.2);
}

.faq-cta {
  margin-top: 60px;
  text-align: justify;
  padding: 40px;
  background: linear-gradient(135deg, rgba(225, 184, 31, 0.08), rgba(98, 79, 11, 0.06));
  border: 2px solid rgba(225, 184, 31, 0.3);
  border-radius: 20px;
}

.faq-cta h3 {
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 16px;
  font-weight: 700;
}

.faq-cta p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .curso-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .curso-content h1 {
    font-size: 48px;
  }
  .curso-features {
    grid-template-columns: 1fr;
  }
  .floating-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 36px;
  }
  .faq-question {
    padding: 20px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  .faq-cta {
    padding: 30px 20px;
  }
  .faq-cta h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .curso-hero {
    padding: 70px 20px 60px;
  }
  .curso-content h1 {
    font-size: 36px;
  }
  .curso-content .subtitle {
    font-size: 17px;
  }
  .curso-cta-group {
    flex-direction: column;
  }
  .btn-primary, .btn-gold-outline {
    width: 100%;
    justify-content: center;
  }
  .curso-stats {
    grid-template-columns: 1fr;
  }
  .trust-indicators {
    justify-content: center;
  }
}