﻿html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #3D3D3D;
  background-color: #FFFFFF;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #3D3D3D;
}
.text-muted {
  color: #8A8780 !important;
}
a {
  text-decoration: none;
  color: #97293A;
}
a:hover {
  color: #751F2D;
}
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(61, 61, 61, 0.06);
}
.navbar .navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 0.5rem;
}
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:active {
  border: none;
  box-shadow: none;
  outline: none;
}
@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    background: #FFFFFF;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(61, 61, 61, 0.08);
  }
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #97293A !important;
}
.navbar-brand img {
  height: 32px;
}
.navbar-brand .brand-ia {
  color: #C9A962;
}
.nav-link {
  font-weight: 500;
  color: #5C5A55 !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: #97293A !important;
}
.nav-link.text-primary {
  color: #97293A !important;
}
.nav-link.text-primary:hover {
  color: #751F2D !important;
}
.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.btn-primary {
  background-color: #97293A;
  border-color: #97293A;
}
.btn-primary:hover {
  background-color: #751F2D;
  border-color: #751F2D;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(125, 52, 73, 0.25);
}
.btn-outline-primary {
  color: #97293A;
  border-color: #97293A;
}
.btn-outline-primary:hover {
  background-color: #97293A;
  border-color: #97293A;
  color: #FFFFFF;
}
.btn-gold {
  background-color: #C9A962;
  border-color: #C9A962;
  color: #FFFFFF;
}
.btn-gold:hover {
  background-color: #A68B4B;
  border-color: #A68B4B;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-dark {
  background-color: #3D3D3D;
  border-color: #3D3D3D;
}
.btn-dark:hover {
  background-color: #555555;
  border-color: #555555;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 12px;
}
.hero-section {
  min-height: auto;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F5 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 100px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FDF9F0;
  color: #A68B4B;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  color: #97293A;
}
.hero-description {
  font-size: 1.2rem;
  color: #8A8780;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-card {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(61, 61, 61, 0.1);
  padding: 0.75rem;
  border: 1px solid #F0EFED;
}
.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: url('../img/salon.jpeg') center center;
  background-size: cover;
  border-radius: 20px;
}
.hero-floating-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 12px rgba(61, 61, 61, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #F0EFED;
}
.hero-floating-card.card-1 {
  bottom: -20px;
  left: -30px;
}
@media (max-width: 991.98px) {
  .hero-floating-card.card-1 {
    left: 0;
  }
}
.hero-floating-card.card-2 {
  top: 40px;
  right: -20px;
  display: none;
}
@media (max-width: 991.98px) {
  .hero-floating-card.card-2 {
    right: 0;
  }
}
@media (max-width: 768px) {
  .hero-floating-card {
    display: none;
  }
}
.floating-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.floating-icon.primary {
  background: #FDF5F7;
  color: #97293A;
}
.floating-icon.gold {
  background: #FDF9F0;
  color: #C9A962;
}
.floating-text strong {
  display: block;
  font-size: 0.9rem;
  color: #3D3D3D;
}
.floating-text span {
  font-size: 0.8rem;
  color: #8A8780;
}
.section-padding {
  padding: 6rem 0;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FDF5F7;
  color: #97293A;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #8A8780;
  max-width: 600px;
}
.bg-light-custom {
  background-color: #FAF8F5;
}
.problem-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #F0EFED;
}
.problem-card:hover {
  border-color: #E2E0DC;
  box-shadow: 0 4px 12px rgba(61, 61, 61, 0.08);
  transform: translateY(-5px);
}
.problem-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.problem-card p {
  color: #8A8780;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.problem-icon {
  width: 60px;
  height: 60px;
  background: #FDF5F7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #97293A;
  margin-bottom: 1.25rem;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: #8A8780;
  font-size: 0.95rem;
}
.step-card:last-child .step-connector {
  display: none;
}
.step-number {
  width: 70px;
  height: 70px;
  background: #FFFFFF;
  border: 3px solid #C9A962;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #C9A962;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 35px;
  left: calc(50% + 35px);
  right: calc(-50% + 35px);
  height: 3px;
  background: #C9A962;
  opacity: 0.35;
}
@media (max-width: 991.98px) {
  .step-connector {
    display: none;
  }
}
.benefits-section {
  background: #97293A;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.benefits-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.benefits-section .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #D4B978;
}
.benefits-section .section-title {
  color: #FFFFFF;
}
.benefits-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.benefit-item {
  text-align: center;
  padding: 1.5rem;
}
.benefit-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.benefit-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #D4B978;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #D4B978;
  margin: 0 auto 1.25rem;
}
.pricing-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #F0EFED;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(61, 61, 61, 0.08);
}
.pricing-card.featured {
  background: #97293A;
  color: #FFFFFF;
  border-color: #97293A;
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(61, 61, 61, 0.1);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}
.pricing-card.featured .pricing-amount {
  color: #D4B978;
}
.pricing-card.featured .pricing-features li i {
  color: #D4B978;
}
.pricing-card.featured .btn-outline-light:hover {
  background: #C9A962;
  border-color: #C9A962;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}
.pricing-card .btn {
  width: 100%;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #C9A962;
  color: #FFFFFF;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.pricing-description {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.25rem;
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.pricing-period {
  font-size: 0.9rem;
  opacity: 0.7;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-features li i {
  color: #C9A962;
}
.cta-section {
  background: #FAF8F5;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  color: #8A8780;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.footer {
  background: #3D3D3D;
  color: #FFFFFF;
}
.footer-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer-brand img {
  height: 28px;
}
.footer-brand .brand-ia {
  color: #D4B978;
}
.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 300px;
}
.footer h6 {
  color: #D4B978;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #FFFFFF;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
@media print {
  .no-print {
    display: none !important;
  }
}