/* ====================================================== */
/* RESET */
/* ====================================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ====================================================== */
/* VARIABLES */
/* ====================================================== */

:root{

    --primary-color: #0084c9;
    --primary-dark: #00709e;

    --dark-color: #1F2937;
    --text-color: #4B5563;

    --light-bg: #F5F7FA;
    --white-color: #FFFFFF;

    --border-color: #E5E7EB;

    --font-primary: 'Asap Semi Condensed', sans-serif;
    --font-secondary: 'Calibri', sans-serif;

    --radius-sm: 16px;
    --radius-md: 22px;
    --radius-lg: 30px;

    --shadow-sm:
    0 8px 20px rgba(15,23,42,0.05);

    --shadow-md:
    0 15px 40px rgba(15,23,42,0.08);

    --shadow-lg:
    0 25px 60px rgba(15,23,42,0.12);

    --transition:
    all .35s cubic-bezier(.4,0,.2,1);

}


/* ====================================================== */
/* GLOBAL */
/* ====================================================== */

html{
    scroll-behavior: smooth;
}

body{

    font-family: var(--font-secondary);

    color: var(--text-color);

    background-color: var(--white-color);

    line-height: 1.7;

    letter-spacing: 0.1px;

    overflow-x: hidden;

}


img{
    width: 100%;
    display: block;
}


a{
    text-decoration: none;
}


.container{

    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}


/* ====================================================== */
/* TYPOGRAPHY */
/* ====================================================== */

h1,
h2,
h3,
h4{

    font-family: var(--font-primary);
    color: var(--dark-color);
    letter-spacing: -0.8px;

}


.section-header{

    text-align: center;

    margin-bottom: 80px;

}


.section-subtitle{

    display: inline-block;

    margin-bottom: 20px;

    color: var(--primary-color);

    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .95rem;

}


.section-title{

    font-size: 2.8rem;

    font-weight: 700;

    color: #243B53;

    line-height: 1.15;

    letter-spacing: -1px;

    max-width: 720px;

    margin: 0 auto 18px;

}


/* ====================================================== */
/* BUTTONS */
/* ====================================================== */

.btn-primary,
.btn-secondary,
.btn-nav{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 32px;

    border-radius: var(--radius-sm);

    font-family: var(--font-primary);
    font-weight: 600;

    transition: var(--transition);

}


.btn-primary{

    background:
    linear-gradient(
        135deg,
        #0084c9,
        #00709e
    );

    color: var(--white-color);

    box-shadow:
    0 15px 35px rgba(0,132,201,0.30);

}


.btn-primary:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 45px rgba(0,132,201,0.38);

}


.btn-secondary{

    background: rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(10px);

    color: var(--white-color);

}


.btn-secondary:hover{

    background-color: var(--white-color);
    color: var(--primary-color);

}


/* ====================================================== */
/* HEADER */
/* ====================================================== */

.header{

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 14px 0;

    background: rgba(255,255,255,0.72);

    backdrop-filter: blur(14px);

    border-bottom:
    1px solid rgba(255,255,255,0.18);

    z-index: 1000;

    transition: var(--transition);

    box-shadow:
    0 8px 30px rgba(15,23,42,0.06);

}


.header.scrolled{

    background: rgba(255,255,255,0.92);

    box-shadow:
    0 12px 35px rgba(15,23,42,0.08);

}


.navbar{

    display:flex;
    align-items:center;
    justify-content:space-between;

}


.logo img{
    width: 205px;
}


.btn-nav{

    padding:14px 26px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #0084c9,
        #00709e
    );

    color:#fff;

    font-weight:600;

    box-shadow:
    0 12px 28px rgba(0,132,201,0.22);

}


.btn-nav:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 18px 40px rgba(0,132,201,0.30);

}


/* ====================================================== */
/* HERO */
/* ====================================================== */

.hero{

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background-image:
linear-gradient(
    90deg,
    rgba(0, 28, 55, 0.58) 0%,
    rgba(0, 45, 85, 0.42) 45%,
    rgba(0, 45, 85, 0.18) 100%
),
url('../img/hero/hero-avaluos.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    background-attachment: fixed;

}


.hero::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,255,255,0.08),
        transparent 40%
    );

}


.hero::after{

    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:120px;

    background:
    linear-gradient(
        to bottom,
        rgba(243,249,255,0) 0%,
        rgba(243,249,255,0.55) 100%
    );

}


.hero-container{

    position: relative;
    z-index: 2;

}


.hero-content{
    max-width: 620px;
}


.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    margin-bottom:30px;

    border-radius:50px;

    background: rgba(255,255,255,0.10);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    color:#fff;

    font-size:.95rem;
    font-weight:600;
}


.hero-title{

    margin-bottom: 28px;

    font-size: 4.5rem;
    line-height: 1.05;

    font-weight: 700;
    letter-spacing: -1.5px;

    color: #fff;
}


.hero-description{

    margin-bottom: 42px;

    font-size: 1.15rem;
    line-height: 1.8;

    color: rgba(255,255,255,0.82);

    max-width: 560px;
}


.hero-buttons{

    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}


/* ====================================================== */
/* BENEFITS */
/* ====================================================== */

.benefits{

    position: relative;
    padding: 120px 0;
    background:
    linear-gradient(
        180deg,
        #F8FBFF 0%,
        #EEF4FA 100%
    );
    overflow: hidden;

}


.benefits::before{

    content: '';

    position: absolute;

    top: -120px;
    right: -120px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(0,114,206,0.05);

}


.benefits::after{

    content: '';

    position: absolute;

    bottom: -150px;
    left: -150px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(0,114,206,0.04);

}


.benefits-grid{

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;

}


.benefit-card{

    position: relative;

    z-index: 2;

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(12px);

    padding: 50px 40px;

    border-radius: 30px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.4);

    transition: all 0.4s ease;

    box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08);

}


.benefit-card::before{

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
    linear-gradient(
        90deg,
        #0072CE,
        #3BA4F7
    );

}


.benefit-card:hover{

    transform:
    translateY(-14px)
    scale(1.02);

    box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.14);

}


.benefit-icon{

    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(0, 114, 206, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;

}


.benefit-svg{

    width: 52px;
    height: 52px;
    color: var(--primary-color);

}


.benefit-card h3{

    margin-bottom: 20px;
    font-size: 1.45rem;
    color: #0F172A;
    font-weight: 700;
    line-height: 1.3;

}


.benefit-card p{

    color: #475569;
    line-height: 1.8;
    font-size: 1rem;

}


/* ====================================================== */
/* AVALUOS */
/* ====================================================== */

.avaluos{
    padding: 120px 0;
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}


.avaluos-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.avaluo-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;

    transition: .35s ease;

}


.avaluo-card:hover{

    transform: translateY(-8px);

    box-shadow:
    0 22px 55px rgba(15,23,42,0.10);

}


.avaluo-image{

    height:240px;

    overflow:hidden;

}


.avaluo-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition: 0.5s ease;

}


.avaluo-card:hover .avaluo-image img{
    transform: scale(1.04);
}


.avaluo-content{
    padding: 30px 30px 35px;
}


.avaluo-content h3{

    font-size: 1.45rem;

    margin-bottom: 14px;

    line-height: 1.3;

}


.avaluo-content p{

    color:#64748b;

}


/* ====================================================== */
/* PROCESS */
/* ====================================================== */

.process{
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
    position: relative;
    overflow: hidden;
}


.process::before{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0,132,201,0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}


.process::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0,132,201,0.04);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}


.process-grid{

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    position: relative;

}


.process-card{

    text-align: center;

    padding: 50px 35px;

    border-radius: 24px;

    background: rgba(255,255,255,0.9);

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all .3s ease;

    position: relative;

    z-index: 2;

}


.process-card:hover{

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0,132,201,0.15);

}


.process-number{

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: linear-gradient(135deg, #0084c9, #3ba4f7);

    color: #fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size: 2rem;
    font-weight: 700;

    box-shadow: 0 10px 25px rgba(0,132,201,0.25);

}


.process-card h3{

    margin-bottom: 10px;

    font-size: 1.3rem;

    color: #1f2937;

}


.process-card p{

    color: #6b7280;

    line-height: 1.6;

}


/* ====================================================== */
/* CONTACT */
/* ====================================================== */

.contact{

    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef5fb 100%
    );

    position:relative;
    overflow:hidden;

}


.contact::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background: rgba(0,132,201,0.05);

    top:-180px;
    right:-180px;

}


.contact-container{

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 60px;

    align-items: center;

}


.contact-features{

    margin-top: 30px;

}


.feature-item{

    margin-bottom: 15px;

    font-weight: 600;

}


.contact-form{

    padding: 50px;

    border-radius: 28px;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(0,132,201,0.08);

    box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08);

    position: relative;

    overflow: hidden;

}


.contact-form::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background: linear-gradient(
        90deg,
        #0084c9,
        #3ba4f7
    );

}


.input-group{
    margin-bottom:18px;
}


.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border-radius:16px;

    border:1px solid #dbe4ee;

    background:#f9fbfd;

    font-size:1rem;

    transition: all .25s ease;

    outline:none;

}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#0084c9;

    background:#ffffff;

    box-shadow:
    0 0 0 5px rgba(0,132,201,0.10);

}


.contact-form textarea{

    resize: none;
    height: 130px;

}


.form-button{

    width:100%;

    border:none;

    padding:18px;

    border-radius:18px;

    color:#fff;

    font-size:1rem;
    font-weight:600;

    cursor:pointer;

}


/* ====================================================== */
/* FINAL CTA */
/* ====================================================== */

.final-cta{

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background:
    linear-gradient(
        135deg,
        #006c9f 0%,
        #0084c9 50%,
        #1399e3 100%
    );

    text-align: center;

}


.final-cta::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background: rgba(255,255,255,0.08);

    top:-250px;
    right:-180px;

    filter: blur(10px);

}


.final-cta::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background: rgba(255,255,255,0.05);

    bottom:-220px;
    left:-150px;

}


.final-cta-content{

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: 0 auto;

}


.cta-badge{

    display:inline-block;

    margin-bottom:24px;

    padding:10px 18px;

    border-radius:50px;

    background: rgba(255,255,255,0.12);

    color:#fff;

    font-size:.95rem;
    font-weight:600;

    backdrop-filter: blur(10px);

}


.final-cta h2{

    margin-bottom:24px;

    color:#fff;

    font-size:3.2rem;

    line-height:1.1;

    font-weight:700;

}


.final-cta p{

    margin-bottom:42px;

    color: rgba(255,255,255,0.88);

    font-size:1.1rem;

    line-height:1.8;

}


.btn-final{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:18px;

    background:#fff;

    color:#0084c9;

    font-weight:700;
    font-size:1rem;

    transition: all .3s ease;

    box-shadow:
    0 15px 35px rgba(255,255,255,0.22);

}


.btn-final:hover{

    transform:
    translateY(-4px)
    scale(1.02);

    background:#f3f9ff;

}


/* ====================================================== */
/* WHATSAPP */
/* ====================================================== */

.whatsapp-float{

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 68px;
    height: 68px;

    border-radius: 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #25D366,
        #1ebe5d
    );

    box-shadow:
    0 15px 35px rgba(37, 211, 102, 0.30);

    z-index: 9999;

    transition: all .3s ease;

}


.whatsapp-float:hover{

    transform:
    translateY(-5px)
    scale(1.05);

}


.whatsapp-float img{

    width: 40px;
    height: 40px;
    object-fit: contain;

}


@keyframes whatsappFloat{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-4px);
    }

    100%{
        transform: translateY(0);
    }

}


.whatsapp-float{
    animation: whatsappFloat 3s ease-in-out infinite;
}


/* ====================================================== */
/* RESPONSIVE */
/* ====================================================== */

@media (min-width: 992px){

    .process-grid::before{

        content:"";

        position:absolute;

        top: 45px;
        left: 10%;
        right: 10%;

        height: 2px;

        background:
        linear-gradient(
            90deg,
            transparent,
            #0084c9,
            transparent
        );

        z-index: 1;

    }

}


@media screen and (max-width: 992px){

    .hero-title{
        font-size: 3.5rem;
    }

    .contact-container{
        grid-template-columns: 1fr;
    }

    .process-grid{
        grid-template-columns: 1fr;
    }

}


@media screen and (max-width: 768px){

    .section-header{
        margin-bottom: 55px;
    }

    .section-title{
        font-size: 2rem;
    }

    .hero{

        text-align: center;

        min-height: 90vh;

        background-position: center;

        background-attachment: scroll;

    }

    .hero-content{
        padding-top: 80px;
    }

    .hero-title{
        font-size: 2.6rem;
    }

    .hero-description{
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons{
        justify-content: center;
    }

    .avaluos-grid{
        grid-template-columns: 1fr;
    }

    .contact-form{
        padding: 35px 25px;
    }

    .final-cta h2{
        font-size: 2.2rem;
    }

}


@media screen and (max-width: 576px){

    .container{
        width: 92%;
    }

    .logo img{
        width: 140px;
    }

    .btn-nav{
        display: none;
    }

    .hero-title{
        font-size: 2rem;
    }

    .hero-description{
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary{
        width: 100%;
    }

    .benefit-card,
    .process-card,
    .contact-form{
        padding: 30px 24px;
    }

    .section-title{
        font-size: 1.8rem;
    }

    .final-cta{
        padding: 90px 0;
    }

    .final-cta h2{
        font-size: 1.9rem;
    }

    .whatsapp-float{

        width:60px;
        height:60px;

        right:18px;
        bottom:18px;

    }

    .whatsapp-float img{

        width:30px;
        height:30px;

    }

}