@charset "utf-8";
/* CSS Document */
/* =====================================================
   VARIABLES
===================================================== */

:root {

    --blue-dark: #071b3a;
    --blue: #0b2e63;
    --blue-light: #124a91;

    --red: #e31b23;
    --red-dark: #bd1118;

    --white: #ffffff;
    --light: #f4f7fb;
    --gray: #687386;
    --dark: #172033;

    --border: #e2e7ef;

    --radius: 12px;

    --shadow:
        0 10px 30px rgba(7, 27, 58, .10);

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Montserrat', sans-serif;

    color: var(--dark);

    background: var(--white);

    line-height: 1.6;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


.container {

    width: min(1180px, 92%);

    margin: auto;

}


.section {

    padding: 100px 0;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 24px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .3px;

    transition: .3s;

}


.btn-primary {

    background: var(--red);

    color: white;

}


.btn-primary:hover {

    background: var(--red-dark);

    transform: translateY(-2px);

}


.btn-whatsapp {

    background: #20b958;

    color: white;

}


.btn-whatsapp:hover {

    background: #149d48;

    transform: translateY(-2px);

}


.btn-outline {

    border: 2px solid white;

    color: white;

}


.btn-outline:hover {

    background: white;

    color: var(--blue-dark);

}


.btn-light {

    background: white;

    color: var(--blue-dark);

}


.btn-light:hover {

    transform: translateY(-2px);

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    background: rgba(5, 20, 44, .92);

    border-bottom: 1px solid rgba(255,255,255,.12);

}


.nav {

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo img {

    width: 130px;

}


.menu {

    display: flex;

    align-items: center;

    gap: 30px;

}


.menu a {

    color: white;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    transition: .3s;

}


.menu a:hover {

    color: #ff343b;

}


.btn-header {

    padding: 11px 18px;

}


.menu-toggle {

    display: none;

    background: transparent;

    border: 0;

    color: white;

    font-size: 24px;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 760px;

    position: relative;

    display: flex;

    align-items: center;

    background:

        linear-gradient(
            90deg,
            rgba(4,18,40,.95) 0%,
            rgba(4,18,40,.78) 45%,
            rgba(4,18,40,.25) 100%
        ),

        url("img/hero-avs.jpg")
        center / cover no-repeat;

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}


.hero-text {

    max-width: 680px;

}


.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: white;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 20px;

}


.hero-tag i {

    color: var(--red);

}


.hero h1 {

    color: white;

    font-size: clamp(48px, 7vw, 82px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -3px;

}


.hero h1 span {

    display: block;

    color: var(--red);

}


.hero-description {

    max-width: 530px;

    color: #e3e9f2;

    font-size: 18px;

    margin-top: 25px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

}


.hero-features {

    display: flex;

    gap: 40px;

    margin-top: 65px;

}


.hero-features div {

    display: grid;

    grid-template-columns: 35px 1fr;

    column-gap: 10px;

    color: white;

}


.hero-features i {

    grid-row: span 2;

    font-size: 22px;

    color: var(--red);

}


.hero-features strong {

    font-size: 11px;

}


.hero-features small {

    color: #bdc8d7;

    font-size: 9px;

}


/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {

    background: var(--blue-dark);

    color: white;

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.trust-item {

    padding: 25px 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-right: 1px solid rgba(255,255,255,.12);

}


.trust-item:last-child {

    border: none;

}


.trust-item > i {

    color: var(--red);

    font-size: 25px;

}


.trust-item strong {

    display: block;

    font-size: 12px;

}


.trust-item span {

    display: block;

    font-size: 10px;

    color: #aebbd0;

}


/* =====================================================
   SECTION HEADER
===================================================== */

.section-header {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}


.section-tag {

    color: var(--red);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


.section-header h2,
.corridor-info h2,
.contact-text h2 {

    margin-top: 10px;

    color: var(--blue-dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 900;

}


.section-header h2 span,
.corridor-info h2 span,
.contact-text h2 span {

    color: var(--red);

}


.section-header p {

    margin-top: 18px;

    color: var(--gray);

}


/* =====================================================
   SERVICES
===================================================== */

.services {

    background: var(--light);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;

}


.service-card {

    background: white;

    padding: 28px 22px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: .3s;

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.service-icon {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--blue-dark);

    color: white;

    margin-bottom: 20px;

}


.service-icon i {

    font-size: 18px;

}


.service-card h3 {

    font-size: 15px;

    line-height: 1.3;

    margin-bottom: 10px;

}


.service-card p {

    color: var(--gray);

    font-size: 12px;

}


/* =====================================================
   EMERGENCY
===================================================== */

.emergency {

    background: var(--red);

    color: white;

}


.emergency-content {

    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.emergency span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.emergency h2 {

    margin-top: 5px;

    font-size: 30px;

}


/* =====================================================
   CORRIDOR
===================================================== */

.corridor {

    background: white;

}


.corridor-grid {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 80px;

    align-items: center;

}


.corridor-info > p {

    margin-top: 25px;

    max-width: 650px;

    color: var(--gray);

}


.route {

    margin-top: 40px;

    padding-left: 20px;

}


.route-point {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

}


.dot {

    width: 14px;

    height: 14px;

    background: white;

    border: 3px solid var(--red);

    border-radius: 50%;

    z-index: 2;

}


.route-point.active .dot {

    width: 20px;

    height: 20px;

    background: var(--red);

    border-color: var(--red);

    box-shadow: 0 0 0 6px rgba(227,27,35,.12);

}


.route-point strong {

    font-size: 14px;

}


.route-point small {

    color: var(--red);

    font-size: 10px;

    font-weight: 700;

}


.route-line {

    height: 25px;

    width: 3px;

    margin-left: 5px;

    background: #dbe1e9;

}


.corridor-card {

    padding: 45px 35px;

    background: var(--blue-dark);

    color: white;

    border-radius: 15px;

    box-shadow: var(--shadow);

}


.map-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--red);

    font-size: 25px;

    margin-bottom: 25px;

}


.corridor-card h3 {

    font-size: 22px;

}


.corridor-card p {

    color: #b9c5d7;

    font-size: 13px;

    margin: 15px 0 25px;

}


.coverage {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 30px;

}


.coverage span {

    font-size: 11px;

    font-weight: 700;

}


.coverage i {

    color: var(--red);

    width: 22px;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: var(--light);

}


.about-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}


.about-item {

    display: flex;

    gap: 25px;

    padding: 35px;

    background: white;

    border-radius: 10px;

    border: 1px solid var(--border);

}


.about-number {

    font-size: 32px;

    font-weight: 900;

    color: var(--red);

}


.about-item h3 {

    color: var(--blue-dark);

    font-size: 18px;

}


.about-item p {

    color: var(--gray);

    font-size: 13px;

    margin-top: 8px;

}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    background: white;

}


.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.contact-text > p {

    color: var(--gray);

    max-width: 500px;

    margin: 20px 0 30px;

}


.phone {

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--blue-dark);

    margin-bottom: 20px;

}


.phone i {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    background: var(--blue-dark);

    color: white;

    border-radius: 50%;

}


.phone small {

    display: block;

    color: var(--gray);

    font-size: 9px;

    font-weight: 700;

}


.phone span {

    font-size: 27px;

    font-weight: 900;

}


.contact-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #16a34a;

    font-weight: 800;

    font-size: 13px;

}



.contact-whatsapp i {

    font-size: 23px;

}


.contact-details {

    padding: 35px;

    background: var(--light);

    border-radius: 12px;

}


.contact-detail {

    display: flex;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);

}


.contact-detail:last-child {

    border-bottom: none;

}


.contact-detail > i {

    color: var(--red);

    font-size: 20px;

    width: 25px;

}


.contact-detail strong {

    font-size: 13px;

}


.contact-detail p {

    color: var(--gray);

    font-size: 12px;

    margin-top: 4px;

}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

    padding: 90px 0;

    background:

        linear-gradient(
            rgba(6,24,52,.94),
            rgba(6,24,52,.94)
        ),

        url("img/hero-avs.jpg")
        center / cover;

    color: white;

    text-align: center;

}


.final-cta h2 {

    font-size: clamp(30px, 4vw, 48px);

    font-weight: 900;

}


.final-cta p {

    color: #bec9d9;

    margin: 10px 0 30px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #041327;

    color: white;

}


.footer-grid {

    padding: 65px 0;

    display: grid;

    grid-template-columns: 1.5fr repeat(3, 1fr);

    gap: 50px;

}


.footer-brand img {

    width: 150px;

    margin-bottom: 15px;

}


.footer-brand p {

    color: #8795a9;

    font-size: 12px;

}


.footer h4 {

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 20px;

}


.footer a,
.footer span {

    display: block;

    color: #8997aa;

    font-size: 11px;

    margin-bottom: 10px;

}


.footer a:hover {

    color: white;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 20px 0;

    color: #68768a;

    font-size: 10px;

}


/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 200;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #20b958;

    color: white;

    border-radius: 50%;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

}


.whatsapp-float i {

    font-size: 28px;

}


.whatsapp-float span {

    position: absolute;

    right: 68px;

    background: var(--blue-dark);

    padding: 7px 12px;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    opacity: 0;

    pointer-events: none;

    transition: .3s;

    white-space: nowrap;

}


.whatsapp-float:hover span {

    opacity: 1;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1050px) {

    .menu {

        gap: 15px;

    }


    .menu a {

        font-size: 10px;

    }


    .services-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}


@media(max-width: 800px) {

    .header {

        position: fixed;

    }


    .menu-toggle {

        display: block;

    }


    .btn-header {

        display: none;

    }


    .menu {

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        padding: 25px;

        background: var(--blue-dark);

        display: none;

        flex-direction: column;

        align-items: flex-start;

    }


    .menu.active {

        display: flex;

    }


    .hero {

        min-height: 720px;

    }


    .hero h1 {

        font-size: 55px;

    }


    .hero-features {

        gap: 20px;

    }


    .trust-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .corridor-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .about-grid {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media(max-width: 550px) {

    .section {

        padding: 70px 0;

    }


    .logo img {

        width: 110px;

    }


    .hero {

        min-height: 700px;

    }


    .hero h1 {

        font-size: 44px;

        letter-spacing: -2px;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-features {

        margin-top: 45px;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .trust-grid {

        grid-template-columns: 1fr;

    }


    .trust-item {

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.12);

    }


    .emergency-content {

        padding: 35px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    .corridor-card {

        padding: 30px 25px;

    }


    .phone span {

        font-size: 22px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .whatsapp-float {

        right: 18px;

        bottom: 18px;

    }

}
