﻿/* =======================================================
  CollarGPSPerro.com - Hoja de estilos principal
  ======================================================= */

/* --- CSS VARIABLES ------------------------------------- */
:root {
  --verde: #1b3829;
  --verde-claro: #eef4f0;
  --verde-medio: #2d5a3f;
  --azul: #1b3829;
  --azul-claro: #eef4f0;
  --azul-acento: #2d5a3f;
  --naranja: #e0541e;
  --naranja-claro: #fdf1ec;
  --gris: #111827;
  --gris-medio: #374151;
  --gris-suave: #6b7280;
  --gris-400: #9ca3af;
  --gris-100: #f3f4f6;
  --gris-light: #ffffff;
  --borde: #e5e7eb;
  --radio: 8px;
  --radio-lg: 14px;
  --sombra: 0 1px 4px rgba(0,0,0,0.06);
  --sombra-md: 0 4px 20px rgba(0,0,0,0.09);
  --sombra-lg: 0 10px 40px rgba(0,0,0,0.13);
  --off-white: #f8f7f4;
}

/* --- RESET & BASE -------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--gris); background: #ffffff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Poppins', Arial, sans-serif; line-height: 1.2; color: var(--azul); }
a { color: var(--gris); text-decoration: none; transition: color .2s; }
a:hover { color: var(--azul-acento); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }

/* --- UTILITIES ----------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn-verde { display: inline-flex; align-items: center; gap: 8px; background: var(--naranja); color: white; padding: 12px 26px; border-radius: 8px; font-size: 15px; font-weight: 600; border: none; transition: all .2s; }
.btn-verde:hover { background: #c44818; color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,84,30,.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--verde); padding: 11px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1.5px solid #d1d5db; transition: all .2s; }
.btn-outline:hover { background: var(--verde-claro); border-color: var(--verde); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--verde); margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--gris-suave); max-width: 640px; margin-bottom: 36px; line-height: 1.7; }

/* --- TOPBAR ----------------------------------------- */
.topbar { background: var(--verde); color: rgba(255,255,255,.82); text-align: center; padding: 9px 24px; font-size: 13px; font-weight: 400; position: relative; z-index: 100; }
.topbar strong { color: white; font-weight: 700; }
.topbar a { color: #a8d5b5; text-decoration: underline; font-weight: 600; }
.topbar a:hover { color: white; }

/* --- HEADER ----------------------------------------- */
header { background: white; border-bottom: 2px solid var(--verde); position: sticky; top: 0; z-index: 90; box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: box-shadow .2s; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-size: 21px; font-weight: 800; color: var(--verde); text-decoration: none; flex-shrink: 0; }
.logo span { color: var(--naranja); }
.paw { width: 36px; height: 36px; background: var(--verde); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; flex-shrink: 0; }
.site-logo-lockup { display: block; height: 48px; width: auto; max-width: min(250px, 28vw); object-fit: contain; }
.footer-brand .site-logo-lockup { height: 56px; max-width: 260px; }
.mobile-nav-header .site-logo-lockup { height: 38px; max-width: 200px; }
nav { flex: 1; }
nav ul { display: flex; align-items: center; gap: 2px; }
nav ul li { position: relative; }
nav ul li a { display: flex; align-items: center; gap: 4px; padding: 8px 13px; font-size: 13.5px; font-weight: 600; color: var(--gris-medio); border-radius: 0; transition: all .2s; white-space: nowrap; letter-spacing: .01em; }
nav ul li a:hover, nav ul li a.active { color: var(--verde); background: transparent; }
nav ul li a.active { border-bottom: 2px solid var(--verde); margin-bottom: -2px; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--borde);
  border-top: 3px solid var(--verde);
  border-radius: 0 0 14px 14px;
  padding: 10px;
  min-width: 220px;
  max-height: min(70vh, calc(100vh - 96px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--sombra-md);
  z-index: 220;
}
nav ul li:hover .dropdown { display: flex; flex-direction: column; }
nav ul li.open .dropdown { display: flex; flex-direction: column; }
nav ul li.open > a { color: var(--verde); background: transparent; }
nav ul li > a.has-dropdown-toggle { cursor: pointer; }
.nav-caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-1px); opacity: .78; margin-left: 4px; transition: transform .2s ease, opacity .2s ease; flex-shrink: 0; }
nav ul li.open > a .nav-caret { transform: rotate(-135deg) translateY(-1px); opacity: 1; }
.dropdown a { padding: 9px 14px; font-size: 14px; border-radius: var(--radio); color: var(--gris-medio); display: block; }
.dropdown a:hover { background: var(--verde-claro); color: var(--verde); }
.header-search { display: flex; align-items: center; gap: 10px; background: var(--gris-100); border: 1px solid var(--borde); border-radius: 50px; padding: 7px 16px; cursor: pointer; transition: all .2s; min-width: 170px; }
.header-search:hover { border-color: var(--verde); background: white; }
.search-icon { color: var(--gris-400); font-size: 13px; }
.header-search input { border: none; background: transparent; font-size: 13px; color: var(--gris-medio); outline: none; width: 100%; font-family: 'Inter', sans-serif; pointer-events: none; }
.btn-cta { display: flex; align-items: center; gap: 8px; background: var(--naranja); color: white; padding: 9px 20px; border-radius: 8px; font-size: 13.5px; font-weight: 700; flex-shrink: 0; transition: all .2s; white-space: nowrap; text-decoration: none; }
.btn-cta:hover { color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,84,30,.35); background: #c44818; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; margin-left: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gris); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- BREADCRUMB ------------------------------------- */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--borde); padding: 10px 0; font-size: 13px; color: var(--gris-400); }
.breadcrumb a { color: var(--gris-medio); }
.breadcrumb a:hover { color: var(--verde); }
.breadcrumb span { margin: 0 6px; color: var(--gris-400); }

/* --- HERO ------------------------------------------- */
.hero { background: linear-gradient(135deg, #1b3829 0%, #1e4d33 45%, #2d6140 100%); padding: 80px 24px 88px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 35%), radial-gradient(circle at 80% 70%, rgba(255,255,255,.05), transparent 35%); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; color: white; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 5px 16px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; color: #a8d5b5; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.12; margin-bottom: 20px; color: white; }
.hero h1 em { font-style: italic; color: #7dcf9e; }
.hero-inner > div > p { font-size: 1.08rem; color: rgba(255,255,255,.82); margin-bottom: 32px; line-height: 1.75; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-main { display: inline-flex; align-items: center; gap: 10px; background: var(--naranja); color: white; padding: 14px 26px; border-radius: 8px; font-size: 15px; font-weight: 700; transition: all .2s; text-decoration: none; }
.btn-hero-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,84,30,.4); color: white; background: #c44818; }
.btn-hero-sec { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.4); color: white; padding: 13px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; transition: all .2s; text-decoration: none; }
.btn-hero-sec:hover { background: rgba(255,255,255,.22); color: white; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: white; }
.hero-stat .lab { font-size: 12px; opacity: .7; margin-top: 2px; }
.hero-visual { position: relative; }
.hero-card-main { background: white; border-radius: 20px; padding: 24px; box-shadow: var(--sombra-lg); color: var(--gris); }
.dog-emoji { font-size: 40px; color: var(--verde); margin-bottom: 10px; }
.hero-card-main h3 { font-size: 18px; margin-bottom: 12px; }
.gps-indicator { display: flex; align-items: center; gap: 8px; background: var(--verde-claro); border-radius: 8px; padding: 8px 12px; margin-bottom: 14px; font-size: 13px; font-weight: 600; color: var(--verde); }
.gps-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: blink 1.4s ease infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.mini-map { height: 80px; background: var(--gris-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.hero-card-mini { position: absolute; background: white; border-radius: 50px; padding: 8px 16px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 16px rgba(0,0,0,.12); display: flex; align-items: center; gap: 8px; white-space: nowrap; color: var(--gris); }
.hero-card-mini.top { top: -20px; right: -10px; }
.hero-card-mini.bottom { bottom: -16px; left: -10px; }

/* Home hero with custom full-bleed photo background */
.hero-home {
  background: url('img/ralph_germany-ai-generated-9437054.png') center 32% / cover no-repeat;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 20, 12, 0.72) 0%, rgba(12, 28, 17, 0.58) 50%, rgba(15, 34, 20, 0.65) 100%);
}

.hero-home .hero-inner {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.hero-home .hero-inner > div {
  text-align: center;
  margin: 0 auto;
}

.hero-home .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.hero-home .hero-inner > div > p {
  margin-left: auto;
  margin-right: auto;
}

.hero-home .hero-btns,
.hero-home .hero-stats {
  justify-content: center;
}

/* --- TRUST BAR -------------------------------------- */
.trust-bar { background: white; border-bottom: 1px solid var(--borde); padding: 16px 24px; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; justify-content: space-between; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gris-medio); padding: 6px 12px; }
.trust-item .icon { color: var(--verde); font-size: 16px; }

/* --- CATEGORIES ------------------------------------- */
.cats-section { padding: 72px 0; background: var(--off-white); }
.cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { background: white; border-radius: var(--radio-lg); border: 1px solid var(--borde); padding: 28px 24px; position: relative; overflow: hidden; transition: all .25s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.cat-card:hover { box-shadow: var(--sombra-md); transform: translateY(-3px); border-color: var(--verde); }
.cat-badge { position: absolute; top: 16px; right: 16px; background: var(--naranja); color: white; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; }
.cat-icon { font-size: 32px; color: var(--verde); margin-bottom: 16px; }
.cat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.cat-card p { font-size: 13px; color: var(--gris-suave); line-height: 1.65; margin-bottom: 16px; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--verde); }

/* --- PRODUCTS --------------------------------------- */
.products-section { padding: 72px 0; background: white; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: white; border: 1px solid var(--borde); border-radius: 10px; overflow: hidden; transition: all .25s; position: relative; }
.product-card:hover { box-shadow: var(--sombra-md); transform: translateY(-3px); }
.product-card.featured { border: 2px solid var(--verde); }
.featured-badge { background: linear-gradient(90deg, #1b3829, #2d5a3f); color: white; text-align: center; padding: 8px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 8px; }
.product-img { position: relative; height: 180px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .3s ease; }
.product-card:hover .product-img img { transform: scale(1.02); }
.product-rank { position: absolute; top: 12px; left: 12px; width: 32px; height: 32px; background: var(--verde); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; z-index: 1; font-family: 'Poppins', sans-serif; }
.product-body { padding: 22px; }
.product-brand { font-size: 11px; font-weight: 700; color: var(--verde); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.product-name { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: var(--gris); margin-bottom: 10px; }
.product-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; }
.rating-text { font-size: 13px; color: var(--gris-suave); }
.product-specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.spec-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gris-medio); }
.spec-dot { width: 6px; height: 6px; background: var(--verde); border-radius: 50%; flex-shrink: 0; }
.product-price { margin-bottom: 16px; }
.price-main { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--gris); }
.price-note { font-size: 12px; color: var(--gris-400); display: block; margin-top: 2px; }
.btn-amazon { width: 100%; background: #F97316; color: white; border: none; border-radius: 8px; padding: 13px 20px; font-size: 15px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .2s; }
.btn-amazon:hover { background: #c44818; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.4); }
.affiliate-note { font-size: 11px; color: var(--gris-400); text-align: center; margin-top: 8px; }

/* --- COMPARATOR ------------------------------------- */
.comparator-section { padding: 72px 0; background: var(--off-white); }
.comparator-wrap { overflow-x: auto; border-radius: var(--radio-lg); border: 1px solid var(--borde); }
.comparator-table { width: 100%; border-collapse: collapse; background: white; font-size: 14px; min-width: 700px; }
.comparator-table thead tr { background: linear-gradient(to right, #1b3829, #2d5a3f); color: white; }
.comparator-table thead th { padding: 14px 16px; text-align: left; font-size: 13px; font-weight: 600; white-space: nowrap; font-family: 'Inter', sans-serif; }
.comparator-table thead th.sortable { cursor: pointer; user-select: none; }
.comparator-table thead th.sortable:hover { background: rgba(255,255,255,.1); }
.sort-icon { margin-left: 6px; font-size: 11px; opacity: .6; }
.comparator-table tbody tr { border-bottom: 1px solid var(--borde); transition: background .15s; }
.comparator-table tbody tr:last-child { border-bottom: none; }
.comparator-table tbody tr:hover { background: var(--gris-light); }
.comparator-table td { padding: 14px 16px; vertical-align: middle; color: var(--gris-medio); }
.model-cell { font-weight: 700; color: var(--gris); }
.model-cell small { display: block; font-size: 12px; color: var(--gris-400); font-weight: 400; margin-top: 2px; }
.comparator-table td.best { font-weight: 800; color: var(--verde); }
.comparator-table td.check { color: var(--verde); font-weight: 700; }
.rating-bar { display: flex; align-items: center; gap: 10px; }
.bar-bg { flex: 1; height: 6px; background: var(--gris-100); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, #1b3829, #2d5a3f); border-radius: 3px; }

/* --- HOW IT WORKS ----------------------------------- */
.how-section { padding: 72px 0; background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--gris-light); border-radius: var(--radio-lg); padding: 28px 24px; text-align: center; position: relative; transition: all .25s; }
.step-card:hover { box-shadow: var(--sombra-md); transform: translateY(-3px); }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; background: var(--verde); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.step-icon { font-size: 32px; color: var(--azul); margin-bottom: 16px; margin-top: 8px; }
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--gris-suave); line-height: 1.65; }

/* --- BLOG ------------------------------------------- */
.blog-section { padding: 72px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.blog-card { background: white; border-radius: var(--radio-lg); border: 1px solid var(--borde); overflow: hidden; transition: all .25s; }
.blog-card:hover { box-shadow: var(--sombra-md); transform: translateY(-3px); }
.blog-card.main { grid-row: span 2; }
.blog-img { overflow: hidden; background: var(--gris-100); display: flex; align-items: center; justify-content: center; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-img i { font-size: 48px; color: var(--gris-400); }
.blog-body { padding: 20px; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--verde); background: var(--verde-claro); padding: 4px 10px; border-radius: 50px; display: inline-block; margin-bottom: 10px; }
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--gris); }
.blog-card.main h3 { font-size: 22px; }
.blog-card p { font-size: 14px; color: var(--gris-suave); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--gris-400); flex-wrap: wrap; }
.read-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--verde); }
.read-link:hover { color: var(--azul); }

/* --- LEAD FORM -------------------------------------- */
.lead-section { background: linear-gradient(to right, #1b3829, #2d5a3f); padding: 72px 24px; text-align: center; }
.lead-inner { max-width: 680px; margin: 0 auto; color: white; }
.lead-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; color: white; }
.lead-inner p { font-size: 1.05rem; opacity: .88; margin-bottom: 30px; }
.lead-form { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radio-lg); padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 50px; background: rgba(255,255,255,.12); color: white; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: border-color .2s; }
.form-input::placeholder { color: rgba(255,255,255,.6); }
.form-input:focus { border-color: rgba(255,255,255,.6); }
.form-select { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 50px; background: rgba(255,255,255,.12); color: white; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; cursor: pointer; margin-bottom: 12px; }
.form-select option { background: #1A1A1A; color: white; }
.btn-form { width: 100%; background: var(--naranja); color: white; border: none; border-radius: 8px; padding: 15px; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .2s; margin-top: 6px; font-family: 'Inter', Arial, sans-serif; }
.btn-form:hover { background: #c44818; transform: translateY(-1px); }
.form-disclaimer { margin-top: 14px; font-size: 12px; opacity: .65; }

/* --- QUIZ PROMO ------------------------------------- */
.quiz-promo-section { padding: 72px 0; background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%); }
.quiz-promo { display: grid; grid-template-columns: minmax(0, 1.35fr) 360px; gap: 28px; align-items: stretch; }
.quiz-promo-panel { background: white; border: 1px solid var(--borde); border-radius: 20px; padding: 32px; box-shadow: var(--sombra-md); }
.quiz-promo-panel .section-sub { margin-bottom: 22px; }
.quiz-promo-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 26px; }
.quiz-promo-point { display: flex; gap: 12px; align-items: flex-start; background: #f8fbf9; border: 1px solid #e6efe9; border-radius: 14px; padding: 14px 16px; }
.quiz-promo-point i { color: var(--verde); font-size: 18px; margin-top: 2px; }
.quiz-promo-point span { font-size: 14px; color: var(--gris-medio); line-height: 1.55; }
.quiz-promo-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quiz-promo-side { background: linear-gradient(145deg, #1b3829 0%, #2d5a3f 100%); color: white; border-radius: 20px; padding: 30px; box-shadow: var(--sombra-lg); display: flex; flex-direction: column; justify-content: space-between; }
.quiz-promo-side h3 { color: white; font-size: 1.35rem; margin-bottom: 10px; }
.quiz-promo-side p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; }
.quiz-side-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.quiz-side-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 14px 12px; text-align: center; }
.quiz-side-stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.3rem; color: white; }
.quiz-side-stat span { display: block; font-size: 12px; color: rgba(255,255,255,.72); margin-top: 4px; line-height: 1.4; }
.quiz-side-note { font-size: 13px; color: rgba(255,255,255,.72); }

/* --- QUIZ PAGE -------------------------------------- */
.quiz-page-section { padding: 56px 0 72px; background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%); }
.quiz-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.quiz-shell { background: white; border: 1px solid var(--borde); border-radius: 20px; box-shadow: var(--sombra-md); overflow: hidden; }
.quiz-progress { padding: 20px 24px 0; }
.quiz-progress-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 12px; }
.quiz-progress-top strong { font-size: 14px; color: var(--gris); }
.quiz-progress-top span { font-size: 13px; color: var(--gris-suave); }
.quiz-progress-bar { height: 10px; background: #edf2ee; border-radius: 999px; overflow: hidden; }
.quiz-progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, #1b3829, #2d5a3f); border-radius: 999px; transition: width .25s ease; }
.quiz-body { padding: 28px 24px 24px; }
.quiz-kicker { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--verde); margin-bottom: 12px; display: inline-block; }
.quiz-question h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; color: var(--gris); }
.quiz-question p { font-size: 1rem; color: var(--gris-suave); line-height: 1.75; margin-bottom: 24px; }
.quiz-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.quiz-choice-btn { text-align: left; background: white; border: 1px solid var(--borde); border-radius: 16px; padding: 18px; min-height: 116px; transition: all .2s ease; }
.quiz-choice-btn:hover { border-color: var(--verde); transform: translateY(-2px); box-shadow: var(--sombra); }
.quiz-choice-btn strong { display: block; font-size: 15px; color: var(--gris); margin-bottom: 7px; }
.quiz-choice-btn span { display: block; font-size: 13px; color: var(--gris-suave); line-height: 1.6; }
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.quiz-nav button { border: none; border-radius: 10px; padding: 12px 18px; font-size: 14px; font-weight: 700; }
.quiz-back-btn { background: #f3f4f6; color: var(--gris); }
.quiz-back-btn[disabled] { opacity: .45; cursor: not-allowed; }
.quiz-skip-btn { background: transparent; color: var(--gris-suave); }
.quiz-result-card { background: #f9fbfa; border: 1px solid #e6efe9; border-radius: 18px; padding: 24px; }
.quiz-result-card h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 8px; }
.quiz-result-card > p { color: var(--gris-suave); line-height: 1.75; }
.quiz-result-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 20px; }
.quiz-result-badge { background: white; border: 1px solid #d9e6dc; border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 700; color: var(--verde); }
.quiz-result-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 20px; margin-top: 20px; }
.quiz-result-main { background: white; border: 1px solid var(--borde); border-radius: 16px; padding: 22px; }
.quiz-result-main h3 { font-size: 1.35rem; margin-bottom: 6px; }
.quiz-result-main .quiz-price { font-family: 'Poppins', sans-serif; font-size: 1.6rem; color: var(--gris); margin: 16px 0 6px; }
.quiz-result-main .quiz-fee { font-size: 13px; color: var(--gris-400); margin-bottom: 18px; }
.quiz-result-reasons { display: grid; gap: 10px; margin: 18px 0 22px; }
.quiz-result-reason { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--gris-medio); line-height: 1.6; }
.quiz-result-reason i { color: var(--verde); margin-top: 3px; }
.quiz-result-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quiz-alt-card { background: white; border: 1px solid var(--borde); border-radius: 16px; padding: 18px; }
.quiz-alt-card h4 { font-size: 12px; font-weight: 700; color: var(--gris-400); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.quiz-alt-card strong { display: block; font-size: 18px; color: var(--gris); margin-bottom: 6px; }
.quiz-alt-card p { font-size: 13px; color: var(--gris-suave); line-height: 1.65; margin-bottom: 16px; }
.quiz-disclaimer { margin-top: 18px; font-size: 12px; color: var(--gris-400); }
.quiz-side-card { background: white; border: 1px solid var(--borde); border-radius: 18px; padding: 22px; box-shadow: var(--sombra); margin-bottom: 16px; }
.quiz-side-card h3 { font-size: 16px; margin-bottom: 10px; }
.quiz-side-card p { font-size: 14px; color: var(--gris-suave); line-height: 1.7; }
.quiz-mini-list { display: grid; gap: 12px; margin-top: 14px; }
.quiz-mini-item { display: flex; gap: 12px; align-items: flex-start; }
.quiz-mini-item i { color: var(--verde); margin-top: 3px; }
.quiz-mini-item span { font-size: 13px; color: var(--gris-medio); line-height: 1.6; }
.quiz-strip { padding: 28px 0 10px; background: white; }
.quiz-strip-card { display: flex; justify-content: space-between; gap: 20px; align-items: center; background: linear-gradient(135deg, #f7faf8 0%, #eef4f0 100%); border: 1px solid #d8e5dc; border-radius: 18px; padding: 24px 26px; }
.quiz-strip-copy h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 8px; }
.quiz-strip-copy p { font-size: 14px; color: var(--gris-suave); line-height: 1.7; }

/* --- GUIDES ----------------------------------------- */
.guides-section { padding: 72px 0; background: white; }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-card { background: var(--gris-light); border-radius: var(--radio-lg); border: 1px solid var(--borde); padding: 24px; display: flex; gap: 16px; transition: all .25s; }
.guide-card:hover { box-shadow: var(--sombra-md); transform: translateY(-2px); border-color: var(--verde); background: white; }
.guide-icon { font-size: 28px; color: var(--verde); min-width: 36px; }
.guide-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.guide-content p { font-size: 13px; color: var(--gris-suave); line-height: 1.65; margin-bottom: 10px; }
.guide-link { font-size: 13px; font-weight: 700; color: var(--verde); display: inline-flex; align-items: center; gap: 4px; }

/* --- TESTIMONIALS ----------------------------------- */
.testimonials-section { padding: 72px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: white; border-radius: var(--radio-lg); border: 1px solid var(--borde); padding: 28px; transition: all .25s; }
.testimonial-card:hover { box-shadow: var(--sombra-md); }
.testimonial-card .stars { color: #F59E0B; font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; display: block; }
.testimonial-card p { font-size: 14.5px; color: var(--gris-medio); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--verde), var(--azul)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: white; flex-shrink: 0; }
.author-info .name { font-size: 14px; font-weight: 700; }
.author-info .desc { font-size: 12px; color: var(--gris-400); }

/* --- FAQ -------------------------------------------- */
.faq-section { padding: 72px 0; background: white; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
.faq-item { background: var(--gris-light); border: 1px solid var(--borde); border-radius: var(--radio-lg); padding: 20px 24px; cursor: pointer; transition: all .2s; }
.faq-item:hover, .faq-item.open { background: white; border-color: var(--verde); box-shadow: var(--sombra); }
.faq-item h3 { font-size: 15px; font-weight: 700; color: var(--gris); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-arrow { display: inline-block; font-size: 16px; color: var(--verde); transition: transform .35s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-item p { font-size: 14px; color: var(--gris-suave); line-height: 1.7; padding-top: 12px; }

/* --- ABOUT STRIP ------------------------------------ */
.about-strip { background: linear-gradient(to right, #1b3829, #2d5a3f); padding: 60px 24px; }
.about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: center; }
.about-logo { text-align: center; color: white; }
.big-icon { font-size: 52px; margin-bottom: 12px; }
.about-logo h3 { font-size: 22px; color: white; }
.about-content h2 { font-size: 1.6rem; color: white; margin-bottom: 14px; }
.about-content p { font-size: 14.5px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 12px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.about-tag { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: white; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 50px; }

/* --- FOOTER ----------------------------------------- */
footer { background: #111827; padding: 56px 24px 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { font-size: 20px; color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 14px; cursor: pointer; transition: all .2s; }
.social-btn:hover { background: var(--verde); color: white; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-affiliate { max-width: 1200px; margin: 0 auto; padding: 16px 0 28px; font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.65; }

/* --- FLOATING CTA ----------------------------------- */
.floating-cta { position: fixed; bottom: 28px; right: 28px; background: var(--naranja); color: white; padding: 14px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; box-shadow: 0 8px 28px rgba(224,84,30,.4); cursor: pointer; z-index: 70; display: flex; align-items: center; gap: 10px; user-select: none; transition: opacity .3s ease, transform .3s ease; }
.floating-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 36px rgba(224,84,30,.55); background: #c44818; }

/* --- READING PROGRESS ------------------------------- */
#reading-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, #1b3829, #2d5a3f); z-index: 9999; transition: width .1s linear; }

/* --- BACK TO TOP ------------------------------------ */
#back-to-top { position: fixed; bottom: 90px; right: 28px; width: 44px; height: 44px; background: white; color: var(--verde); font-size: 18px; font-weight: 700; border: 1.5px solid var(--borde); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--sombra-md); cursor: pointer; z-index: 70; opacity: 0; transform: translateY(10px); transition: all .3s; pointer-events: none; }
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--verde); color: white; }

/* --- MOBILE OVERLAY --------------------------------- */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* --- MOBILE NAV ------------------------------------- */
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; background: white; z-index: 210; transform: translateX(100%); transition: transform .3s cubic-bezier(.25,.46,.45,.94); overflow-y: auto; display: flex; flex-direction: column; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--borde); }
.mobile-close-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--gris-100); border: none; border-radius: 50%; font-size: 16px; color: var(--gris); cursor: pointer; }
.mobile-nav-ul { flex: 1; padding: 12px 0; }
.mobile-nav-ul li a { display: flex; align-items: center; gap: 12px; padding: 12px 22px; font-size: 15px; font-weight: 500; color: var(--gris-medio); transition: background .15s; }
.mobile-nav-ul li a:hover { background: var(--gris-light); color: var(--verde); }
.mobile-nav-ul li.sub-item a { padding-left: 44px; font-size: 14px; color: var(--gris-suave); }
.mobile-nav-footer { padding: 16px 20px; border-top: 1px solid var(--borde); }

/* --- COOKIE BANNER ---------------------------------- */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #374151; color: white; padding: 16px 24px; z-index: 300; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; transform: translateY(100%); transition: transform .4s cubic-bezier(.25,.46,.45,.94); }
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { flex: 1; font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 1.55; min-width: 280px; }
#cookie-banner a { color: var(--verde-medio); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--naranja); color: white; border: none; border-radius: 6px; padding: 9px 20px; font-size: 13px; font-weight: 700; font-family: 'Inter', Arial, sans-serif; cursor: pointer; }
.btn-cookie-reject { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 9px 20px; font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; }

/* --- SEARCH OVERLAY --------------------------------- */
#search-overlay { position: fixed; inset: 0; background: rgba(15,30,50,.7); z-index: 500; display: flex; align-items: flex-start; justify-content: center; padding-top: 80px; opacity: 0; pointer-events: none; transition: opacity .25s; }
#search-overlay.open { opacity: 1; pointer-events: auto; }
.search-modal { background: white; width: 100%; max-width: 620px; border-radius: var(--radio-lg); box-shadow: var(--sombra-lg); overflow: hidden; }
.search-modal-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--borde); }
.search-modal-input { flex: 1; border: none; font-size: 16px; color: var(--gris); font-family: 'Inter', sans-serif; outline: none; }
.search-modal-input::placeholder { color: var(--gris-400); }
.search-close-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--gris-100); border: none; border-radius: 50%; font-size: 14px; cursor: pointer; color: var(--gris); }
.search-results { max-height: 360px; overflow-y: auto; }
.search-result-item { display: flex; align-items: center; gap: 14px; padding: 14px 20px; cursor: pointer; transition: background .15s; border-bottom: 1px solid var(--gris-100); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--gris-light); }
.result-icon { width: 36px; height: 36px; background: var(--verde-claro); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--verde); font-size: 16px; flex-shrink: 0; }
.result-text h4 { font-size: 14px; font-weight: 700; color: var(--gris); margin-bottom: 2px; }
.result-text p { font-size: 12px; color: var(--gris-400); }
.search-no-results { padding: 28px 20px; text-align: center; color: var(--gris-suave); font-size: 14px; }
.search-suggestions { padding: 16px 20px; border-top: 1px solid var(--borde); background: var(--gris-light); }
.search-suggestions h4 { font-size: 11px; font-weight: 700; color: var(--gris-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.search-suggestion-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.search-tag { background: white; border: 1px solid var(--borde); color: var(--gris-medio); font-size: 13px; padding: 5px 12px; border-radius: 50px; cursor: pointer; transition: all .15s; }
.search-tag:hover { background: var(--verde-claro); border-color: var(--verde); color: var(--verde); }

/* --- TOAST ------------------------------------------ */
#toast-container { position: fixed; top: 82px; right: 20px; z-index: 600; display: flex; flex-direction: column; gap: 8px; }
.toast { background: #374151; color: white; padding: 12px 18px; border-radius: var(--radio); font-size: 14px; box-shadow: var(--sombra-md); animation: toastIn .3s ease forwards; max-width: 300px; }
.toast.success { background: var(--verde); }
.toast.error { background: #DC2626; }
@keyframes toastIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(60px); } }

/* --- MEDIA QUERIES ---------------------------------- */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .quiz-promo { grid-template-columns: 1fr; }
  .quiz-layout { grid-template-columns: 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .header-search { min-width: 160px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo { text-align: left; display: flex; align-items: center; gap: 16px; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.main { grid-row: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quiz-promo-points { grid-template-columns: 1fr; }
  .quiz-choice-grid { grid-template-columns: 1fr; }
  .quiz-result-grid { grid-template-columns: 1fr; }
  .quiz-strip-card { flex-direction: column; align-items: flex-start; }
  .header-search { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 6px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 56px; }
  .cats-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
  #back-to-top { right: 16px; bottom: 72px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-btns { flex-direction: column; }
  .btn-cookie-accept, .btn-cookie-reject { text-align: center; padding: 12px; width: 100%; }
  .quiz-promo-panel, .quiz-promo-side, .quiz-shell, .quiz-side-card { padding: 22px; }
  .quiz-side-stats { grid-template-columns: 1fr; }
  .quiz-nav { flex-wrap: wrap; }
}

/* --- PAGINAS INTERNAS ------------------------------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: linear-gradient(to right, #1b3829, #2d5a3f); padding: 56px 24px; text-align: center; color: white; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(11,28,20,0.9) 0%, rgba(27,56,41,0.8) 52%, rgba(45,90,63,0.72) 100%); }
.page-hero.page-hero-photo::before { background: linear-gradient(100deg, rgba(8,23,16,0.8) 0%, rgba(20,50,35,0.68) 48%, rgba(10,30,20,0.58) 100%), var(--hero-photo) center center / cover no-repeat; }
.page-hero .section-label { color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 14px; color: white; }
.page-hero p { font-size: 1.05rem; max-width: 640px; margin: 0 auto; opacity: 0.88; }
.page-hero .hero-meta { display: flex; gap: 24px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.page-hero .hero-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; opacity: 0.78; }
.page-hero .hero-cta { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; max-width: 1180px; margin: 0 auto; padding: 48px 24px; align-items: start; }
.article-body h2 { font-family: 'Poppins', Arial, sans-serif; font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 40px 0 16px; color: #1b3829; border-bottom: 2px solid #dbe8df; padding-bottom: 10px; }
.article-body h3 { font-size: 1.15rem; margin: 28px 0 10px; color: #1b3829; font-weight: 700; }
.article-body p { font-size: 1.02rem; line-height: 1.82; color: #3D3D3D; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; line-height: 1.7; color: #3D3D3D; }
.article-body strong { color: #1F1F1F; }
.article-body .callout { background: #eef4f0; border-left: 4px solid #1b3829; border-radius: 0 12px 12px 0; padding: 18px 20px; margin: 24px 0; font-size: 0.98rem; color: #1b3829; }
.article-body .verdict-box { background: #f5f7fa; border: 1px solid #dbe8df; border-radius: 16px; padding: 24px; margin: 28px 0; }
.article-body .verdict-box h4 { font-size: 13px; font-weight: 700; color: #1b3829; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.article-body .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.article-body .pros { background: #eef4f0; border-radius: 12px; padding: 18px; }
.article-body .cons { background: #FEF2F2; border-radius: 12px; padding: 18px; }
.article-body .pros h4 { color: #1b3829; font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.article-body .cons h4 { color: #DC2626; font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.article-body .pros li, .article-body .cons li { font-size: 14px; margin-bottom: 6px; list-style: none; padding-left: 0; }
.article-body .pros li::before { content: '– '; color: #1b3829; font-weight: 700; }
.article-body .cons li::before { content: '– '; color: #DC2626; font-weight: 700; }
.article-sidebar { position: sticky; top: 90px; }
.toc-box { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.toc-box h4 { font-size: 11px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.toc-box ol { counter-reset: toc; padding-left: 0; list-style: none; }
.toc-box li { counter-increment: toc; margin-bottom: 8px; font-size: 13px; display: flex; gap: 8px; }
.toc-box li::before { content: counter(toc) '.'; color: #1b3829; font-weight: 700; min-width: 16px; }
.toc-box a { color: #1b3829; text-decoration: none; transition: color 0.2s; }
.toc-box a:hover { color: #1b3829; }
.sidebar-cta { background: linear-gradient(to right, #1b3829, #2d5a3f); border-radius: 14px; padding: 22px; color: white; text-align: center; }
.sidebar-cta h4 { font-size: 15px; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; opacity: 0.85; margin-bottom: 14px; }
.sidebar-related { background: white; border: 1px solid #E5E7EB; border-radius: 14px; padding: 20px; margin-top: 16px; }
.sidebar-related h4 { font-size: 11px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.related-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #F3F4F6; cursor: pointer; }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item .ri-icon { font-size: 18px; color: #1b3829; min-width: 24px; }
.related-item .ri-text { font-size: 13px; font-weight: 600; color: #1b3829; line-height: 1.4; }
.related-item:hover .ri-text { color: #1b3829; }
.article-product { border: 1px solid #E5E7EB; border-radius: 16px; padding: 22px; margin: 24px 0; display: grid; grid-template-columns: 160px 1fr; gap: 20px; background: white; transition: box-shadow 0.2s; }
.article-product:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.article-product .ap-img { border-radius: 10px; overflow: hidden; height: 110px; }
.article-product .ap-img img { width: 100%; height: 100%; object-fit: cover; }
.article-product .ap-brand { font-size: 11px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.08em; }
.article-product .ap-name { font-size: 18px; font-weight: 700; color: #1F1F1F; margin: 4px 0 8px; font-family: 'Poppins', sans-serif; }
.article-product .ap-verdict { font-size: 13px; color: #6B7280; margin-bottom: 10px; line-height: 1.6; }
.article-product .ap-price { font-size: 20px; font-weight: 800; color: #1F1F1F; margin-bottom: 10px; }
.article-product .ap-stars { color: #F59E0B; font-size: 14px; margin-bottom: 8px; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 32px; }
.blog-card-full { background: white; border-radius: 16px; border: 1px solid #E5E7EB; overflow: hidden; transition: all 0.25s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.blog-card-full:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-card-full .bcf-img { height: 180px; overflow: hidden; }
.blog-card-full .bcf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card-full:hover .bcf-img img { transform: scale(1.05); }
.blog-card-full .bcf-body { padding: 20px; }
.blog-card-full .bcf-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6B7280; margin-bottom: 8px; display: block; }
.blog-card-full h3 { font-family: 'Poppins', sans-serif; font-size: 17px; line-height: 1.4; margin-bottom: 8px; color: #1F1F1F; }
.blog-card-full p { font-size: 13px; color: #6B7280; line-height: 1.6; margin-bottom: 12px; }
.blog-card-full .bcf-meta { font-size: 12px; color: #9CA3AF; display: flex; gap: 12px; flex-wrap: wrap; }
.ranking-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.ranking-card { display: grid; grid-template-columns: 60px 160px 1fr; gap: 20px; align-items: center; background: white; border: 1px solid #E5E7EB; border-radius: 16px; padding: 22px; transition: all 0.25s; }
.ranking-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.09); }
.ranking-card.gold { border: 2px solid #1A1A1A; background: #FAFAFA; }
.rank-num { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 700; color: #D1D5DB; text-align: center; line-height: 1; }
.ranking-card.gold .rank-num { color: #1A1A1A; }
.rank-img { border-radius: 12px; overflow: hidden; height: 100px; }
.rank-img img { width: 100%; height: 100%; object-fit: cover; }
.rank-info .ri-brand { font-size: 11px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.rank-info .ri-name { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: #1F1F1F; margin-bottom: 6px; }
.rank-info .ri-desc { font-size: 13px; color: #6B7280; margin-bottom: 10px; line-height: 1.6; }
.rank-info .ri-bottom { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ri-price { font-size: 20px; font-weight: 800; color: #1F1F1F; }
.ri-stars { color: #F59E0B; font-size: 13px; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; padding: 16px 0; }
.filter-btn { padding: 7px 18px; border: 1.5px solid #D1D5DB; border-radius: 30px; font-size: 13px; font-weight: 500; cursor: pointer; background: white; transition: all 0.18s; font-family: 'Inter', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--verde); color: white; border-color: var(--verde); }
.pagination-btn { padding: 10px 16px; border: 1.5px solid #D1D5DB; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; background: white; transition: all 0.2s; font-family: 'Inter', sans-serif; color: #374151; display: inline-flex; align-items: center; gap: 6px; }
.pagination-btn:hover:not(:disabled) { background: #F3F4F6; border-color: #10B981; transform: translateY(-1px); }
.pagination-btn.active { background: #10B981; color: white; border-color: #10B981; }
.pagination-btn:disabled { cursor: not-allowed; }
.contact-section { padding: 60px 24px; background: #FFFFFF; }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; max-width: 960px; margin: 0 auto; }
.contact-form-box { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); border: 1px solid #E5E7EB; }
.contact-form-box h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; margin-bottom: 20px; color: #1F1F1F; }
.contact-form-box label { display: block; font-size: 13px; font-weight: 600; color: #1F1F1F; margin-bottom: 5px; }
.contact-form-box input, .contact-form-box textarea, .contact-form-box select { width: 100%; padding: 11px 14px; border: 1.5px solid #D1D5DB; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 14px; transition: border-color 0.2s; box-sizing: border-box; background: white; color: #1F1F1F; }
.contact-form-box input:focus, .contact-form-box textarea:focus { border-color: var(--verde); outline: none; }
.contact-form-box textarea { min-height: 120px; resize: vertical; }
.contact-info-box h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; margin-bottom: 20px; color: #1F1F1F; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #F3F4F6; }
.contact-info-item:last-child { border-bottom: none; }

/* === Imágenes decorativas === */
.feature-img-wrap { width: 100%; max-height: 460px; overflow: hidden; line-height: 0; }
.feature-img-wrap img { width: 100%; height: 460px; object-fit: cover; object-position: center 30%; display: block; }
.article-img { margin: 36px 0; border-radius: 16px; overflow: hidden; line-height: 0; box-shadow: 0 6px 28px rgba(27,56,41,0.14); }
.article-img img { width: 100%; height: auto; max-height: 420px; object-fit: cover; display: block; border-radius: 16px; }
@media (max-width: 768px) { .feature-img-wrap img { height: 240px; } .article-img img { max-height: 220px; } }
.ci-icon { font-size: 20px; color: var(--verde); min-width: 28px; margin-top: 3px; }
.ci-text strong { display: block; font-size: 14px; font-weight: 700; color: #1F1F1F; margin-bottom: 3px; }
.ci-text span { font-size: 13px; color: #6B7280; }
.guides-category { margin-top: 52px; }
.guides-category-title { font-family: 'Poppins', sans-serif; font-size: 1.4rem; color: #1b3829; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #dbe8df; display: flex; align-items: center; gap: 10px; }
.guides-cat-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid #dbe8df; }
.guides-cat-icon { width: 52px; height: 52px; min-width: 52px; background: linear-gradient(to right, #1b3829, #2d5a3f); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; }
.guides-cat-header h2 { font-family: 'Poppins', sans-serif; font-size: 1.35rem; color: #1b3829; margin-bottom: 6px; }
.guides-cat-header p { font-size: 14px; color: #6B7280; line-height: 1.6; margin: 0; }
.guide-card-full { display: flex; align-items: flex-start; gap: 18px; background: white; border: 1px solid #E5E7EB; border-radius: 14px; padding: 22px; transition: all 0.2s; cursor: pointer; text-decoration: none; color: inherit; }
.guide-card-full:hover { box-shadow: 0 6px 24px rgba(27,56,41,0.14); border-color: #1b3829; transform: translateY(-2px); }
.guide-card-full .guide-icon { width: 44px; height: 44px; min-width: 44px; background: #eef4f0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #1b3829; }
.guide-card-full h3 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #1b3829; margin-bottom: 6px; line-height: 1.4; }
.guide-card-full p { font-size: 13px; color: #6B7280; line-height: 1.6; margin-bottom: 10px; }
.guide-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: #1b3829; background: #eef4f0; border-radius: 20px; padding: 3px 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.gcf-icon { font-size: 28px; color: var(--verde); min-width: 36px; }
.gcf-tag { font-size: 10px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.gcf-title { font-size: 16px; font-weight: 700; color: #1F1F1F; margin-bottom: 6px; }
.gcf-desc { font-size: 13px; color: #6B7280; line-height: 1.6; }
.category-intro { background: white; border-radius: 16px; border: 1px solid #E5E7EB; padding: 28px 32px; margin-bottom: 36px; display: flex; gap: 20px; align-items: flex-start; }
.cat-intro-icon { font-size: 36px; color: var(--verde); min-width: 44px; }
.cat-intro-text h2 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; margin-bottom: 8px; }
.cat-intro-text p { font-size: 14px; color: #3D3D3D; line-height: 1.7; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.benefit-item { background: white; border: 1px solid #E5E7EB; border-radius: 14px; padding: 20px; text-align: center; }
.benefit-item .bi-icon { font-size: 28px; color: var(--verde); margin-bottom: 10px; }
.benefit-item h4 { font-size: 14px; font-weight: 700; color: #1F1F1F; margin-bottom: 6px; }
.benefit-item p { font-size: 13px; color: #6B7280; }
.comparator-note { font-size: 13px; color: #9CA3AF; margin-top: 16px; text-align: center; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .ranking-card { grid-template-columns: 48px 100px 1fr; gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-product { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ranking-card { grid-template-columns: 44px 1fr; }
  .rank-img { display: none; }
  .page-hero.page-hero-photo::before { background-position: center 35%; }
  .article-body .pros-cons { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .category-intro { flex-direction: column; }
}




