* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #fff3df;
  --beige: #d5c1b8;
  --mocha: #644d42;
  --choco: #26140c;
  --text-dark: #26140c;
  --text-light: #644d42;
  --gold: #d4af37;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--choco);
  z-index: 1000;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 20px rgba(38, 20, 12, 0.15);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--cream);
  text-transform: lowercase;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-selector a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.language-selector a:hover {
  color: var(--cream);
  border-color: var(--beige);
}

.language-selector a.active {
  color: var(--cream);
  border-color: var(--cream);
  background: rgba(255, 243, 223, 0.1);
}

.hero {
  margin-top: 90px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background: linear-gradient(135deg, var(--mocha) 0%, var(--choco) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(100, 77, 66, 0.85) 0%,
    rgba(38, 20, 12, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 4rem 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(255, 243, 223, 0.2);
  border: 1px solid var(--beige);
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 10px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-highlight {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0;
  padding: 1rem 2rem;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--gold);
  border-radius: 10px;
  display: inline-block;
}

.cta-button {
  display: inline-block;
  padding: 1.3rem 4rem;
  background: var(--cream);
  color: var(--choco);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--cream);
  transition: all 0.4s ease;
  font-weight: 500;
  margin: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: transparent;
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  text-align: center;
  color: var(--choco);
  margin-bottom: 1rem;
  letter-spacing: 5px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.comparison-section {
  background: white;
  padding: 5rem 2rem;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.comparison-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--beige);
  aspect-ratio: 4/3;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.comparison-image:hover img {
  transform: scale(1.05);
}

.comparison-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(38, 20, 12, 0.9) 0%,
    transparent 100%
  );
  padding: 2rem 1.5rem 1.5rem;
  color: var(--cream);
}

.comparison-label h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.comparison-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--choco);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.comparison-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.comparison-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background: var(--cream);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--beige);
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--mocha);
  font-weight: 600;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* ZIGZAG BENEFITS WITH CURVED LINES */
.benefits-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
}

.benefits-timeline {
  position: relative;
  padding: 3rem 0;
}

.timeline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.timeline-svg path {
  stroke: var(--mocha);
  stroke-width: 8;
  fill: none;
  opacity: 0.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-svg path.animate {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 1s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.benefit-item {
  position: relative;
  margin-bottom: 8rem;
  z-index: 1;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item.align-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.benefit-item.align-right {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  text-align: right;
}

.benefit-dot {
  width: 20px;
  height: 20px;
  background: var(--mocha);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(100, 77, 66, 0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.benefit-item:hover .benefit-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 12px rgba(100, 77, 66, 0.3);
}

.benefit-content-wrapper {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.benefit-item.align-right .benefit-content-wrapper {
  transform: translateX(50px);
}

.benefit-content-wrapper.visible {
  opacity: 1;
  transform: translateX(0);
}

.benefit-content {
  background: white;
  padding: 2.5rem;
  border: 1px solid var(--beige);
  position: relative;
  max-width: 500px;
  transition: all 0.3s ease;
  z-index: 2;
}

.benefit-item.align-right .benefit-content {
  margin-left: auto;
}

.benefit-content:hover {
  box-shadow: 0 15px 35px rgba(38, 20, 12, 0.12);
  transform: translateY(-5px);
}

.benefit-number {
  position: absolute;
  top: -12px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.benefit-item.align-right .benefit-number {
  left: 20px;
  right: auto;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--choco);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.benefit-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.packages-section {
  background: var(--cream);
  padding: 5rem 2rem;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.package-card {
  background: white;
  padding: 3rem 2.5rem;
  border: 2px solid var(--beige);
  transition: all 0.4s ease;
  position: relative;
}

.package-card:hover {
  border-color: var(--mocha);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(38, 20, 12, 0.12);
}

.package-popular {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gold);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.package-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--choco);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.package-treatments {
  list-style: none;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

.package-treatments li {
  padding: 0.5rem 0;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
}

.package-treatments li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mocha);
  font-weight: 600;
}

.package-price {
  font-size: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--mocha);
  font-weight: 600;
  margin: 1.5rem 0;
}

.package-price small {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.package-note {
  font-size: 0.9rem;
  color: var(--text-light);
}

.faq-section {
  background: white;
  padding: 5rem 2rem;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--beige);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--choco);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(213, 193, 184, 0.3);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--mocha);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0 2rem;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.final-cta {
  background: linear-gradient(135deg, var(--mocha) 0%, var(--choco) 100%);
  color: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

footer {
  background: var(--choco);
  color: var(--cream);
  padding: 4rem 2rem 3rem;
  margin-top: 6rem;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 3rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: var(--cream);
}

.footer-section p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 300;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(188, 24, 136, 0.3);
}

.instagram-button span {
  font-size: 1.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 243, 223, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.contact-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: white;
  border: none;
}

.whatsapp-button {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.phone-button {
  background: linear-gradient(135deg, var(--mocha) 0%, var(--choco) 100%);
}

.phone-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(100, 77, 66, 0.5);
}

.contact-button-label {
  position: absolute;
  right: 75px;
  background: white;
  color: var(--choco);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-button:hover .contact-button-label {
  opacity: 1;
  right: 70px;
}

.floating-contact-item {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 0.8rem;
  }

  .contact-button {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .contact-button-label {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
  }

  .contact-button {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 968px) {
  .comparison-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .comparison-stats {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item.align-left,
  .benefit-item.align-right {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .benefit-item.align-right .benefit-content {
    margin-left: 0;
  }

  .timeline-svg {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--choco);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--mocha);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-content {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .mobile-menu-toggle {
    display: block;
    order: -1;
  }

  .nav-right {
    margin-left: auto;
  }

  .logo {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  nav {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 3rem;
    letter-spacing: 5px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-highlight {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .comparison-content h3 {
    font-size: 2rem;
  }

  .comparison-content p {
    font-size: 0.95rem;
  }

  .benefits-section {
    padding: 4rem 1.5rem;
  }

  .benefit-content {
    padding: 2rem 1.5rem;
    max-width: none;
  }

  .benefit-content h3 {
    font-size: 1.5rem;
  }

  .package-card {
    padding: 2.5rem 2rem;
  }

  .final-cta {
    padding: 4rem 1.5rem;
  }

  .final-cta h2 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .comparison-section {
    padding: 4rem 1.5rem;
  }

  .packages-section {
    padding: 4rem 1.5rem;
  }

  .faq-section {
    padding: 4rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .nav-right {
    gap: 1rem;
  }

  .language-selector {
    order: -1;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-highlight {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .comparison-content h3 {
    font-size: 1.8rem;
  }

  .benefit-content h3 {
    font-size: 1.3rem;
  }

  .package-card h3 {
    font-size: 1.7rem;
  }

  .package-price {
    font-size: 2rem;
  }

  .final-cta h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .cta-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
    width: 100%;
    margin: 0.5rem 0;
  }

  section {
    padding: 3rem 1rem;
  }

  .comparison-section {
    padding: 3rem 1rem;
  }

  .packages-section {
    padding: 3rem 1rem;
  }

  .faq-section {
    padding: 3rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .language-selector a {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}
