/* ================================================
   FUMIGAR CLEAN — STYLES.CSS
   Paleta: Azul Corporativo + Verde Ecológico
   ================================================ */

:root {
    --blue:          #1565C0;
    --blue-dark:     #0D47A1;
    --blue-light:    #E3F2FD;
    --blue-mid:      #1976D2;
    --green:         #2E7D32;
    --green-dark:    #1B5E20;
    --green-light:   #E8F5E9;
    --green-mid:     #388E3C;
    --green-bright:  #43A047;
    --white:         #FFFFFF;
    --off-white:     #F8FAFB;
    --gray-100:      #F1F5F9;
    --gray-200:      #E2E8F0;
    --gray-300:      #CBD5E1;
    --gray-500:      #64748B;
    --gray-700:      #334155;
    --gray-900:      #0F172A;
    --whatsapp:      #25D366;
    --whatsapp-dark: #128C7E;

    --font-head:  'Outfit', sans-serif;
    --font-body:  'Inter', sans-serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;
    --radius-hex: 6px 18px 6px 18px; /* Angular/hexagonal feel */

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.13);
    --shadow-xl:  0 24px 64px rgba(0,0,0,.16);
    --shadow-blue: 0 8px 32px rgba(21,101,192,.25);
    --shadow-green: 0 8px 32px rgba(46,125,50,.25);

    --transition: .3s cubic-bezier(.4,0,.2,1);
    --nav-h: 78px;
}

/* ── RESETS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; color: var(--gray-900); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILS ── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.text-blue        { color: var(--blue); }
.text-green       { color: var(--green); }
.text-green-light { color: var(--green-bright); }
.text-light-gray  { color: rgba(255,255,255,.75); }
.bg-light         { background: var(--off-white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes pulseWA  {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes slideDown { from { transform:translateY(-100%); opacity:0; } to { transform:none; opacity:1; } }

.animate-up        { animation: fadeUp .8s both; }
.delay-1           { animation-delay:.15s; }
.delay-2           { animation-delay:.30s; }
.delay-3           { animation-delay:.45s; }
.delay-4           { animation-delay:.60s; }

.card-animate      { opacity:0; transform:translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.card-animate.visible { opacity:1; transform:none; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-head); font-weight: 700;
    border-radius: var(--radius-hex);
    border: 2px solid transparent;
    cursor: pointer; transition: var(--transition);
    padding: 14px 28px; font-size: 1rem; white-space: nowrap;
}
.btn-primary {
    background: var(--blue); color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover  { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(21,101,192,.35); }
.btn-secondary {
    background: var(--green); color: var(--white);
    box-shadow: var(--shadow-green);
}
.btn-secondary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline-white  { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-lg  { padding: 16px 36px; font-size: 1.1rem; }
.btn-xl  { padding: 18px 40px; font-size: 1.2rem; }
.btn-hero { padding: 17px 34px; font-size: 1.1rem; border-radius: var(--radius-hex); }

/* ── SECTION TAGS ── */
.section-tag {
    display: inline-block; border-radius: 999px;
    font-size: .75rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; padding: 5px 16px; margin-bottom: 14px;
}
.tag-blue  { background: var(--blue-light);  color: var(--blue); }
.tag-green { background: var(--green-light); color: var(--green); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-header p  { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.75); }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top:0; left:0; right:0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--blue);
    animation: slideDown .5s both;
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 50px; width: auto; object-fit: contain; }
.logo-blue  { color: var(--blue); font-family: var(--font-head); font-weight:900; font-size: 1.4rem; }
.logo-green { color: var(--green); font-family: var(--font-head); font-weight:900; font-size: 1.4rem; }
.logo-wordmark {
    font-family: var(--font-head); font-weight: 900; font-size: 1.3rem;
    letter-spacing: -.01em; line-height: 1;
    display: flex; align-items: center; gap: 3px;
}
.footer-logo-wrap {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.footer-logo-text {
    font-family: var(--font-head); font-weight: 900; font-size: 1.5rem;
    letter-spacing: -.01em;
}
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-link {
    font-size: .92rem; font-weight: 600; color: var(--gray-700);
    padding: 8px 13px; border-radius: var(--radius-sm);
    transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-light); }

.btn-nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    font-weight: 700; font-family: var(--font-head); font-size: .92rem;
    padding: 10px 20px; border-radius: var(--radius-hex);
    transition: var(--transition); white-space: nowrap;
    box-shadow: var(--shadow-green);
}
.btn-nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 20; flex-shrink: 0;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--gray-900); border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    min-height: 100vh; 
    padding-top: var(--nav-h);
    position: relative;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0D2B52 55%, #1B4D1E 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 70% at 85% 50%, rgba(21,101,192,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 15% 80%, rgba(46,125,50,.18) 0%, transparent 70%);
}
.hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,20,50,.88) 0%,
        rgba(10,20,50,.70) 50%,
        rgba(15,60,20,.65) 100%
    );
}
/* When user places their real image: add it here */
/* .hero-bg { background-image: url('img/sofa-hero.jpg'); background-size: cover; background-position: center; } */

.hero-content {
    position: relative; z-index: 2;
    max-width: 900px; margin: 0 auto;
    padding: 80px 24px 100px;
    text-align: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 600;
    padding: 8px 20px; border-radius: 999px; backdrop-filter: blur(8px);
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 0 4px rgba(67,160,71,.3);
    animation: pulseWA 2s infinite;
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white);
    margin-bottom: 24px; font-weight: 900; letter-spacing: -.02em;
}
.text-gradient-hero {
    background: linear-gradient(90deg, #64B5F6, #81C784);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.8);
    max-width: 680px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-subtitle strong { color: var(--white); }
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    display: flex; justify-content: center; align-items: center;
    gap: 32px; flex-wrap: wrap;
    padding: 24px 40px; border-radius: var(--radius-lg);
    background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    display: inline-flex;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--white); }
.stat span   { font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.2); }
.hero-scroll-indicator {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-indicator span {
    display: block; width: 24px; height: 40px;
    border: 2px solid rgba(255,255,255,.35); border-radius: 12px;
    position: relative;
}
.hero-scroll-indicator span::after {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: rgba(255,255,255,.6); border-radius: 2px;
    animation: fadeUp 1.5s infinite;
}

/* ── TRUST BANNER ── */
.trust-banner {
    background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 60%, var(--green) 100%);
    padding: 0;
    position: relative; z-index: 10;
}
.trust-container {
    max-width: 1220px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: stretch; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 14px;
    padding: 24px 28px; flex: 1; min-width: 240px;
}
.trust-item:hover { background: rgba(255,255,255,.07); }
.trust-icon { font-size: 2.2rem; flex-shrink: 0; }
.trust-item > div { display: flex; flex-direction: column; }
.trust-item strong { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.trust-item span   { color: rgba(255,255,255,.72); font-size: .84rem; }
.trust-sep { width: 1px; background: rgba(255,255,255,.18); self-align: stretch; margin: 16px 0; }

/* ── SERVICES SECTION ── */
.services-section { padding: 100px 0; }
.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.service-card-img {
    height: 180px; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.5) 100%);
}
.service-num {
    position: absolute; top: 16px; right: 16px;
    font-family: var(--font-head); font-size: 2rem; font-weight: 900;
    color: rgba(255,255,255,.25); z-index: 1;
}
/* Card backgrounds — replace URL with real images */
.bg-fumigacion  { background: linear-gradient(135deg, #1A237E, #283593); }
.bg-lavado      { background: linear-gradient(135deg, #1B5E20, #2E7D32); }
.bg-auto        { background: linear-gradient(135deg, #0D47A1, #1565C0); }
.bg-desinfeccion{ background: linear-gradient(135deg, #004D40, #00695C); }
/* When you have real photos:
.bg-fumigacion   { background-image: url('img/fumigacion.jpg'); background-size: cover; background-position: center; }
.bg-lavado       { background-image: url('img/lavado-muebles.jpg'); background-size: cover; }
.bg-auto         { background-image: url('img/vestiduras.jpg'); background-size: cover; }
.bg-desinfeccion { background-image: url('img/sanitizacion.jpg'); background-size: cover; } */

/* Card background emoji fallbacks */
.bg-fumigacion::before  { content: '🦟'; font-size: 5.5rem; opacity: 1; position: relative; z-index: 2; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)); }
.bg-lavado::before      { content: '🛋️'; font-size: 5.5rem; opacity: 1; position: relative; z-index: 2; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)); }
.bg-auto::before        { content: '🚗'; font-size: 5.5rem; opacity: 1; position: relative; z-index: 2; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)); }
.bg-desinfeccion::before{ content: '🧴'; font-size: 5.5rem; opacity: 1; position: relative; z-index: 2; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)); }

.service-body  { padding: 28px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.service-icon-wrap {
    width: 52px; height: 52px; border-radius: var(--radius-hex);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-blue  { background: var(--blue-light);  color: var(--blue); }
.icon-green { background: var(--green-light); color: var(--green); }
.service-body h3 { font-size: 1.25rem; color: var(--gray-900); }
.service-body p  { font-size: .95rem; color: var(--gray-500); line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span {
    font-size: .75rem; font-weight: 600; padding: 3px 10px;
    border-radius: 999px; background: var(--gray-100); color: var(--gray-700);
}
.btn-service {
    margin-top: auto; display: inline-flex; align-items: center;
    font-weight: 700; font-family: var(--font-head); font-size: .9rem;
    color: var(--blue); padding: 10px 0; border-top: 1px solid var(--gray-100);
    transition: var(--transition);
}
.btn-service:hover { color: var(--blue-dark); gap: 4px; }

.section-cta-wrap { text-align: center; margin-top: 56px; }

/* ── INDUSTRIES ── */
.industries-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0D2B52 60%, #0F3311 100%);
    padding: 100px 0;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.industry-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; position: relative;
    transition: var(--transition); cursor: default;
    backdrop-filter: blur(4px);
}
.industry-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.industry-icon { font-size: 2.8rem; margin-bottom: 16px; }
.industry-card h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.industry-card p  { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.industry-card strong { color: var(--green-bright); }
.industry-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--green); color: var(--white);
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .05em; padding: 4px 10px; border-radius: 999px;
}

/* ── B2C SECTION ── */
.b2c-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.b2c-card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); padding: 36px 28px;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 4px solid var(--green);
}
.b2c-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.b2c-icon { font-size: 2.8rem; }
.b2c-card h3 { font-size: 1.25rem; color: var(--gray-900); }
.b2c-card p  { font-size: .95rem; color: var(--gray-500); line-height: 1.65; }
.b2c-list li {
    font-size: .9rem; color: var(--gray-700);
    padding: 4px 0; font-weight: 500;
}
.btn-service-green {
    margin-top: auto; display: inline-flex; align-items: center;
    font-weight: 700; font-family: var(--font-head); font-size: .9rem;
    color: var(--green); padding: 10px 0; border-top: 1px solid var(--gray-100);
    transition: var(--transition);
}
.btn-service-green:hover { color: var(--green-dark); }

/* ── CERTIFICACIONES ── */
.cert-section { padding: 100px 0; background: var(--off-white); }
.cert-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.cert-content { display: flex; flex-direction: column; gap: 20px; }
.cert-content h2 { font-size: clamp(2rem, 3.5vw, 2.6rem); }
.cert-content > p { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; }
.cert-list { display: flex; flex-direction: column; gap: 16px; }
.cert-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 20px; border-radius: var(--radius-md);
    background: var(--white); border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.cert-check {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--green-light); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.cert-item > div { display: flex; flex-direction: column; gap: 3px; }
.cert-item strong { font-size: 1rem; color: var(--gray-900); }
.cert-item span   { font-size: .875rem; color: var(--gray-500); }

.cert-visual { display: flex; flex-direction: column; gap: 24px; align-items: center; width: 100%; }

/* ── CERTIFICATE PREMIUM CARD ── */
.cert-card-premium {
    background: linear-gradient(145deg, #ffffff, #f4f7f9);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    width: 100%;
    max-width: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cert-card-header {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.cert-card-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}
.cert-shield-icon {
    color: var(--green-light);
    background: rgba(255,255,255,0.15);
    padding: 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-card-body {
    padding: 32px 24px;
    text-align: center;
}
.cert-card-body h4 {
    font-size: 1.4rem;
    color: var(--gray-900);
    margin-bottom: 6px;
    font-family: var(--font-head);
    font-weight: 800;
}
.cert-agency {
    font-size: 1.05rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.cert-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 auto;
}
@keyframes pulseWA {
    0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(46, 125, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
    animation: pulseWA 2s infinite;
}
.cert-card-footer {
    background: var(--gray-100);
    padding: 16px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}
.cert-verified-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
}
.cert-note {
    font-size: .95rem; color: var(--gray-500); text-align: center;
    max-width: 340px; line-height: 1.6;
}

/* ── REVIEWS ── */
.reviews-section { padding: 100px 0; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 28px; border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm); position: relative;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card.featured {
    border-color: var(--green); border-top: 4px solid var(--green);
    box-shadow: var(--shadow-green);
}
.review-featured-label {
    position: absolute; top: 24px; right: 24px;
    background: var(--green); color: var(--white);
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; padding: 4px 12px; border-radius: 999px;
}
.review-stars { color: #F59E0B; font-size: 1.2rem; letter-spacing: 2px; }
.review-card p { font-size: .95rem; color: var(--gray-700); line-height: 1.7; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white); font-weight: 800; font-family: var(--font-head);
    font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.review-author strong { display: block; font-size: 1rem; color: var(--gray-900); }
.review-author span   { font-size: .82rem; color: var(--gray-500); }

/* ── BLOG ── */
.blog-section { padding: 100px 0; background: var(--off-white); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
    height: 200px; position: relative;
    display: flex; align-items: flex-start; justify-content: flex-end;
    padding: 16px;
}
.blog-img-1 { background: linear-gradient(135deg, #1A237E, #283593); }
.blog-img-2 { background: linear-gradient(135deg, #1B5E20, #388E3C); }
.blog-img-3 { background: linear-gradient(135deg, #0D47A1, #01579B); }
.blog-img-1::before { content: '🍽️'; font-size: 5rem; position: absolute; bottom: 16px; left: 20px; opacity: .3; }
.blog-img-2::before { content: '🛏️'; font-size: 5rem; position: absolute; bottom: 16px; left: 20px; opacity: .3; }
.blog-img-3::before { content: '🏙️'; font-size: 5rem; position: absolute; bottom: 16px; left: 20px; opacity: .3; }
/* When real images: .blog-img-1 { background-image: url('img/blog-restaurante.jpg'); background-size: cover; } */

.blog-category {
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25); color: var(--white);
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; padding: 5px 14px; border-radius: 999px;
    position: relative; z-index: 1;
}
.blog-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.blog-meta { font-size: .8rem; color: var(--gray-500); font-weight: 500; }
.blog-body h3 { font-size: 1.15rem; color: var(--gray-900); line-height: 1.4; }
.blog-body p  { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }
.blog-link {
    font-weight: 700; font-family: var(--font-head); font-size: .9rem;
    color: var(--green); display: inline-flex; align-items: center;
    padding-top: 8px; border-top: 1px solid var(--gray-100); transition: var(--transition);
}
.blog-link:hover { color: var(--green-dark); }

/* ── URGENCY SECTION ── */
.urgency-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--green) 100%);
    padding: 80px 0;
}
.urgency-content {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.urgency-text { flex: 1; min-width: 280px; }
.urgency-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 12px; }
.urgency-text p  { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.urgency-actions {
    display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.urgency-phone a {
    font-family: var(--font-head); font-size: 2.2rem; font-weight: 900;
    color: var(--white); letter-spacing: .02em;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
    transition: var(--transition);
}
.urgency-phone a:hover { color: #B2FFB7; }

/* ── FOOTER ── */
.footer { background: var(--gray-900); padding: 80px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 64px;
}
.footer-logo   { height: 56px; width: auto; margin-bottom: 20px; }
.footer-tagline { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-contact-link {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.8); font-weight: 600; font-size: .95rem;
    transition: var(--transition);
}
.footer-contact-link:hover { color: var(--green-bright); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.75); transition: var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.footer-links h4 {
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,.55); font-size: .9rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--green-bright); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-legal {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: var(--green-bright); }
.footer-zone { font-size: .82rem; color: rgba(255,255,255,.35); }

/* ── FLOATING WHATSAPP ── */
.floating-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    display: flex; align-items: center; gap: 10px;
    background: var(--whatsapp); color: var(--white);
    border-radius: 999px; padding: 14px 22px 14px 18px;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    animation: pulseWA 2.2s infinite;
    transition: var(--transition);
    font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.floating-wa:hover { background: var(--whatsapp-dark); animation: none; transform: scale(1.05); box-shadow: 0 10px 32px rgba(18,140,126,.5); }
.floating-wa-label { white-space: nowrap; }

/* ── GALLERY ── */
.gallery-section { padding: 100px 0; background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    height: 320px; box-shadow: var(--shadow-sm); cursor: pointer;
    background: var(--gray-100);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-color: #E2E8F0;
    color: #64748B;
    display: flex; align-items: center; justify-content: center;
    text-align: center; font-size: 0.9rem; padding: 20px;
}
.gallery-item img::after {
    content: "(Falta agregar foto aquí)";
    display: block; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 24px;
    opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white); font-weight: 700; font-family: var(--font-head);
    font-size: 1.05rem; transform: translateY(10px); transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); line-height: 1.3;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ── BLOG ARTICLE ── */
.blog-article { padding: 140px 0 80px; max-width: 800px; margin: 0 auto; }
.blog-article h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; color: var(--gray-900); }
.blog-article .blog-meta { font-size: .95rem; color: var(--gray-500); margin-bottom: 32px; border-bottom: 1px solid var(--gray-200); padding-bottom: 16px; display: flex; gap: 16px; align-items: center; }
.blog-article p { font-size: 1.1rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 24px; }
.blog-article h2 { font-size: 1.8rem; margin: 40px 0 16px; color: var(--gray-900); }
.blog-article h3 { font-size: 1.4rem; margin: 24px 0 12px; color: var(--gray-900); }
.blog-article ul { list-style: disc; padding-left: 24px; margin-bottom: 24px; font-size: 1.1rem; color: var(--gray-700); }
.blog-article li { margin-bottom: 8px; }
.blog-article img { border-radius: var(--radius-lg); margin-bottom: 32px; width: 100%; height: auto; object-fit: cover; max-height: 400px; }
.blog-article-cta { background: var(--off-white); border-left: 4px solid var(--green); padding: 32px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; margin-top: 48px; display: flex; flex-direction: column; align-items: flex-start; }
.blog-article-cta h3 { margin-top: 0; margin-bottom: 12px; }
.blog-article-cta p { margin-bottom: 20px; font-size: 1.05rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cert-wrapper { grid-template-columns: 1fr; }
    .cert-visual { order: -1; }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }
    .nav-menu {
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: var(--white); flex-direction: column; align-items: stretch;
        padding: 16px; gap: 4px;
        border-bottom: 2px solid var(--blue);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
    .btn-nav-cta { padding: 14px 16px; border-radius: var(--radius-sm); }
    .nav-toggle { display: flex; }

    .hero-stats { flex-direction: column; gap: 12px; }
    .stat-divider { width: 80%; height: 1px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-hero { width: 100%; max-width: 340px; justify-content: center; }

    .trust-container { flex-direction: column; }
    .trust-sep { width: 80%; height: 1px; margin: 0 auto; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .urgency-content { flex-direction: column; text-align: center; }
    .urgency-actions { align-items: center; }
    .urgency-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

    .floating-wa-label { display: none; }
    .floating-wa { padding: 16px; border-radius: 50%; }

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

@media (max-width: 480px) {
    .industries-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}
