/* =============================================
   CORONADO BODEGA - CSS
   ============================================= */

/* VARIABLES */
:root {
    --blue:      #1d4ed8;
    --blue-dark: #1e3a8a;
    --blue-light:#dbeafe;
    --blue-pale: #eff6ff;
    --gray-50:   #f8fafc;
    --gray-100:  #f1f5f9;
    --gray-200:  #e2e8f0;
    --gray-400:  #94a3b8;
    --gray-500:  #64748b;
    --gray-700:  #334155;
    --gray-900:  #0f172a;
    --white:     #ffffff;
    --radius:    10px;
    --radius-lg: 16px;
    --shadow:    0 2px 12px rgba(0,0,0,.08);
    --shadow-md: 0 6px 24px rgba(0,0,0,.11);
    --transition:.22s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SECTIONS */
.section     { padding: 72px 0; }
.section-alt { background: var(--gray-50); }

.section-head {
    text-align: center;
    margin-bottom: 48px;
}
.section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.section-head p {
    font-size: 16px;
    color: var(--gray-500);
}
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* EYEBROW */
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29,78,216,.3);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.65);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--gray-500);
    border-color: var(--gray-200);
}
.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}
.btn-sm {
    font-size: 13px;
    padding: 8px 18px;
    background: var(--blue-pale);
    color: var(--blue);
    border-color: var(--blue-light);
}
.btn-sm:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-full { width: 100%; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.site-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.logo-fallback {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue-dark);
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.site-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.site-nav a:hover { color: var(--blue); background: var(--blue-pale); }
.site-nav a.nav-cta {
    background: var(--blue);
    color: var(--white);
    margin-left: 6px;
}
.site-nav a.nav-cta:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29,78,216,.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}
.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); }

.header-offset { height: 68px; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(15,23,42,.88) 0%,
        rgba(30,58,138,.72) 55%,
        rgba(30,58,138,.35) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 48px 0;
}
.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
}
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 5.5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}
.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero-sm { min-height: 220px; }
.page-hero-bg {
    position: absolute;
    inset: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.88) 0%, rgba(30,58,138,.55) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 36px;
    padding-top: 32px;
}
.page-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-bottom: 10px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}
.product-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gray-50);
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .35s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-body {
    padding: 16px 18px 20px;
}
.product-body h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.4;
}
.product-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

/* =============================================
   ABOUT PREVIEW (HOME)
   ============================================= */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-preview-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--blue-light);
    min-height: 360px;
}
.about-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-preview-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.25;
}
.about-preview-text p {
    color: var(--gray-500);
    margin-bottom: 14px;
    font-size: 15px;
}
.about-preview-text .btn { margin-top: 8px; }

/* =============================================
   NOSOTROS PAGE
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.25;
}
.about-text p {
    color: var(--gray-500);
    margin-bottom: 14px;
    font-size: 15px;
}
.since-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-light);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-top: 20px;
}
.since-year {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}
.since-badge span:last-child {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--blue-light);
    min-height: 400px;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.value-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin: 0 auto 16px;
    transition: var(--transition);
}
.value-card:hover .value-icon {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* MISION VISION */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.mv-card {
    background: var(--blue-dark);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.mv-card p {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

/* =============================================
   PRODUCTOS PAGE
   ============================================= */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.search-bar input {
    flex: 1;
    min-width: 200px;
    padding: 10px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: var(--transition);
}
.search-bar input:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.results-count {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.empty-state, .empty-msg {
    text-align: center;
    padding: 60px 24px;
    color: var(--gray-400);
    font-size: 15px;
}
.empty-state .btn { margin-top: 16px; }
.empty-msg code {
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--blue);
}

/* =============================================
   CONTACTANOS PAGE
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}
.contact-info > p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}
.contact-list svg { color: var(--blue); flex-shrink: 0; }

/* FORM */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}
.form-group label span { color: var(--blue); }
.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: var(--transition);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-success {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 18px;
    color: #166534;
}
.form-success strong { display: block; font-weight: 600; margin-bottom: 2px; }
.form-success p { font-size: 13px; margin: 0; }
.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 12px 16px;
    color: #991b1b;
    font-size: 13px;
    margin-bottom: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--gray-900); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding: 56px 0 40px;
}
.footer-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.65;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 13px;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 6px;
}
.footer-bottom {
    padding: 18px 0;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .products-grid  { grid-template-columns: repeat(2, 1fr); }
    .values-grid    { grid-template-columns: repeat(2, 1fr); }
    .footer-inner   { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-preview,
    .about-grid     { gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 52px 0; }

    /* Header */
    .hamburger { display: flex; }
    .site-nav {
        position: fixed;
        top: 68px; left: 0; right: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        padding: 12px 24px 20px;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform .28s ease, opacity .28s ease;
        pointer-events: none;
    }
    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .site-nav ul { flex-direction: column; gap: 2px; }
    .site-nav a {
        display: block;
        padding: 11px 14px;
        font-size: 15px;
    }
    .site-nav a.nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }

    /* Hero */
    .hero { min-height: 480px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    /* Grids */
    .products-grid  { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-preview,
    .about-grid     { grid-template-columns: 1fr; gap: 32px; }
    .about-preview-img { min-height: 260px; }
    .about-img      { min-height: 260px; }
    .mv-grid        { grid-template-columns: 1fr; }
    .contact-grid   { grid-template-columns: 1fr; gap: 36px; }
    .form-row       { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 20px; }
    .footer-inner   { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .values-grid   { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 30px; }
    .search-bar { flex-direction: column; }
    .search-bar .btn { width: 100%; }
}

/* WP core */
.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute;
    height: 1px; width: 1px;
    overflow: hidden;
}

/* =============================================
   NOSOTROS - MEJORAS DE DISEÑO
   ============================================= */

/* Subtítulo en el page-hero */
.page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    margin-top: 6px;
}

/* Columna derecha de imagen con posición relativa para la tarjeta flotante */
.about-img-col {
    position: relative;
}

/* La imagen ocupa toda la columna */
.about-img-col .about-img {
    min-height: 460px;
}

/* Tarjeta de estadística flotante sobre la imagen */
.about-stat-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 140px;
}

.about-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.about-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    text-align: center;
}

/* Bloques de Misión y Visión dentro de la columna de texto */
.about-mv-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-top: 20px;
}

.about-mv-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-mv-block h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.about-mv-block p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 0;
}

/* CTA final de Nosotros */
.about-cta-section {
    background: var(--blue-dark);
}

.about-cta-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.about-cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.about-cta-inner p {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
    line-height: 1.7;
}

.about-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-blue {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-blue:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

/* Responsive: tarjeta flotante y bloques MV en móvil */
@media (max-width: 768px) {
    .about-img-col .about-img { min-height: 280px; }

    .about-stat-card {
        position: static;
        margin-top: 16px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        min-width: unset;
        width: 100%;
    }

    .about-cta-btns { flex-direction: column; }
    .about-cta-btns .btn,
    .about-cta-btns .btn-outline-blue { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .about-mv-block { flex-direction: column; gap: 10px; }
}

/* =============================================
   CONTACTANOS - TARJETAS
   ============================================= */

.contact-page-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.contact-page-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-page-intro p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.contact-card > p {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 14px;
}

.contact-card-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    word-break: break-word;
    transition: var(--transition);
}

a.contact-card-value:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

@media (max-width: 560px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* =============================================
   FOOTER - ENLACES LEGALES
   ============================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-copy {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-links a {
    font-size: 11px;
    color: var(--gray-400);
    letter-spacing: .02em;
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal-sep {
    font-size: 11px;
    color: rgba(255,255,255,.15);
    user-select: none;
}

/* =============================================
   PÁGINAS LEGALES (Términos / Privacidad)
   ============================================= */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    background: var(--blue-pale);
    border: 1px solid var(--blue-light);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 40px;
}

.legal-intro p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-intro p:last-child { margin-bottom: 0; }

.legal-block {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-block:last-of-type {
    border-bottom: none;
}

.legal-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.legal-block p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-list li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.legal-notice {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-top: 8px;
}

.legal-notice p {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin: 0;
}
