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

:root {
  --navy: #0B1F3A;
  --graphite: #2E2E2E;
  --gray-light: #F5F7FA;
  --white: #FFFFFF;
  --gold: #C8A96B;
  --gold-soft: rgba(200, 169, 107, 0.15);
  --navy-light: #1a3455;
  --shadow-sm: 0 4px 20px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 8px 40px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 16px 60px rgba(11, 31, 58, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--graphite);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5a6a7a;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  font-weight: 400;
}

.text-gold {
  color: var(--gold);
}

.text-navy {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(200, 169, 107, 0.3);
}

.btn-gold:hover {
  background: #b8965a;
  box-shadow: 0 8px 24px rgba(200, 169, 107, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1da851;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 30px rgba(11, 31, 58, 0.10);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo span {
  color: var(--gold);
}

.logo small {
  font-size: 0.7rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #6b7a8a;
  letter-spacing: 0.3px;
  display: block;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--graphite);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--navy);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .btn-header {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-menu .btn-header:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-menu .btn-header::after {
  display: none;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-buttons .btn {
  padding: 16px 36px;
  font-size: 1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image .photo-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(200, 169, 107, 0.3);
  background: var(--graphite);
  position: relative;
}

.hero-image .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

.hero-image .photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(11, 31, 58, 0.3));
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 169, 107, 0.15);
  border: 1px solid rgba(200, 169, 107, 0.25);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* ===== CONFIANZA ===== */
.trust {
  background: var(--gray-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.trust-item {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}

.trust-item .icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.4;
}

/* ===== PROBLEMAS ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.problem-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.95rem;
  color: #5a6a7a;
  margin-bottom: 16px;
}

.problem-card .cta-link {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.problem-card .cta-link:hover {
  color: var(--navy);
  gap: 12px;
}

/* ===== SERVICIOS ===== */
.services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 32px 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(200, 169, 107, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card .benefit {
  font-size: 0.95rem;
  color: #5a6a7a;
  margin-bottom: 12px;
}

.service-card .time {
  display: inline-block;
  background: var(--gray-light);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: 16px;
}

.service-card .btn-service {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.service-card .btn-service:hover {
  color: var(--navy);
  gap: 12px;
}

/* ===== CÓMO FUNCIONA ===== */
.steps {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 20px;
  counter-reset: step;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-item .step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

.step-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-item p {
  font-size: 0.95rem;
  color: #5a6a7a;
  max-width: 240px;
  margin: 0 auto;
}

.step-item .arrow {
  display: none;
}

/* ===== CREDENCIALES ===== */
.about {
  background: var(--gray-light);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--graphite);
  border: 3px solid var(--gold);
}

.about-image .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-image .badge-EXP {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 30px rgba(200, 169, 107, 0.3);
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-image .badge-EXP small {
  font-size: 0.7rem;
  font-weight: 400;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text .subhead {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.about-text p {
  color: #4a5a6a;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text .credentials-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.about-text .credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.about-text .credentials-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== TESTIMONIOS ===== */
.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--gray-light);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #3a4a5a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .client .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.2rem;
}

.testimonial-card .client .info {
  font-size: 0.9rem;
}

.testimonial-card .client .info strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
}

.testimonial-card .client .info span {
  color: #6b7a8a;
  font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq {
  background: var(--gray-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

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

.faq-question .icon {
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: #4a5a6a;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-final .container {
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-final p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 300;
}

.cta-final .btn {
  font-size: 1.1rem;
  padding: 18px 48px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a182a;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(200, 169, 107, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand .logo small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h5,
.footer-social h5 {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul a {
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-social .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social .social-icons a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal-links a {
  transition: var(--transition);
}

.footer-bottom .legal-links a:hover {
  color: var(--gold);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.45);
}

/* ===== FORM ===== */
.form-container {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dce0e5;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--gray-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.2);
  background: var(--white);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image .photo-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image .photo-frame {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-image .badge-EXP {
    right: 10px;
    bottom: -10px;
    width: 80px;
    height: 80px;
    font-size: 0.9rem;
  }

  .about-text .credentials-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    padding: 40px 24px;
    list-style: none;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  .nav-menu .btn-header {
    font-size: 1rem;
    padding: 12px 32px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-image .photo-frame {
    max-width: 280px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-final h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-container {
    padding: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-item .arrow {
    display: none;
  }

  .about-image .badge-EXP {
    width: 70px;
    height: 70px;
    font-size: 0.8rem;
    right: 0;
    bottom: -5px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
    bottom: 16px;
    right: 16px;
  }
}