/*
Theme Name: Seguros DRRJ
Theme URI: https://segurosdiegodelosreyes.es
Author: Replica
Description: Réplica exacta del sitio Seguros Diego de los Reyes
Version: 1.0
Text Domain: seguros-drrj
*/

/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --zurich-blue: #012E73;
  --zurich-light-blue: #023e8a;
  --zurich-bg-light: #F4F4F4;
  --glass-bg: rgba(1, 46, 115, 0.05);
  --glass-border: rgba(1, 46, 115, 0.2);
  --glass-shadow: 0 20px 50px rgba(1, 46, 115, 0.15);
  --glass-filter: blur(30px) saturate(180%);
  --blue-primary: var(--zurich-blue);
  --blue-dark: #012461;
  --blue-deeper: #011a4d;
  --blue-light: var(--zurich-light-blue);
  --blue-bg: #eef2ff;
  --white: #ffffff;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --text-dark: #012E73;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(1, 46, 115, 0.6); backdrop-filter: var(--glass-filter); -webkit-backdrop-filter: var(--glass-filter);
  z-index: 1000;
  box-shadow: var(--glass-shadow);
  transition: background 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 120px;
}
.site-header.scrolled { 
  background: rgba(1, 46, 115, 0.9);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  position: relative;
}
.site-logo {
  display: flex; align-items: center;
  height: 100%;
  flex-shrink: 0;
  min-width: 250px;
  position: relative;
  z-index: 10;
}
.site-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  image-rendering: -webkit-optimize-contrast;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.site-logo:hover img {
  transform: translateY(-50%);
}
.site-logo svg { width: 42px; height: 42px; }
.site-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-nav ul { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
  margin: 0;
  padding: 0;
}
.site-nav ul li a {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem; font-weight: 700;
  padding: 12px 16px; border-radius: 30px;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.site-nav ul li a:hover,
.site-nav ul li.current-menu-item a { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta a {
  background: var(--white) !important; color: var(--zurich-blue) !important;
  font-weight: 700 !important; border-radius: 30px !important;
  padding: 10px 24px !important; border: 2px solid var(--white) !important;
  transition: all 0.3s ease !important;
  margin-left: 10px;
}
.nav-cta a:hover { background: transparent !important; color: var(--white) !important; }

.menu-toggle {
  display: none; background: transparent; border: none;
  color: var(--white); cursor: pointer; padding: 8px;
  position: relative; z-index: 1001;
}
.menu-toggle span { display: block; width: 28px; height: 3px; background: white; margin: 6px 0; transition: 0.3s; border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }

/* ===========================
   HERO
=========================== */
.hero-section {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-deeper) 100%);
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 120px;
}
/* Blob removed */
.hero-waves {
  position: absolute; bottom: 0; left: 0; width: 100%;
  overflow: hidden; line-height: 0;
}
.hero-waves svg { display: block; width: 100%; }
.hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
  min-height: calc(100vh - 160px);
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
}
.hero-content .hero-subtitle {
  font-size: 1.3rem; font-weight: 700;
  color: rgba(255,255,255,0.95); margin-bottom: 20px;
}
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 500px; }
.about-text .btn-hero {
  background: rgba(1, 46, 115, 0.05);
  color: var(--blue-primary);
  border-color: rgba(1, 46, 115, 0.2);
}
.about-text .btn-hero:hover {
  background: var(--blue-primary);
  color: var(--white);
}
.hero-badges { display: flex; gap: 16px; margin-top: 32px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  padding: 10px 18px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}
.hero-badge svg { color: var(--white); }
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(1, 46, 115, 0.1); backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  padding: 18px 36px; border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-hero:hover { 
  background: var(--blue-primary); color: var(--white); 
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(1, 46, 115, 0.3);
}
.hero-content { position: relative; z-index: 2; align-self: center; padding: 80px 0; }
.hero-image { position: relative; height: 100%; display: flex; align-items: stretch; }
.hero-image img { 
  width: 100% !important; 
  height: 100% !important; 
  object-fit: cover !important; 
  border-radius: 0 0 40px 40px !important;
  box-shadow: -20px 0 50px rgba(0,0,0,0.15) !important;
}

/* ===========================
   SECTIONS COMMON
=========================== */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--blue-bg);
  color: var(--blue-primary); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--gray-900); margin-bottom: 16px;
}
.section-title span { color: var(--blue-primary); }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 650px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===========================
   SERVICES GRID
=========================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(1, 46, 115, 0.05));
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  border-radius: 30px; padding: 40px 32px; text-align: center;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative; overflow: hidden;
}
.service-card:hover { 
  transform: translateY(-12px) scale(1.02); 
  background: rgba(255,255,255,0.2);
  box-shadow: 0 30px 60px rgba(1, 46, 115, 0.2);
}
.service-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue-bg); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: all 0.3s ease;
}
.service-icon svg { width: 36px; height: 36px; color: var(--blue-primary); }
.service-card:hover .service-icon { background: var(--blue-primary); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(1, 46, 115, 0.05); backdrop-filter: blur(5px);
  color: var(--blue-primary); font-weight: 700; font-size: 0.9rem;
  padding: 10px 20px; border-radius: 50px;
  border: 1px solid rgba(1, 46, 115, 0.1);
  transition: all 0.3s ease;
}
.service-link:hover { 
  background: var(--blue-primary); color: var(--white);
  transform: translateX(5px);
}

/* ===========================
   STATS
=========================== */
.stats-section {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deeper));
  padding: 60px 24px; text-align: center;
}
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-item {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border-radius: 24px; border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease;
}
.stat-item:hover { transform: scale(1.05); background: rgba(255,255,255,0.1); }
.stat-number { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 8px; color: var(--white); }
.stat-label { font-size: 1rem; opacity: 0.85; font-weight: 500; color: var(--white); }

/* ===========================
   WHY US / FEATURES
=========================== */
.features-section { background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.feature-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(1, 46, 115, 0.05));
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  padding: 45px 35px; border-radius: 30px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.5s ease;
}
.feature-card:hover { 
  transform: translateY(-10px); 
  background: rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--blue-bg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--blue-primary); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.feature-card p { font-size: 0.93rem; color: var(--gray-600); line-height: 1.6; }

/* ===========================
   INNER PAGE HERO
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  padding: 180px 24px 80px; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }
.breadcrumb { 
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
  padding: 8px 16px; border-radius: 20px; width: fit-content; margin-left: auto; margin-right: auto;
}
.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ===========================
   PAGE CONTENT
=========================== */
.page-content { padding: 80px 24px; max-width: 900px; margin: 0 auto; }
.page-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--gray-900); margin: 40px 0 16px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.page-content ul { margin: 16px 0 24px 0; }
.page-content ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-600); margin-bottom: 10px; line-height: 1.6; }
.page-content ul li::before { content: '✓'; color: var(--blue-primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===========================
   INSURANCE DETAIL LAYOUT
=========================== */
.insurance-layout {
  display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.insurance-sidebar {
  background: rgba(255,255,255,0.5); backdrop-filter: blur(10px);
  border-radius: 24px; padding: 32px;
  border: 1px solid rgba(255,255,255,0.6); position: sticky; top: 180px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}
.insurance-sidebar h3 { font-size: 1.25rem; font-weight: 800; color: var(--zurich-blue); margin-bottom: 24px; }
.insurance-sidebar ul li { padding: 12px 0; border-bottom: 1px solid rgba(1, 46, 115, 0.05); color: var(--gray-700); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.insurance-sidebar ul li::before { content: '→'; color: var(--zurich-blue); font-weight: 800; }
.insurance-sidebar ul li:last-child { border-bottom: none; }
.sidebar-cta {
  display: block; background: var(--blue-primary); color: var(--white);
  text-align: center; padding: 16px; border-radius: 10px;
  font-weight: 700; margin-top: 24px; transition: all 0.3s ease;
}
.sidebar-cta:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 1100px; margin: 0 auto; padding: 80px 24px;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--gray-900); margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 24px; height: 24px; color: var(--blue-primary); }
.contact-item-content p { color: var(--gray-600); font-size: 0.95rem; margin-top: 2px; }
.contact-item-content strong { color: var(--gray-900); font-size: 1rem; }
.contact-form-box { 
  background: var(--glass-bg); backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  border-radius: 32px; padding: 50px; 
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.contact-form-box h2 { font-size: 1.6rem; font-weight: 800; color: var(--gray-900); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--gray-700); font-size: 0.9rem; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.4); backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.5); font-size: 1rem;
  font-family: inherit; color: var(--gray-900);
  transition: all 0.3s ease; outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
  background: rgba(255,255,255,0.8);
  border-color: var(--blue-primary); 
  box-shadow: 0 0 0 4px rgba(1, 46, 115, 0.1); 
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white); border: none; border-radius: 12px; padding: 18px;
  font-size: 1.1rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(1, 46, 115, 0.2);
}
.btn-submit:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 15px 35px rgba(1, 46, 115, 0.3);
  filter: brightness(1.1);
}

/* ===========================
   SOCIAL BANNER
=========================== */
.social-banner {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  padding: 80px 24px; color: var(--white); overflow: hidden;
}
.social-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.social-content h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; }
.social-content p { font-size: 1.1rem; opacity: 0.9; }
.social-links-grid { display: flex; gap: 24px; justify-content: flex-start; flex-wrap: wrap; }
.social-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 24px 32px; border-radius: 24px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex: 1; min-width: 320px; max-width: 400px;
}
.social-glass-card:hover { 
  transform: translateY(-8px) scale(1.05); 
  background: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.social-icon-box {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.social-icon-box.insta { border-color: rgba(220, 39, 67, 0.4); box-shadow: 0 0 15px rgba(220, 39, 67, 0.2); }
.social-icon-box.fb { border-color: rgba(24, 119, 242, 0.4); box-shadow: 0 0 15px rgba(24, 119, 242, 0.2); }
.social-icon-box svg { width: 28px; height: 28px; }
.social-glass-card:hover .social-icon-box.insta { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-glass-card:hover .social-icon-box.fb { background: #1877F2; }
.social-text span { display: block; font-size: 0.85rem; opacity: 0.7; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.social-text strong { display: block; font-size: 1.05rem; font-weight: 700; }

/* ===========================
   FOOTER
=========================== */
.site-footer { background: #011638; color: rgba(255,255,255,0.8); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand .footer-logo img {
  height: 180px;
  width: auto;
}
.footer-brand p { font-size: 1rem; line-height: 1.7; max-width: 350px; color: rgba(255,255,255,0.7); }
.footer-brand .dgi { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 20px; font-weight: 600; letter-spacing: 0.5px; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: all 0.2s; }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); max-width: 1200px; margin: 0 auto; padding: 30px 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--glass-bg); backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; border: 1px solid var(--glass-border);
}
.footer-social a:hover { transform: translateY(-5px); background: rgba(255,255,255,0.2); border-color: var(--white); }
.footer-social a svg { width: 20px; height: 20px; color: white; transition: color 0.3s; }
.footer-social a:hover svg { color: var(--white); }

/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-btn {
  position: fixed; bottom: 35px; right: 35px; z-index: 9999;
  background: rgba(37, 211, 102, 0.4); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: white; border-radius: 50px; padding: 16px 32px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 15px 45px rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-btn:hover { transform: translateY(-8px) scale(1.08); background: rgba(37, 211, 102, 0.8); }
.whatsapp-btn svg { width: 24px; height: 24px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .insurance-layout { grid-template-columns: 1fr; }
  .insurance-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .hero-image { display: none; }
  .hero-badges { flex-wrap: wrap; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .site-nav { display: none; }
  .site-nav.open { 
    display: flex; flex-direction: column; 
    position: absolute; top: 200px; left: 0; width: 100%; 
    background: var(--blue-dark); padding: 30px; 
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .site-nav.open ul { flex-direction: column; width: 100%; gap: 15px; }
  .site-nav.open ul li a { font-size: 1.1rem; padding: 12px 20px; width: 100%; display: block; }
  .menu-toggle { display: block; }
  .form-group-row { grid-template-columns: 1fr; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}
