/* =========================================================
   VICMAR SERVICES
   STYLE.CSS
   VERSION FINAL LIMPIA Y RESPONSIVE
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --blue: #0066cc;
    --blue-dark: #0052a3;
    --blue-light: #eaf3fb;

    --dark: #101820;
    --dark-soft: #1c2933;

    --text: #27313a;
    --text-light: #687580;

    --white: #ffffff;
    --light: #f5f7f9;

    --border: #e3e8ec;

    --radius: 8px;

    --shadow:
        0 10px 30px rgba(16, 24, 32, 0.08);

    --transition:
        0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: 0;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.container {
    width: min(1180px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(16, 24, 32, 0.90);

    backdrop-filter:
        blur(10px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.nav-container {
    min-height: 76px;

    display: flex;

    align-items: center;

    gap: 28px;
}


/* =========================================================
   LOGO VICMAR
   ARCHIVO: img/rotulo1.png
========================================================= */

.brand-logo {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    flex-shrink: 0;

    width: 140px;

    height: 76px;
}

.brand-logo-img {
    display: block;

    width: auto;

    height: 27px;

    max-width: 125px;

    object-fit: contain;
}


/* =========================================================
   NAVEGACIÓN
========================================================= */

.nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 27px;

    margin-left: auto;
}

.nav a {
    position: relative;

    display: flex;

    align-items: center;

    height: 76px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color var(--transition);
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 16px;

    width: 0;

    height: 2px;

    background: var(--blue);

    transition:
        width var(--transition);
}

.nav a:hover,
.nav a.active {
    color: #ffffff;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}


/* =========================================================
   BOTÓN WHATSAPP
========================================================= */

.nav-whatsapp {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 36px;

    padding: 0 15px;

    background: var(--blue);

    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        all var(--transition);
}

.nav-whatsapp:hover {
    background: var(--blue-dark);

    transform:
        translateY(-2px);
}


/* =========================================================
   BOTÓN MENÚ MÓVIL
========================================================= */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    margin-left: auto;

    background: transparent;

    color: #ffffff;

    font-size: 27px;

    cursor: pointer;
}


/* =========================================================
   HERO / PORTADA
========================================================= */

.hero {
    position: relative;

    width: 100%;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--dark);
}


/* =========================================================
   IMAGEN DE PORTADA
   ARCHIVO: img/hero-vicmar.png
========================================================= */

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center center;

    z-index: 0;
}


/* =========================================================
   CAPA SOBRE LA IMAGEN
   MUY CLARA
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 1;

    background:
        linear-gradient(
            90deg,

            rgba(10, 18, 25, 0.26) 0%,

            rgba(10, 18, 25, 0.11) 35%,

            rgba(10, 18, 25, 0.03) 65%,

            rgba(10, 18, 25, 0) 100%
        );
}


/* =========================================================
   CONTENIDO HERO
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 720px;

    padding-top: 65px;

    color: #ffffff;

    text-shadow:
        0 2px 8px
        rgba(0, 0, 0, 0.40);

    animation:
        fadeUp 0.8s ease both;
}


/* =========================================================
   ETIQUETA HERO
========================================================= */

.hero-tag {
    display: inline-block;

    margin-bottom: 18px;

    padding-left: 12px;

    border-left:
        3px solid
        var(--blue);

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


/* =========================================================
   TÍTULO HERO
========================================================= */

.hero h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size:
        clamp(40px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 400;
}

.hero h1 strong {
    display: block;

    font-weight: 800;
}


/* =========================================================
   TEXTO HERO
========================================================= */

.hero p {
    max-width: 570px;

    margin: 0 0 30px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   BOTONES HERO
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 22px;

    border:
        1px solid transparent;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all var(--transition);
}

.btn-primary {
    background: var(--blue);

    color: #ffffff;
}

.btn-primary:hover {
    background: var(--blue-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0, 102, 204, 0.25);
}

.btn-outline {
    background:
        rgba(255, 255, 255, 0.06);

    border-color:
        rgba(255, 255, 255, 0.75);

    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;

    color: var(--dark);
}

.btn-white {
    background: #ffffff;

    color: var(--dark);
}

.btn-white:hover {
    transform:
        translateY(-2px);
}


/* =========================================================
   SECCIONES
========================================================= */

.section {
    padding: 90px 0;
}

.section-light {
    background:
        var(--light);
}

.section-header {
    max-width: 700px;

    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.section-header h2,
.two-columns h2,
.contact-info h2 {
    margin: 0 0 16px;

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    padding: 30px;

    min-height: 255px;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    transition:
        all var(--transition);
}

.service-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(0, 102, 204, 0.25);

    box-shadow:
        var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    background:
        var(--blue-light);

    border-radius: 8px;

    font-size: 22px;
}

.service-card h3 {
    margin-bottom: 9px;

    color: var(--dark);

    font-size: 19px;
}

.service-card p {
    margin-bottom: 17px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}

.service-card a {
    color: var(--blue);

    font-size: 12px;

    font-weight: 700;
}

.service-card a:hover {
    color:
        var(--blue-dark);
}


/* =========================================================
   DOS COLUMNAS
========================================================= */

.two-columns {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 75px;

    align-items: center;
}

.two-columns > div:first-child > p {
    max-width: 620px;

    margin-bottom: 23px;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.8;
}

.text-link {
    color: var(--blue);

    font-size: 13px;

    font-weight: 700;
}

.text-link:hover {
    color:
        var(--blue-dark);
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.feature {
    display: grid;

    grid-template-columns:
        48px 1fr;

    gap: 18px;

    padding-bottom: 23px;

    border-bottom:
        1px solid
        var(--border);
}

.feature:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.feature > span {
    color:
        var(--blue);

    font-size: 12px;

    font-weight: 800;
}

.feature h3 {
    margin-bottom: 4px;

    color:
        var(--dark);

    font-size: 17px;
}

.feature p {
    color:
        var(--text-light);

    font-size: 13px;
}


/* =========================================================
   SECCIÓN CORPORATIVA
========================================================= */

.corporate-section {
    position: relative;

    padding: 100px 0;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(16, 24, 32, 0.88),
            rgba(16, 24, 32, 0.62)
        ),
        url("../img/corporativo.jpg")
        center / cover no-repeat;
}

.corporate-content {
    max-width:
        720px;
}

.corporate-content .section-tag {
    color:
        #78baf0;
}

.corporate-content h2 {
    margin-bottom:
        18px;

    font-size:
        clamp(32px, 4vw, 50px);

    line-height:
        1.12;
}

.corporate-content p {
    max-width:
        640px;

    margin-bottom:
        28px;

    color:
        #d7dfe6;

    font-size:
        15px;

    line-height:
        1.8;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding:
        48px 0;

    background:
        var(--blue);

    color:
        #ffffff;
}

.cta-content {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;
}

.cta-content > div > span {
    display:
        block;

    margin-bottom:
        6px;

    color:
        #d8eaff;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1.5px;
}

.cta h2 {
    font-size:
        clamp(27px, 4vw, 40px);

    line-height:
        1.1;
}


/* =========================================================
   HERO DE PÁGINAS INTERNAS
========================================================= */

.page-hero {
    padding:
        160px 0 80px;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #101820,
            #1c2c38
        );
}

.page-hero .section-tag {
    color:
        #72b6ed;
}

.page-hero h1 {
    max-width:
        850px;

    margin-bottom:
        16px;

    font-size:
        clamp(40px, 5vw, 62px);

    line-height:
        1.1;

    letter-spacing:
        -1.5px;
}

.page-hero p {
    max-width:
        680px;

    color:
        #cbd4dc;

    font-size:
        16px;
}


/* =========================================================
   SERVICIOS INTERNOS
========================================================= */

.services-list {
    display:
        flex;

    flex-direction:
        column;
}

.service-large {
    display:
        grid;

    grid-template-columns:
        90px 1fr;

    gap:
        30px;

    padding:
        42px 0;

    border-bottom:
        1px solid
        var(--border);
}

.service-large:first-child {
    padding-top:
        0;
}

.service-large:last-child {
    border-bottom:
        0;
}

.service-large-icon {
    width:
        68px;

    height:
        68px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--blue-light);

    border-radius:
        9px;

    font-size:
        29px;
}

.service-number {
    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        1px;
}

.service-large h2 {
    margin:
        5px 0 10px;

    color:
        var(--dark);

    font-size:
        28px;
}

.service-large p {
    max-width:
        760px;

    color:
        var(--text-light);

    font-size:
        14px;

    line-height:
        1.8;
}


/* =========================================================
   PROYECTOS
========================================================= */

.projects-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        22px;
}

.project-card {
    overflow:
        hidden;

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    transition:
        all var(--transition);
}

.project-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);
}

.project-image {
    height:
        230px;

    overflow:
        hidden;

    background:
        #e8edf1;
}

.project-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.5s ease;
}

.project-card:hover
.project-image img {
    transform:
        scale(1.05);
}

.project-content {
    padding:
        22px;
}

.project-content span {
    color:
        var(--blue);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}

.project-content h3 {
    margin:
        7px 0;

    color:
        var(--dark);

    font-size:
        19px;
}

.project-content p {
    color:
        var(--text-light);

    font-size:
        13px;
}


/* =========================================================
   NOSOTROS
========================================================= */

.about-section {
    align-items:
        start;
}

.about-section p {
    max-width:
        650px;
}

.about-box {
    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        1px;

    background:
        var(--border);

    border:
        1px solid
        var(--border);
}

.about-box div {
    min-height:
        150px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        28px;

    background:
        #ffffff;
}

.about-box strong {
    margin-bottom:
        7px;

    color:
        var(--blue);

    font-size:
        26px;
}

.about-box span {
    color:
        var(--dark);

    font-size:
        13px;

    font-weight:
        700;
}


/* =========================================================
   VALORES
========================================================= */

.values-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        22px;
}

.value-card {
    padding:
        32px;

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);
}

.value-card > span {
    display:
        block;

    margin-bottom:
        28px;

    color:
        var(--blue);

    font-size:
        12px;

    font-weight:
        800;
}

.value-card h3 {
    margin-bottom:
        9px;

    color:
        var(--dark);

    font-size:
        20px;
}

.value-card p {
    color:
        var(--text-light);

    font-size:
        13px;

    line-height:
        1.7;
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-grid {
    display:
        grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap:
        70px;

    align-items:
        start;
}

.contact-info > p {
    max-width:
        480px;

    margin-bottom:
        32px;

    color:
        var(--text-light);

    font-size:
        14px;
}

.contact-item {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        14px;

    margin-bottom:
        20px;
}

.contact-item > span {
    width:
        40px;

    height:
        40px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--blue-light);

    border-radius:
        6px;
}

.contact-item strong {
    display:
        block;

    margin-bottom:
        2px;

    color:
        var(--dark);

    font-size:
        13px;
}

.contact-item p,
.contact-item a {
    color:
        var(--text-light);

    font-size:
        13px;
}

.contact-item a:hover {
    color:
        var(--blue);
}


/* =========================================================
   FORMULARIO
========================================================= */

.contact-form-box {
    padding:
        35px;

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        0 12px 40px
        rgba(16, 24, 32, 0.06);
}

.contact-form {
    display:
        flex;

    flex-direction:
        column;

    gap:
        18px;
}

.form-group {
    display:
        flex;

    flex-direction:
        column;

    gap:
        6px;
}

.form-group label {
    color:
        var(--dark);

    font-size:
        12px;

    font-weight:
        700;
}

.form-group input,
.form-group textarea {
    width:
        100%;

    padding:
        13px 14px;

    border:
        1px solid
        #d7dee4;

    border-radius:
        5px;

    outline:
        none;

    background:
        #ffffff;

    color:
        var(--text);

    font-size:
        13px;

    transition:
        all var(--transition);
}

.form-group textarea {
    min-height:
        135px;

    resize:
        vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color:
        var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(0, 102, 204, 0.08);
}

.form-button {
    width:
        100%;

    border:
        0;
}

.form-button:disabled {
    opacity:
        0.6;

    cursor:
        not-allowed;
}

.form-message {
    min-height:
        20px;

    font-size:
        12px;
}

.form-message.success {
    color:
        #198754;
}

.form-message.error {
    color:
        #dc3545;
}


/* =========================================================
   FOOTER
   SOLO BARRA INFERIOR
========================================================= */

.footer-bottom {
    width:
        100%;

    background:
        var(--dark);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    width:
        min(
            1180px,
            calc(100% - 50px)
        );

    min-height:
        50px;

    margin:
        0 auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;
}

.footer-bottom p {
    margin:
        0;

    color:
        #9ca6af;

    font-size:
        11px;

    line-height:
        1.4;
}


/* =========================================================
   ANIMACIÓN
========================================================= */

@keyframes fadeUp {

    from {
        opacity:
            0;

        transform:
            translateY(20px);
    }

    to {
        opacity:
            1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   SELECCIÓN
========================================================= */

::selection {
    background:
        var(--blue);

    color:
        #ffffff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width:
        8px;
}

::-webkit-scrollbar-track {
    background:
        #eef1f4;
}

::-webkit-scrollbar-thumb {
    background:
        #aab4bd;

    border-radius:
        10px;
}

::-webkit-scrollbar-thumb:hover {
    background:
        var(--blue);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .container {
        width:
            min(
                calc(100% - 40px),
                900px
            );
    }


    /* LOGO */

    .brand-logo {
        width:
            125px;
    }

    .brand-logo-img {
        height:
            26px;

        max-width:
            115px;
    }


    /* MENÚ */

    .nav {
        gap:
            19px;
    }

    .nav-whatsapp {
        display:
            none;
    }


    /* SERVICIOS */

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* PROYECTOS */

    .projects-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* COLUMNAS */

    .two-columns {
        gap:
            45px;
    }


    /* CONTACTO */

    .contact-grid {
        gap:
            45px;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 760px) {

    .container {
        width:
            calc(100% - 34px);
    }


    /* =====================================================
       HEADER
    ===================================================== */

    .header {
        position:
            absolute;
    }

    .nav-container {
        min-height:
            70px;
    }


    /* LOGO */

    .brand-logo {
        width:
            125px;

        height:
            70px;
    }

    .brand-logo-img {
        height:
            25px;

        max-width:
            110px;
    }


    /* MENÚ */

    .menu-toggle {
        display:
            block;
    }


    .nav {
        position:
            absolute;

        top:
            70px;

        left:
            17px;

        right:
            17px;

        display:
            none;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            0;

        margin:
            0;

        padding:
            10px;

        background:
            var(--dark);

        border:
            1px solid
            rgba(255, 255, 255, 0.08);

        border-radius:
            8px;

        box-shadow:
            0 15px 35px
            rgba(0, 0, 0, 0.25);
    }

    .nav.nav-open {
        display:
            flex;
    }

    .nav a {
        height:
            auto;

        padding:
            12px;

        font-size:
            13px;
    }

    .nav a::after {
        display:
            none;
    }

    .nav a:hover,
    .nav a.active {
        background:
            rgba(255, 255, 255, 0.06);

        border-radius:
            5px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height:
            680px;
    }

    .hero-image {
        object-position:
            center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 18, 25, 0.32) 0%,
                rgba(10, 18, 25, 0.11) 55%,
                rgba(10, 18, 25, 0) 100%
            );
    }

    .hero-content {
        padding-top:
            55px;

        max-width:
            100%;
    }

    .hero-tag {
        font-size:
            10px;

        letter-spacing:
            1.3px;
    }

    .hero h1 {
        font-size:
            40px;

        letter-spacing:
            -1.3px;
    }

    .hero p {
        max-width:
            500px;

        font-size:
            15px;
    }

    .hero-buttons {
        flex-direction:
            column;

        align-items:
            stretch;

        max-width:
            320px;
    }

    .hero-buttons .btn {
        width:
            100%;
    }


    /* =====================================================
       SECCIONES
    ===================================================== */

    .section {
        padding:
            70px 0;
    }


    /* =====================================================
       SERVICIOS
    ===================================================== */

    .services-grid {
        grid-template-columns:
            1fr;
    }

    .service-card {
        min-height:
            auto;
    }


    /* =====================================================
       DOS COLUMNAS
    ===================================================== */

    .two-columns {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    /* =====================================================
       CORPORATIVO
    ===================================================== */

    .corporate-section {
        padding:
            75px 0;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .cta {
        padding:
            45px 0;
    }

    .cta-content {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    /* =====================================================
       PÁGINAS INTERNAS
    ===================================================== */

    .page-hero {
        padding:
            135px 0 65px;
    }

    .page-hero h1 {
        font-size:
            40px;
    }


    /* =====================================================
       SERVICIOS INTERNOS
    ===================================================== */

    .service-large {
        grid-template-columns:
            1fr;

        gap:
            18px;

        padding:
            35px 0;
    }

    .service-large-icon {
        width:
            60px;

        height:
            60px;
    }


    /* =====================================================
       PROYECTOS
    ===================================================== */

    .projects-grid {
        grid-template-columns:
            1fr;
    }

    .project-image {
        height:
            220px;
    }


    /* =====================================================
       NOSOTROS
    ===================================================== */

    .about-box {
        grid-template-columns:
            1fr;
    }

    .values-grid {
        grid-template-columns:
            1fr;
    }


    /* =====================================================
       CONTACTO
    ===================================================== */

    .contact-grid {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }

    .contact-form-box {
        padding:
            25px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-bottom-container {
        width:
            calc(100% - 34px);

        min-height:
            48px;
    }

    .footer-bottom p {
        font-size:
            10px;
    }
}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 420px) {

    .container {
        width:
            calc(100% - 28px);
    }


    /* LOGO */

    .brand-logo {
        width:
            115px;
    }

    .brand-logo-img {
        height:
            23px;

        max-width:
            100px;
    }


    /* HERO */

    .hero {
        min-height:
            650px;
    }

    .hero h1 {
        font-size:
            35px;
    }

    .hero p {
        font-size:
            14px;
    }


    /* TÍTULOS */

    .section-header h2,
    .two-columns h2,
    .contact-info h2 {
        font-size:
            30px;
    }


    /* HERO INTERNO */

    .page-hero h1 {
        font-size:
            35px;
    }


    /* FORMULARIO */

    .contact-form-box {
        padding:
            20px;
    }
}
