/* Variables y Reseteo */
:root {
    --primary-color: #2e7d32;      /* Verde Campo */
    --primary-dark: #1b5e20;
    --secondary-color: #f57f17;    /* Naranja Atardecer / Tierra */
    --secondary-hover: #f9a825;
    --bg-light: #f4f6f4;
    --text-dark: #2c3e50;
    --text-light: #607d8b;
    --white: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 300; /* Letra fina por defecto */
}

/* Tipografía Compartida */
h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 300; /* La letra más fina posible */
    line-height: 1.1;
    letter-spacing: -0.02em; /* Estilo arquitectónico */
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: capitalize;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    padding: 20px 0;
}

header.scrolled {
    background-color: var(--nav-bg);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 300; /* Finito como pidió el usuario */
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

header.scrolled .logo {
    color: #111; /* Negro como en el footer */
    font-family: 'Syne', sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    font-size: 1.6rem;
}

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

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 3px;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 42px;
    width: 42px;
    padding: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color); /* Verde como pidió el usuario */
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

header.scrolled .lang-switcher {
    border-left-color: rgba(0,0,0,0.1);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    padding: 5px;
}

header.scrolled .lang-btn {
    color: var(--text-dark);
}

.lang-btn.active {
    opacity: 1;
    font-weight: 500; /* Un poquito más que el resto pero no 700 */
}

.lang-btn img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

header.scrolled .bar {
    background-color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 94, 32, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* Animaciones Iniciales */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sobre Nosotros con Video de Fondo */
#nosotros {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 100px 0;
}

#nosotros .container {
    position: relative;
    z-index: 2;
}

#nosotros .video-bg {
    opacity: 1;
    filter: brightness(1.1) contrast(1.1) saturate(1.1); /* Hacerlo más nítido / vibrante */
}

#nosotros h2 {
    color: var(--white);
}

#nosotros p {
    color: rgba(255, 255, 255, 0.9);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05); /* Casi invisible */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 300; /* Finito */
    color: var(--white);
    margin-bottom: 5px;
}

.stat-card p {
    margin: 0;
    font-size: 1rem;
    font-weight: 300; /* Finito */
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Philosophy Section */
.philosophy {
    background: var(--white);
    padding: 60px 0 80px;
}

.philosophy-headline {
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
}

.philosophy-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-item {
    width: 280px;
    height: 280px;
    min-width: 280px;
    min-height: 280px;
    border-radius: 50% !important;
    background: radial-gradient(circle at 30% 30%, rgba(46, 125, 50, 0.15), rgba(46, 125, 50, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 125, 50, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(46, 125, 50, 0.2), rgba(200, 230, 200, 0.1) 60%, rgba(255, 255, 255, 0.05) 100%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.philosophy-item:hover::before {
    opacity: 1;
}

.philosophy-item:hover {
    transform: scale(1.3);
    box-shadow: 0 25px 70px rgba(46, 125, 50, 0.25);
    border-color: rgba(46, 125, 50, 0.4);
    z-index: 10;
}

.philosophy-content {
    position: relative;
    z-index: 1;
}

.philosophy-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.3;
}

.philosophy-item p {
    font-size: 0.82rem;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
}

/* About Section Slogan */
.about-slogan {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
    letter-spacing: 0.02em;
}

.services-slogan {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    letter-spacing: 0.02em;
}

.services {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('images/feedlot_aerial_v3.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 60px 0 100px 0;
    color: var(--white);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Un poco más oscuro para las tiras */
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 40px; /* Menos espacio abajo del titulo */
}

.section-title h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-title p {
    color: rgba(255, 255, 255, 0.8); /* Subtitulo blanco suave */
    font-size: 1.2rem;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 arriba, 3 abajo */
    gap: 0; /* Sin espacio para que se unan */
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde externo general */
}

.service-card {
    position: relative;
    height: 280px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borde que se une */
    margin: -0.5px; /* Compensa el doble borde para que parezca uno solo */
    /* Forma de "hoja" como en la referencia (esquinas opuestas redondeadas) */
    border-radius: 40px 0 40px 0; 
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.service-card:hover {
    z-index: 5;
    transform: scale(1.05); /* Se agranda un poquito al unir */
    border-color: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-radius: 20px; /* Al hover se vuelve un poco más regular */
}

.card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0; /* Imagen oculta por defecto */
    transition: opacity 0.5s ease;
}

.service-card:hover .card-media {
    opacity: 1; /* Aparece al pasar el mouse */
}

.card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-media img,
.card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-media img,
.service-card:hover .card-media video {
    transform: scale(1.1);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    z-index: 2;
}

.service-card:hover .card-gradient {
    background: rgba(0, 0, 0, 0.1); /* Muy sutil para máxima claridad y color */
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.card-header {
    margin-bottom: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-header {
    transform: translateY(-20px) scale(1.05);
}

.card-header h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 300; /* Letra más finita como pidió el usuario */
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.card-body {
    display: block;
    margin-top: 5px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.service-card:hover .card-body {
    opacity: 1;
    max-height: 200px;
}

.card-body .service-features {
    display: none;
}

.card-body p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.service-features {
    list-style: none;
    margin-top: 10px;
}

.service-features li {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.service-features .check {
    color: var(--white); /* Cambiado de verde a blanco */
    font-weight: 900;
    margin-right: 5px;
}

/* Combined Contact Section (Qué hacemos? + Trabaja con nosotros) */
.combined-contact {
    position: relative;
    padding: 0;
    min-height: 700px;
    display: grid !important; /* Usamos grid para asegurar que no haya huecos */
    grid-template-columns: 1fr 1fr;
    color: var(--white);
    background: #000;
    overflow: hidden;
    gap: 0 !important;
    width: 100%;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 1; /* Máxima nitidez como pidió el usuario */
}

/* Agregamos un overlay global muy suave solo para que el texto blanco se lea */
.combined-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); 
    z-index: 1;
}

.combined-column {
    position: relative;
    z-index: 2; /* Encima del video compartido */
    width: 100%;
    margin: 0 !important;
    padding: 120px 12% 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alineación al tope para que los títulos coincidan */
}

.column-about {
    background: transparent; /* Sin fondo para ver el video nitido */
}

.column-work {
    background: transparent; /* Sin fondo para ver el video nitido */
}
@media (max-width: 992px) {
    .combined-contact {
        grid-template-columns: 1fr;
    }
}

.combined-column h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 300; /* Letra finita como pidió el usuario */
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    font-weight: 300;
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list li::before {
    content: '•';
    color: var(--white);
    font-size: 1.5rem;
}

/* Custom Overlays for each column with different backgrounds if desired */
/* Eliminamos el gradiente anterior de CSS ya que ahora tenemos un video real */

/* Form with Rays (Underlines) */
.work-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.field-group {
    position: relative;
    border-bottom: 1px solid var(--primary-color);
    transition: var(--transition);
}

.field-group:focus-within {
    border-bottom-color: var(--white);
}

.field-group label {
    display: none; /* Identifiable for search/accessibility but image shows placeholders */
}

.field-group input,
.field-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: var(--white);
    font-size: 1.1rem;
    outline: none;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* File Upload Style */
.file-upload {
    margin-top: 10px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: inline-block;
    padding: 8px 25px;
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 10px;
    backdrop-filter: none;
    transition: var(--transition);
}

.file-label:hover {
    background: #f0f0f0;
}

.file-status {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.btn-send {
    margin-top: 30px;
    padding: 12px 60px; /* Un poco más ancho */
    background: var(--white); 
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border-radius: 50px; 
    border: none; 
    cursor: pointer;
    font-size: 1rem; 
    text-transform: none; /* Enviar en lugar de ENVIAR */
    letter-spacing: 0.1em; 
    backdrop-filter: none;
    transition: var(--transition);
    align-self: center;
}

.btn-send:hover {
    background: #f0f0f0;
}

@media (max-width: 992px) {
    .combined-column {
        padding: 60px 5%;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #ffffff 97%, #f1f8e9 100%);
    color: #1a1a1a;
    padding: 120px 0 100px;
    border-top: 1px solid #f0f0f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px;
}

.footer-logo h2 {
    font-family: 'Syne', sans-serif;
    color: #1a1a1a;
    margin: 0;
    font-size: 1.4rem; /* Mas chiquito proporcionalmente */
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1;
}

.footer-logo p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.footer-slogan {
    flex: none;
    text-align: right;
}

.footer-slogan p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem; /* Mas pequeño como pidió el usuario */
    color: #333;
    font-weight: 300;
    line-height: 1.1;
    max-width: 300px;
    margin-left: auto;
}

.footer-bottom {
    margin-top: 5px;
    padding: 0;
    border: none;
    width: auto;
}

.footer-bottom p {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
}

.footer-contact-info {
    margin-top: 15px;
}

.footer-contact-info p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* Scroll Animations Classes */
.scroll-anim {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.scroll-anim.bottom { transform: translateY(50px); }
.scroll-anim.left { transform: translateX(-50px); }
.scroll-anim.right { transform: translateX(50px); }
.scroll-anim.scale { transform: scale(0.9); }

/* Responsive Media Queries */
@media (max-width: 900px) {
    .about-grid, .contact-card {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .philosophy-headline {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .philosophy-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .philosophy-item {
        width: 240px;
        height: 240px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.2rem;
    }

    .stat-card.third {
        grid-column: span 2;
    }
}

.stat-card p.innovacion-only {
    padding: 30px 0; /* To keep it vertically centered in absence of h3 */
}
