﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
}

/* HEADER */

.provig-header {
    height: 90px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.provig-logo img {
    height: 62px;
    display: block;
}

.provig-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .provig-menu a {
        text-decoration: none;
        color: #111;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

        .provig-menu a:hover {
            color: #a4002d;
        }

.provig-btn-header {
    background: #a4002d;
    color: white;
    padding: 15px 30px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: bold;
}

    .provig-btn-header:hover {
        background: #850025;
        color: white;
    }

/* HERO */

.home-hero {
    height: 650px;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 120px;
}

.home-hero-text {
    max-width: 470px;
}

    .home-hero-text h1 {
        font-size: 56px;
        line-height: 1.03;
        font-weight: 900;
        margin: 0;
        color: white;
    }

    .home-hero-text span {
        color: #a4002d;
    }

.seo-subtitle {
    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    margin: 18px 0 0;
    text-shadow: 0 2px 6px rgba(0,0,0,.45);
}

.red-line,
.title-line {
    width: 75px;
    height: 4px;
    background: #a4002d;
    margin: 22px 0;
}

.home-hero-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: white;
}

.btn-red {
    background: #a4002d;
    color: white;
    padding: 14px 36px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
}

    .btn-red:hover {
        background: #850025;
        color: white;
    }

/* BENEFICIOS */

.home-values {
    background: #a4002d;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 50px;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 25px;
    min-height: 90px;
    border-right: 1px solid rgba(255,255,255,.25);
}

    .value-item:last-child {
        border-right: none;
    }

.value-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .value-icon img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        display: block;
    }

.value-item h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.value-item p {
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* SERVICIOS */

#servicios {
    scroll-margin-top: 100px;
}

.home-services {
    padding: 60px 120px 70px;
    background: #f8f8f8;
    text-align: center;
}

    .home-services h2 {
        font-size: 31px;
        font-weight: 900;
        margin: 0;
        color: #222;
    }

.title-line {
    margin: 14px auto 35px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: .35s;
    text-align: left;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.18);
    }

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 0%;
    display: block;
}

.service-body {
    position: relative;
    padding: 58px 28px 30px;
    text-align: left;
}

.service-icon {
    position: absolute;
    left: 28px;
    top: -36px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #a4002d;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.20);
    z-index: 2;
}

    .service-icon img {
        width: 60px !important;
        height: 60px !important;
        object-fit: contain !important;
        display: block;
    }

.service-body h3 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 14px;
    color: #222;
    line-height: 1.25;
}

.service-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* CONTACTO BLOQUE DEL HOME */

.home-contact {
    background: linear-gradient(to right, rgba(0,0,0,.88), rgba(0,0,0,.75)), url('../img/contacto-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 35px 150px;
    display: grid;
    grid-template-columns: 1.7fr 2fr auto;
    align-items: center;
    gap: 35px;
}

    .home-contact p {
        margin: 0 0 6px;
        font-size: 16px;
    }

    .home-contact h2 {
        margin: 0;
        font-size: 24px;
        font-weight: 900;
    }

.contact-data {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.btn-contact {
    background: #a4002d;
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 7px;
    font-weight: bold;
}

    .btn-contact:hover {
        background: #850025;
        color: white;
    }

/* WHATSAPP */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: white;
    padding: 15px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    z-index: 2000;
    box-shadow: 0 5px 18px rgba(0,0,0,.30);
}

/* MENÚ RESPONSIVE */

.menu-toggle {
    display: none;
    background: #a4002d;
    color: white;
    border: none;
    font-size: 26px;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    cursor: pointer;
}

.menu-overlay {
    display: none;
}

    .menu-overlay.active {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 2500;
    }

.side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 3000;
    box-shadow: 4px 0 20px rgba(0,0,0,.25);
    padding: 25px;
    transition: left .3s ease;
    overflow-y: auto;
}

    .side-menu.active {
        left: 0;
    }

.close-menu {
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    float: right;
}

.side-logo {
    width: 150px;
    display: block;
    margin: 40px auto 25px;
}

.side-menu a {
    display: block;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.side-btn {
    margin-top: 20px;
    background: #a4002d;
    color: white !important;
    text-align: center;
    border-radius: 8px;
    border-bottom: none !important;
}

/* SEO CONTENT */

.seo-content {
    background: #fff;
    padding: 60px 120px;
    text-align: center;
}

.seo-container {
    max-width: 1200px;
    margin: auto;
}

.seo-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.seo-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* PÁGINA CONTACTO */

.contact-page {
    background: #f7f7f7;
    padding: 70px 120px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.contact-label {
    color: #a4002d;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
}

.contact-line {
    width: 60px;
    height: 4px;
    background: #a4002d;
    margin: 12px 0 25px;
}

.contact-left h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #222;
    margin-bottom: 22px;
}

    .contact-left h1 span {
        color: #a4002d;
    }

.contact-left > p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 520px;
}

.contact-info {
    margin-top: 35px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: #a4002d;
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: #222;
}

.contact-info-item p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #444;
}

.contact-form-card {
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        font-weight: 800;
        margin-bottom: 9px;
        color: #222;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 14px 16px;
        font-size: 14px;
        outline: none;
        background: #fff;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #a4002d;
            box-shadow: 0 0 0 3px rgba(164,0,45,.12);
        }

    .form-group textarea {
        height: 110px;
        resize: none;
    }

.contact-submit {
    width: 100%;
    border: none;
    background: #a4002d;
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

    .contact-submit:hover {
        background: #850025;
    }

/* BENEFICIOS CONTACTO */

.contact-benefits {
    background: white;
    padding: 25px 90px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    border-top: 1px solid #eee;
}

    .contact-benefits div {
        border-right: 1px solid #ddd;
        padding-right: 20px;
    }

        .contact-benefits div:last-child {
            border-right: none;
        }

    .contact-benefits span {
        color: #a4002d;
        font-size: 34px;
        font-weight: 900;
        display: block;
        min-height: 42px;
    }

    .contact-benefits h4 {
        font-size: 14px;
        font-weight: 900;
        margin: 8px 0 5px;
        color: #222;
    }

    .contact-benefits p {
        font-size: 13px;
        margin: 0;
        color: #444;
    }

/* FOOTER */

.provig-footer {
    background: #141b22;
    color: #fff;
    padding: 42px 90px 28px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 55px;
}

    .provig-footer img {
        width: 170px;
        margin-bottom: 18px;
        filter: brightness(0) invert(1);
    }

    .provig-footer h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .provig-footer a,
    .provig-footer p {
        color: #ddd;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
        font-size: 15px;
    }

        .provig-footer a:hover {
            color: #fff;
        }

.footer-copy {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}
/* TABLET */

@media(max-width: 1200px) {
    .provig-header {
        padding: 0 35px;
    }

    .provig-logo img {
        height: 52px;
    }

    .provig-menu {
        gap: 16px;
    }

        .provig-menu a {
            font-size: 13px;
        }

    .provig-btn-header {
        padding: 13px 22px;
        font-size: 13px;
    }

    .home-hero {
        height: 600px;
        padding-left: 70px;
        background-position: center top;
    }

    .home-hero-text h1 {
        font-size: 46px;
    }

    .home-services {
        padding-left: 50px;
        padding-right: 50px;
    }

    .home-values {
        padding: 25px 35px;
    }

    .value-item {
        padding: 0 18px;
    }

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-page {
        padding: 60px 50px;
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
    }

    .contact-benefits {
        padding: 25px 50px;
    }
}

.hero-soluciones {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.hero-banner {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

.beneficios-solucion {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 35px;
    align-items: center;
    padding: 22px 8%;
    background: #fff;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .beneficio img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }

    .beneficio h4 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .beneficio p {
        margin: 0;
        color: #555;
        font-size: 15px;
        line-height: 1.5;
    }

.cta-sentryra {
    background: #990020;
    color: #fff;
    padding: 28px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .cta-left img {
        width: 100px;
    }

    .cta-left h2 {
        font-size: 30px;
        line-height: 1.2;
        margin: 0;
        font-weight: 300;
    }

    .cta-left strong {
        font-weight: 800;
    }

.cta-right {
    max-width: 520px;
    text-align: left;
}

    .cta-right p {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

.btn-demo {
    display: inline-block;
    background: #fff;
    color: #990020;
    text-decoration: none;
    padding: 14px 42px;
    border-radius: 8px;
    font-weight: 700;
}

    .btn-demo:hover {
        background: #f4f4f4;
    }

@media(max-width:991px) {

    .beneficios-solucion {
        grid-template-columns: 1fr 1fr;
    }

    .cta-sentryra {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-right {
        text-align: center;
    }
}

@media(max-width:768px) {

    .beneficios-solucion {
        grid-template-columns: 1fr;
    }

    .hero-soluciones {
        margin: 0;
    }

    .hero-banner {
        width: 100%;
        height: auto;
    }
}










/* MOBILE */

@media(max-width: 900px) {
    .provig-header {
        height: 80px;
        padding: 0 15px;
        flex-direction: row;
    }

    .provig-logo img {
        height: 50px;
    }

    .menu-toggle {
        display: block;
    }

    .provig-menu,
    .provig-btn-header {
        display: none;
    }

    .home-hero {
        background-position: 62% top;
        background-size: cover;
        min-height: 560px;
        height: auto;
        padding: 0;
        display: flex;
        align-items: flex-end;
    }

    .home-hero-text {
        width: 100%;
        max-width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.65), rgba(0,0,0,.20));
        padding: 160px 22px 30px;
    }

        .home-hero-text h1 {
            font-size: 38px;
            line-height: 1.05;
            color: #fff;
        }

    .seo-subtitle {
        color: #fff !important;
        font-size: 22px;
        line-height: 1.4;
        margin: 15px 0;
    }

    .home-hero-text p {
        color: #fff;
        font-size: 15px;
    }

    .btn-red {
        width: auto;
        min-width: 240px;
        text-align: center;
    }

    .home-values {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.25);
        padding: 15px 0;
        min-height: auto;
    }

        .value-item:last-child {
            border-bottom: none;
        }

    .value-icon {
        width: 45px;
        height: 45px;
    }

        .value-icon img {
            width: 45px;
            height: 45px;
        }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .home-services {
        padding: 40px 20px;
    }

    .service-img {
        height: 230px;
    }

    .home-contact {
        grid-template-columns: 1fr;
        padding: 35px 20px;
    }

    .contact-data {
        flex-direction: column;
        gap: 10px;
    }

    .seo-content {
        padding: 40px 20px;
    }

        .seo-content h2 {
            font-size: 26px;
        }

        .seo-content p {
            font-size: 15px;
        }

    .contact-page {
        grid-template-columns: 1fr;
        padding: 45px 22px;
        gap: 35px;
    }

    .contact-left h1 {
        font-size: 38px;
    }

    .contact-left > p {
        font-size: 15px;
    }

    .contact-info-item h4 {
        font-size: 21px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 28px;
        border-radius: 18px;
    }

    .contact-benefits {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }

        .contact-benefits div {
            border-right: none;
            border-bottom: 1px solid #eee;
            padding-bottom: 18px;
        }

            .contact-benefits div:last-child {
                border-bottom: none;
            }

    .provig-footer {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }

    .whatsapp-btn {
        right: 16px;
        bottom: 18px;
        padding: 14px 20px;
    }
}

.clientes-provig {
    background: #f5f5f5;
    scroll-margin-top: 100px;
}

.clientes-hero {
    min-height: 360px;
    background: linear-gradient(to right, rgba(5,10,18,.95), rgba(5,10,18,.55)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 70px 90px;
}

.clientes-hero-text {
    max-width: 640px;
    color: #fff;
}

    .clientes-hero-text span {
        color: #d6002f;
        font-weight: 900;
        font-size: 20px;
    }

    .clientes-hero-text h2 {
        font-size: 52px;
        line-height: 1.05;
        font-weight: 900;
        margin: 15px 0;
    }

        .clientes-hero-text h2 strong {
            color: #d6002f;
            display: block;
        }

    .clientes-hero-text p {
        font-size: 21px;
        line-height: 1.5;
    }

.clientes-box {
    width: 86%;
    margin: -55px auto 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.cliente-item {
    padding: 35px 25px;
    text-align: center;
    border-right: 1px solid #ddd;
}

    .cliente-item:last-child {
        border-right: none;
    }

    .cliente-item img {
        width: 100%;
        max-width: 220px;
        height: 110px;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0 auto 25px;
    }

    .cliente-item h4 {
        font-size: 14px;
        font-weight: 900;
        color: #111;
        margin-bottom: 15px;
    }

        .cliente-item h4::after {
            content: "";
            width: 45px;
            height: 3px;
            background: #d6002f;
            display: block;
            margin: 13px auto 0;
        }

    .cliente-item p {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

.clientes-stats {
    width: 92%;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px;
    border-right: 1px solid #ececec;
}

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item i {
        color: #c20f2f;
        font-size: 58px;
        min-width: 60px;
    }

    .stat-item span {
        display: block;
        font-size: 36px;
        color: #111;
        font-weight: 900;
        line-height: 1;
    }

    .stat-item h4 {
        font-size: 15px;
        margin: 6px 0;
        font-weight: 800;
        color: #222;
    }

    .stat-item p {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }

@media(max-width:1200px) {

    .clientes-stats {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .clientes-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

        .stat-item:last-child {
            border-bottom: none;
        }
}

@media(max-width: 900px) {
    .clientes-hero {
        padding: 55px 25px;
        min-height: 330px;
    }

    .clientes-hero-text h2 {
        font-size: 38px;
    }

    .clientes-hero-text p {
        font-size: 17px;
    }

    .clientes-box {
        width: 92%;
        grid-template-columns: 1fr;
        margin-top: -35px;
    }

    .cliente-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

        .cliente-item:last-child {
            border-bottom: none;
        }

    .clientes-stats {
        width: 92%;
        grid-template-columns: 1fr;
    }

        .clientes-stats div {
            border-right: none;
            border-bottom: 1px solid #ddd;
            padding-bottom: 18px;
        }

            .clientes-stats div:last-child {
                border-bottom: none;
            }
}

.clientes-stats {
    width: 90%;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
    overflow: hidden;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-right: 1px solid #ececec;
    transition: .35s;
}

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item:hover {
        background: #fafafa;
    }

    .stat-item i {
        color: #b0002d;
        font-size: 42px;
        min-width: 45px;
        text-align: center;
    }

    .stat-item span {
        display: block;
        font-size: 26px;
        color: #b0002d;
        font-weight: 900;
        line-height: 1;
    }

    .stat-item h4 {
        margin: 4px 0;
        font-size: 12px;
        font-weight: 800;
    }

    .stat-item p {
        margin: 0;
        font-size: 11px;
        color: #666;
        line-height: 1.4;
    }

@media(max-width:1200px) {

    .clientes-stats {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .clientes-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

        .stat-item:last-child {
            border-bottom: none;
        }
}
/* ================= NOSOTROS ================= */

.nosotros-hero {
    min-height: 560px;
    background: linear-gradient(to right, rgba(5,10,18,.92), rgba(5,10,18,.45)), url('../img/nosotros-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 70px 90px;
}

.nosotros-hero-content {
    width: 60%;
    max-width: 950px;
    color: #fff;
}

    .nosotros-hero-content span {
        color: #d6002f;
        font-size: 26px;
        font-weight: 900;
    }

    .nosotros-hero-content h1 {
        font-size: 64px;
        line-height: 1.08;
        font-weight: 900;
        margin: 12px 0 22px;
    }

        .nosotros-hero-content h1 strong {
            color: #d6002f;
        }

    .nosotros-hero-content p {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

.nosotros-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-nosotros-red,
.btn-nosotros-outline {
    padding: 15px 28px;
    border-radius: 6px;
    font-weight: 900;
    text-decoration: none;
    font-size: 14px;
}

.btn-nosotros-red {
    background: #d6002f;
    color: #fff;
}

.btn-nosotros-outline {
    color: #fff;
    border: 1px solid #fff;
}

.quienes-somos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    padding: 45px 9%;
    align-items: center;
    background: #fff;
}

    .quienes-somos img {
        width: 100%;
        border-radius: 8px;
        display: block;
    }

.quienes-text h2,
.ubicacion-info h2 {
    font-size: 32px;
    font-weight: 900;
}

.section-line {
    width: 55px;
    height: 3px;
    background: #d6002f;
    margin: 12px 0 22px;
}

    .section-line.center {
        margin: 12px auto 30px;
    }

.quienes-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 18px;
}

.mision-vision {
    padding: 45px 9%;
    background: #f7f7f7;
    text-align: center;
}

    .mision-vision h2,
    .valores-provig h2 {
        font-size: 30px;
        font-weight: 900;
    }

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1050px;
    margin: auto;
}

.mv-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 25px;
    align-items: center;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.mv-icon {
    width: 85px;
    height: 85px;
    background: #d6002f;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 42px;
    flex-shrink: 0;
}

.mv-card h3 {
    color: #d6002f;
    font-weight: 900;
    margin-bottom: 8px;
}

.mv-card p {
    margin: 0;
    line-height: 1.6;
}

.valores-provig {
    padding: 45px 7%;
    background: #fff;
    text-align: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.valor-item {
    padding: 28px 22px;
    border-right: 1px solid #ddd;
}

    .valor-item:last-child {
        border-right: none;
    }

.valor-icon {
    font-size: 48px;
    color: #d6002f;
    margin-bottom: 12px;
}

.valor-item h4 {
    font-weight: 900;
    margin-bottom: 10px;
}

.valor-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ubicacion-provig {
    display: grid;
    grid-template-columns: 1fr 1.2fr .8fr;
    background: #f5f5f5;
    align-items: stretch;
}

.ubicacion-info {
    background: #111820;
    color: #fff;
    padding: 45px 40px;
}

    .ubicacion-info p {
        line-height: 1.7;
        margin-bottom: 25px;
    }

.ubicacion-puntos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    font-size: 14px;
}

.mapa-box iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.ubicacion-card {
    background: #fff;
    margin: 40px;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    align-self: center;
}

.map-pin {
    font-size: 50px;
    color: #d6002f;
}

.ubicacion-card h3 {
    font-weight: 900;
    margin: 10px 0;
}

.ubicacion-card h4 {
    color: #d6002f;
    font-weight: 900;
    margin: 18px 0 10px;
}

.ubicacion-card p {
    margin: 8px 0;
}

.nosotros-cta {
    background: #b0002d;
    color: #fff;
    padding: 35px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

    .nosotros-cta h2 {
        font-size: 28px;
        font-weight: 900;
        margin: 0 0 5px;
    }

    .nosotros-cta p {
        margin: 0;
        font-size: 17px;
    }

    .nosotros-cta a {
        background: #fff;
        color: #b0002d;
        text-decoration: none;
        padding: 16px 45px;
        border-radius: 7px;
        font-weight: 900;
        white-space: nowrap;
    }

@media(max-width: 1000px) {
    .quienes-somos,
    .mv-grid,
    .valores-grid,
    .ubicacion-provig {
        grid-template-columns: 1fr;
    }

    .valor-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .ubicacion-card {
        margin: 25px;
    }

    .nosotros-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 768px) {
    .nosotros-hero {
        padding: 45px 25px;
        min-height: 520px;
    }

    .nosotros-hero-content h1 {
        font-size: 38px;
    }

    .quienes-somos,
    .mision-vision,
    .valores-provig {
        padding: 35px 25px;
    }

    .mv-card {
        flex-direction: column;
        text-align: center;
    }

    .ubicacion-puntos {
        grid-template-columns: 1fr;
    }
}
