/* ═══════════════════════════════════════════════════════════
   MAESTRIA NAIL DESIGN - STYLESHEET
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --preto: #162b19;
  --ouro: #a8834e;
  --ouro-claro: #c49a5e;
  --ouro-escuro: #7a5c30;
  --creme: #ead9c4;

  --cinza-quente: #b8a080;
  --branco: #ffffff;
  --verde-sage: #c5d5c5;
  --verde-escuro: #264621;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 8px 32px rgba(168, 131, 78, 0.25);
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background: var(--preto);
  color: var(--creme);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--ouro);
  color: var(--preto);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #264621 0%, #162b19 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(168, 131, 78, .04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(168, 131, 78, .04) 80px);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 131, 78, .15) 0%, transparent 70%);
  top: calc(50% + var(--parallax-y, 0px));
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
  filter: blur(40px);
}

.hero-orb-secondary {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 94, .1) 0%, transparent 70%);
  top: calc(20% + var(--parallax-y, 0px));
  right: 10%;
  animation: pulse 8s ease-in-out infinite reverse;
  filter: blur(60px);
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  padding-bottom: 6rem;
  margin-top: -5rem;
  z-index: 10;
}



.hero-logo {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
}





.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--branco);
  margin-bottom: .5rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.hero-title em {
  font-style: italic;
  display: block;
  background: linear-gradient(135deg, var(--ouro-claro), var(--ouro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #d4c5b0;
  margin: 2rem 0 1rem;
}

.hero-address {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--ouro);
  margin-bottom: 3.5rem;
  opacity: .85;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--ouro-escuro), var(--ouro), var(--ouro-claro));
  color: var(--preto);
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 1.3rem 3rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(168, 131, 78, .35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .15);
  transform: translateX(-100%);
  transition: transform .4s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168, 131, 78, .45);
}

.btn-primary svg {
  transition: transform .3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-large {
  width: 100%;
  justify-content: center;
  padding: 1.3rem 3rem;
  font-size: .75rem;
}

.btn-small {
  padding: .8rem 2rem;
  font-size: .65rem;
}

.btn-outline {
  background: transparent;
  color: var(--ouro);
  border: 2px solid var(--ouro);
  font-family: 'Josefin Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(168, 131, 78, .08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .4;
  z-index: 10;
}

.scroll-hint span {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ouro);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ouro), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.5);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ── SECTION BASE ── */
section {
  padding: 7rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--branco);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title em {
  font-style: italic;
  color: var(--ouro-claro);
}

.section-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: #d4c5b0;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--ouro), transparent);
  margin: 2rem 0;
}

.spacing-top {
  margin-top: 1rem;
}

/* ── PAIN SECTION ── */
.pain {
  background: var(--verde-escuro);
  position: relative;
  overflow: hidden;
}

.pain::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 131, 78, .06) 0%, transparent 70%);
  filter: blur(60px);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pain-text p {
  color: #e5d6c1;
  line-height: 2;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-card {
  border: 1px solid rgba(168, 131, 78, .2);
  padding: 1.5rem 1.8rem;
  background: rgba(168, 131, 78, .08);
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pain-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ouro);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}

.pain-card:hover::before {
  transform: scaleY(1);
}

.pain-card:hover {
  border-color: rgba(168, 131, 78, .3);
  background: rgba(168, 131, 78, .06);
  transform: translateX(4px);
}



.pain-card p {
  font-size: 1rem;
  font-weight: 400;
  color: #e5d6c1;
  line-height: 1.8;
}

/* ── MODULES SECTION ── */
.modules {
  background: var(--preto);
}

.modules-header {
  text-align: center;
  margin-bottom: 4rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.module-item {
  background: rgba(168, 131, 78, .08);
  border: 1px solid rgba(168, 131, 78, .2);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.module-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(168, 131, 78, .07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.module-item:hover {
  background: rgba(168, 131, 78, .05);
  border-color: rgba(168, 131, 78, .25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.module-item:hover::after {
  opacity: 1;
}



.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(168, 131, 78, .3);
  line-height: 1;
  margin-bottom: 1rem;
}

.module-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ouro-claro);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.module-desc {
  font-size: .95rem;
  font-weight: 400;
  color: #d4c5b0;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ── AUDIENCE SECTION ── */
.audience {
  background: linear-gradient(135deg, #0f1a12 0%, #152018 100%);
  position: relative;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: #e5d6c1;
  line-height: 1.7;
  padding-left: .5rem;
}

.check-list li::before {
  content: '◆';
  color: var(--ouro);
  font-size: .6rem;
  flex-shrink: 0;
  margin-top: .3rem;
}

.audience-quote {
  border-left: 2px solid var(--ouro);
  padding: 2rem 2rem 2rem 2.5rem;
  background: rgba(168, 131, 78, .08);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(168, 131, 78, .15);
  line-height: 1;
}

.audience-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--branco);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.audience-quote cite {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--ouro);
  text-transform: uppercase;
  font-style: normal;
}

/* ── INSTRUCTOR SECTION ── */
.instructor {
  background: var(--preto);
  position: relative;
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.instructor-images {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.instructor-img-1 {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168, 131, 78, 0.15);
  display: block;
}

.instructor-text p {
  color: #e5d6c1;
  line-height: 2;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

/* ── GALLERY SECTION ── */
.gallery {
  background: var(--preto);
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid rgba(168, 131, 78, .12);
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  border-color: rgba(168, 131, 78, .3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── PRICING SECTION ── */
.pricing {
  background: var(--verde-escuro);
  text-align: center;
}

.pricing-card {
  max-width: 540px;
  margin: 4rem auto 0;
  border: 1px solid rgba(168, 131, 78, .3);
  padding: 3.5rem;
  position: relative;
  background: rgba(168, 131, 78, .08);
  box-shadow: var(--shadow-lg);
}

.pricing-card::before,
.pricing-card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--ouro);
  border-style: solid;
}

.pricing-card::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.pricing-card::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ouro-escuro), var(--ouro));
  color: var(--preto);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  margin-bottom: 1.5rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.pricing-from {
  font-size: .65rem;
  letter-spacing: .25em;
  color: #b8a080;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.pricing-original {
  font-size: 1rem;
  color: #a89575;
  text-decoration: line-through;
  margin-bottom: .5rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 600;
  color: var(--ouro-claro);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(168, 131, 78, 0.3);
}

.pricing-price sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: .8rem;
  display: inline-block;
}

.pricing-installments {
  font-size: .95rem;
  font-weight: 500;
  color: #d4c5b0;
  margin: .5rem 0;
  letter-spacing: .05em;
}

.pricing-cash {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ouro-claro);
  margin-bottom: 2.5rem;
  letter-spacing: .03em;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: 1rem;
  font-weight: 400;
  color: #e5d6c1;
}



.pricing-features strong {
  color: var(--ouro-claro);
  font-weight: 600;
}

.pricing-guarantee {
  margin-top: 2rem;
  font-size: .75rem;
  color: #b8a080;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.pricing-guarantee svg {
  color: var(--ouro);
}

/* ── FAQ SECTION ── */
.faq {
  background: var(--preto);
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(168, 131, 78, .12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--branco);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: left;
  padding: 1.8rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .3s;
}

.faq-question:hover {
  color: var(--ouro-claro);
}

.faq-icon {
  color: var(--ouro);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform .4s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: .98rem;
  font-weight: 400;
  color: #d4c5b0;
  line-height: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.6rem;
}

/* ── FINAL CTA ── */
.final-cta {
  background: radial-gradient(ellipse at center, #1a2e1e 0%, #111e14 70%);
  text-align: center;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(168, 131, 78, .02) 40px, rgba(168, 131, 78, .02) 41px);
}

.final-cta .section-title {
  margin-bottom: 1.5rem;
}

.final-cta p {
  color: #d4c5b0;
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 2;
}

/* ── FOOTER ── */
footer {
  background: #0a140c;
  border-top: 1px solid rgba(168, 131, 78, .08);
  padding: 3rem 2rem 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(168, 131, 78, .08);
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ouro-claro);
  margin-bottom: .5rem;
}

.footer-brand p {
  font-size: .75rem;
  font-weight: 400;
  color: #8a7a60;
  letter-spacing: .1em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: .7rem;
  font-weight: 400;
  color: #8a7a60;
  text-decoration: none;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--ouro);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: .7rem;
  font-weight: 400;
  color: #8a7a60;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 8, 6, .95);
  border-top: 1px solid rgba(168, 131, 78, .2);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  z-index: 100;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.sticky-bar p {
  font-size: .9rem;
  font-weight: 500;
  color: #d4c5b0;
  letter-spacing: .05em;
}

.sticky-bar strong {
  color: var(--ouro-claro);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 85%;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .pain-grid,
  .audience-grid,
  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }



  .modules-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .sticky-content {
    flex-direction: column;
    gap: .7rem;
    padding: 0;
  }

  .sticky-bar {
    padding: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 100%;
    max-width: 260px;
  }



  .hero-subtitle {
    font-size: .7rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .module-item {
    padding: 2rem 1.5rem;
  }
}
