/* ========================================
   AsiSeguros - Agencia de Seguros
   Migración de marca | 2026
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0f2441;
  --primary-light: #1a3a5c;
  --primary-dark: #0a1a30;
  --secondary: #7df89a;
  --secondary-dark: #5ad478;
  --accent: #4db7b3;
  --accent-light: #6fcfcb;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1290px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  margin-bottom: 16px;
}

.section-description {
  color: var(--gray-500);
  max-width: 650px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(125, 248, 154, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(77, 183, 179, 0.3);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn i {
  font-size: 1rem;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
}

.top-bar-left a:hover {
  color: var(--secondary);
}

.top-bar-left i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.top-bar-right a:hover {
  color: var(--secondary);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 75px;
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 26px 18px;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--transition);
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  padding: 8px 0;
  z-index: 100;
}

.nav-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 26px;
}

.dropdown-menu a i {
  color: var(--accent);
  font-size: 0.8rem;
  width: 20px;
  text-align: center;
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 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 SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125, 248, 154, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77, 183, 179, 0.06) 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;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 248, 154, 0.12);
  border: 1px solid rgba(125, 248, 154, 0.25);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

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

.hero-text {
  color: var(--gray-300);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 20px;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1.5s;
}

.hero-float-card i {
  font-size: 1.4rem;
  color: var(--accent);
}

.hero-float-card .card-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
}

.hero-float-card .card-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========================================
   MARQUEE / TICKER
   ======================================== */
.marquee-section {
  background: var(--primary);
  padding: 18px 0;
  overflow: hidden;
}

.tagline-marquee {
  background: var(--primary);
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-width: 160px;
  height: 44px;
}

.tagline-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  white-space: nowrap;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.tagline-item i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.marquee-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 100px 0;
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-content .section-subtitle {
  margin-bottom: 8px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.about-feature i {
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ========================================
   SERVICES / PORTFOLIO SECTION
   ======================================== */
.services-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(77, 183, 179, 0.1), rgba(125, 248, 154, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--accent);
  transition: color var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--secondary);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .btn-sm {
  font-size: 0.82rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-section {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--secondary);
  transform: scale(1.1);
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--secondary);
  transition: color var(--transition);
}

.why-card:hover .why-icon i {
  color: var(--primary);
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========================================
   STATS / COUNTER SECTION
   ======================================== */
.stats-section {
  background: var(--primary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-300);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   PRODUCTS HIGHLIGHT (AUTO)
   ======================================== */
.product-highlight {
  padding: 100px 0;
  background: var(--gray-50);
}

.product-highlight .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-content .section-subtitle {
  margin-bottom: 8px;
}

.product-content h2 {
  margin-bottom: 20px;
}

.product-content p {
  color: var(--gray-500);
  line-height: 1.8;
}

.product-benefits {
  margin: 28px 0 36px;
}

.product-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.product-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(125, 248, 154, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-benefit-icon i {
  color: var(--secondary-dark);
  font-size: 0.9rem;
}

.product-benefit-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.product-benefit-text span {
  font-size: 0.88rem;
  color: var(--gray-500);
}

.product-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  color: var(--gray-100);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(125, 248, 154, 0.06);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contact-detail-text a:hover {
  color: var(--accent);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-700);
  transition: border-color var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(77, 183, 179, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-wrapper .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--primary-dark);
  padding: 80px 0 0;
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--gray-400);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-column ul li a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--secondary);
}

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

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ========================================
   ANIMATIONS (Scroll reveal)
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

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

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

  .hero-image {
    display: none;
  }

  .about-section .container {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .product-highlight .container {
    grid-template-columns: 1fr;
  }

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

  .contact-section .container {
    grid-template-columns: 1fr;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header .container {
    min-height: 65px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-menu > li > a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    display: none;
    padding: 4px 0;
    margin: 4px 0 8px;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu a {
    color: var(--gray-300);
    padding: 8px 16px;
  }

  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--secondary);
    padding-left: 22px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

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

  .hero-stats {
    gap: 24px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

/* ========================================
   CART BUTTON IN NAV
   ======================================== */
.nav-cart-item {
  display: flex;
  align-items: center;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--gray-700);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
}

.cart-btn:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 8px auto 20px;
  background: linear-gradient(135deg, rgba(77,183,179,0.1), rgba(125,248,154,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.step-card:hover .step-icon {
  background: var(--primary);
}

.step-icon i {
  font-size: 1.8rem;
  color: var(--accent);
  transition: color var(--transition);
}

.step-card:hover .step-icon i {
  color: var(--secondary);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   PLANES / SHOP
   ======================================== */
.plans-section {
  padding: 100px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.plan-card.plan-featured {
  border-color: var(--secondary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.plan-card.plan-featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.plan-offer-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.plan-popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.plan-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.plan-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--transition);
}

.plan-card:hover .plan-img-wrap img {
  transform: scale(1.05);
}

.plan-body {
  padding: 28px 24px;
  text-align: left;
}

.plan-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.plan-body > p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.plan-features {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.plan-features li i {
  color: var(--secondary-dark);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.plan-price {
  margin-bottom: 20px;
}

.plan-price-old {
  font-size: 0.88rem;
  color: var(--gray-400);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.plan-price-current {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.plan-price-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
}

.plan-body .btn {
  width: 100%;
  justify-content: center;
}

/* Add to cart feedback */
.btn.added {
  background: #22c55e !important;
  border-color: #22c55e !important;
}

/* ========================================
   COMMUNITY / STATS SECTION
   ======================================== */
.stats-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.community-banner {
  text-align: center;
  color: var(--white);
}

.community-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 32px;
}

.community-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.community-number {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.community-label {
  font-size: 1rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
}

/* ========================================
   CART DRAWER
   ======================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transition: right var(--transition);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--primary);
  color: var(--white);
}

.cart-drawer-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.cart-close:hover {
  background: rgba(255,255,255,0.2);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  color: var(--gray-400);
  text-align: center;
}

.cart-empty i {
  font-size: 3rem;
  color: var(--gray-300);
}

.cart-empty p {
  font-size: 1rem;
  margin: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
  color: var(--gray-700);
}

.cart-qty-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cart-qty-num {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  transition: color var(--transition);
}

.cart-item-remove:hover {
  color: #ef4444;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.cart-total-row strong {
  font-size: 1.3rem;
  color: var(--primary);
}

/* ========================================
   RESPONSIVE — NEW SECTIONS
   ======================================== */
@media (max-width: 1024px) {
  .steps-grid::before { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan-card.plan-featured { transform: none; }
  .plan-card.plan-featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .how-section { padding: 60px 0; }
  .plans-section { padding: 60px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .cart-drawer { max-width: 100%; }
  .nav-cart-item { display: none; }
}
