/* =====================================================
   PROTCNO — CONTACTOS
   contactos.css
===================================================== */


/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #07090d;
    color: #f5f7fa;

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* =====================================================
   CORES
===================================================== */

:root {

    --bg: #07090d;

    --bg-secondary: #0b0f15;

    --bg-card: #10151d;

    --blue: #20bfff;

    --blue-dark: #079bd5;

    --white: #ffffff;

    --text: #f5f7fa;

    --text-soft: #a9b2bd;

    --border: rgba(255, 255, 255, 0.09);

    --border-blue: rgba(32, 191, 255, 0.35);

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    width: 100%;

    min-height: 88px;

    padding:
        0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    position: relative;

    z-index: 50;

    background:
        rgba(7, 9, 13, 0.96);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(15px);

}


/* =====================================================
   BRAND
===================================================== */

.brand {

    display: flex;

    flex-direction: column;

    line-height: 1;

    min-width: 180px;

}


.brand-name {

    font-size: 25px;

    font-weight: 900;

    letter-spacing: 4px;

}


.brand-subtitle {

    margin-top: 7px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: var(--blue);

}


/* =====================================================
   NAV
===================================================== */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

}


.main-nav a {

    position: relative;

    color: var(--text-soft);

    font-size: 13px;

    font-weight: 600;

    transition:
        color 0.25s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--blue);

    transition:
        width 0.25s ease;

}


.main-nav a:hover {

    color: var(--white);

}


.main-nav a:hover::after {

    width: 100%;

}


/* =====================================================
   HEADER BUTTON
===================================================== */

.header-button {

    padding:
        13px 21px;

    border:
        1px solid var(--blue);

    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.4px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;

}


.header-button:hover {

    background: var(--blue);

    color: #061019;

    transform:
        translateY(-2px);

}


/* =====================================================
   HERO
===================================================== */

.contact-hero {

    min-height: 470px;

    padding:
        100px 8%;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 40%,
            rgba(32, 191, 255, 0.13),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #07090d 0%,
            #0a1017 100%
        );

}


.contact-hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border:
        1px solid
        rgba(32, 191, 255, 0.12);

    border-radius: 50%;

    right: -180px;

    top: -160px;

}


.contact-hero::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border:
        1px solid
        rgba(32, 191, 255, 0.08);

    border-radius: 50%;

    right: -80px;

    top: -70px;

}


.contact-hero-content {

    max-width: 850px;

    position: relative;

    z-index: 2;

}


.eyebrow {

    display: block;

    margin-bottom: 20px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.contact-hero h1 {

    max-width: 850px;

    font-size:
        clamp(42px, 6vw, 78px);

    line-height: 1.03;

    font-weight: 800;

    letter-spacing: -2px;

}


.contact-hero h1 span {

    display: block;

    color: var(--blue);

}


.contact-hero p {

    max-width: 650px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.8;

}


/* =====================================================
   CONTACT MAIN
===================================================== */

.contact-main {

    padding:
        110px 8%;

    background: var(--bg);

}


.contact-intro {

    max-width: 760px;

    margin-bottom: 65px;

}


.contact-intro h2 {

    font-size:
        clamp(32px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 22px;

}


.contact-intro p {

    max-width: 680px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   CONTACT GRID
===================================================== */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    max-width: 1250px;

}


/* =====================================================
   CONTACT CARD
===================================================== */

.contact-card {

    min-height: 330px;

    padding: 35px;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    background:
        linear-gradient(
            145deg,
            #10151d,
            #0b0f15
        );

    border:
        1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.contact-card::before {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    border-radius: 50%;

    right: -70px;

    bottom: -70px;

    background:
        rgba(32, 191, 255, 0.08);

    transition:
        transform 0.4s ease;

}


.contact-card:hover {

    transform:
        translateY(-7px);

    border-color:
        var(--border-blue);

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.35);

}


.contact-card:hover::before {

    transform:
        scale(1.5);

}


.contact-card-highlight {

    border-color:
        rgba(32, 191, 255, 0.3);

}


/* =====================================================
   CARD NUMBER
===================================================== */

.contact-number {

    position: absolute;

    top: 25px;

    right: 28px;

    font-size: 12px;

    color: var(--blue);

    font-weight: 800;

    letter-spacing: 1px;

}


/* =====================================================
   ICON
===================================================== */

.contact-icon {

    width: 52px;

    height: 52px;

    margin-bottom: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(32, 191, 255, 0.3);

    color: var(--blue);

    font-size: 21px;

    background:
        rgba(32, 191, 255, 0.05);

}


.contact-card h3 {

    margin-bottom: 12px;

    font-size: 23px;

    font-weight: 750;

}


.contact-card p {

    margin-bottom: 25px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;

}


.contact-card > a {

    margin-top: auto;

    color: var(--blue);

    font-size: 13px;

    font-weight: 700;

    word-break: break-word;

    transition:
        color 0.25s ease;

}


.contact-card > a:hover {

    color: var(--white);

}


/* =====================================================
   CONTACT BUTTON
===================================================== */

.contact-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 18px;

    border:
        1px solid
        var(--blue);

    color: var(--white) !important;

    background:
        transparent;

    transition:
        background 0.25s ease,
        color 0.25s ease;

}


.contact-button:hover {

    background:
        var(--blue);

    color:
        #061019 !important;

}


/* =====================================================
   CTA
===================================================== */

.contact-cta {

    margin-top: 80px;

    padding:
        55px 60px;

    max-width: 1250px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    background:

        linear-gradient(
            120deg,
            #0e1821,
            #0a1017
        );

    border:
        1px solid
        var(--border);

    position: relative;

    overflow: hidden;

}


.contact-cta::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    right: -100px;

    top: -130px;

    border:
        1px solid
        rgba(32, 191, 255, 0.12);

}


.contact-cta h2 {

    font-size:
        clamp(28px, 3vw, 42px);

    line-height: 1.1;

    margin-bottom: 12px;

}


.contact-cta p {

    color: var(--text-soft);

    font-size: 14px;

}


.contact-cta .eyebrow {

    margin-bottom: 14px;

}


/* =====================================================
   PRIMARY BUTTON
===================================================== */

.button-primary {

    min-width: 190px;

    padding:
        16px 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    background:
        var(--blue);

    color:
        #061019;

    font-size: 13px;

    font-weight: 800;

    border:
        1px solid var(--blue);

    position: relative;

    z-index: 2;

    transition:
        transform 0.25s ease,
        background 0.25s ease;

}


.button-primary:hover {

    transform:
        translateY(-3px);

    background:
        #55ceff;

}


.button-primary span {

    font-size: 17px;

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    min-height: 130px;

    padding:
        35px 8%;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 30px;

    background:
        #05070a;

    border-top:
        1px solid var(--border);

}


.footer-brand {

    display: flex;

    flex-direction: column;

}


.footer-brand strong {

    font-size: 20px;

    letter-spacing: 3px;

}


.footer-brand small {

    margin-top: 5px;

    color: var(--blue);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}


.footer-links {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

}


.footer-links a {

    color: var(--text-soft);

    font-size: 11px;

    transition:
        color 0.25s ease;

}


.footer-links a:hover {

    color: var(--blue);

}


.footer-copy {

    text-align: right;

    color: #69727d;

    font-size: 11px;

}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 950px) {

    .site-header {

        padding:
            0 4%;

    }


    .main-nav {

        gap: 20px;

    }


    .main-nav a {

        font-size: 12px;

    }


    .contact-main {

        padding:
            80px 5%;

    }


    .contact-hero {

        padding:
            80px 5%;

    }


    .contact-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-cta {

        padding:
            45px;

    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 700px) {

    .site-header {

        min-height: auto;

        padding:
            22px 5%;

        flex-wrap: wrap;

        gap: 20px;

    }


    .brand {

        min-width: auto;

    }


    .main-nav {

        order: 3;

        width: 100%;

        justify-content:
            flex-start;

        overflow-x: auto;

        padding-bottom: 4px;

        gap: 22px;

    }


    .main-nav a {

        white-space: nowrap;

    }


    .header-button {

        padding:
            11px 15px;

        font-size: 11px;

    }


    .contact-hero {

        min-height: 410px;

        padding:
            75px 5%;

    }


    .contact-hero h1 {

        font-size:
            clamp(38px, 11vw, 56px);

        letter-spacing: -1.5px;

    }


    .contact-hero p {

        font-size: 15px;

    }


    .contact-main {

        padding:
            70px 5%;

    }


    .contact-intro {

        margin-bottom: 45px;

    }


    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .contact-card {

        min-height: 300px;

    }


    .contact-cta {

        margin-top: 55px;

        padding:
            35px 25px;

        flex-direction: column;

        align-items: flex-start;

    }


    .button-primary {

        width: 100%;

    }


    .site-footer {

        padding:
            35px 5%;

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .footer-brand {

        align-items: center;

    }


    .footer-links {

        gap: 15px;

    }


    .footer-copy {

        text-align: center;

    }

}


/* =====================================================
   MOBILE PEQUENO
===================================================== */

@media (max-width: 420px) {

    .brand-name {

        font-size: 21px;

    }


    .brand-subtitle {

        font-size: 7px;

        letter-spacing: 2px;

    }


    .header-button {

        font-size: 10px;

        padding:
            10px 12px;

    }


    .contact-card {

        padding: 27px;

    }


    .contact-cta {

        padding:
            30px 22px;

    }

}