/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#111827;
    background:#ffffff;
}

.background-text{
    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    font-size:12rem;
    font-weight:900;

    color:rgba(227,6,19,0.05);

    letter-spacing:15px;

    user-select:none;
    pointer-events:none;

    z-index:-1;

    white-space:nowrap;
}

/* CONTAINER */

section{
    padding:80px 12%;
}

/* TOP BAR */

.top-bar{
    background:#111827;
    color:white;

    padding:12px 12%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:14px;
}

/* NAVBAR */

header{
    position:sticky;
    top:0;
    background:white;
    z-index:1000;
    border-bottom:1px solid #eee;
}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 12%;
}

.logo img{
    width:120px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-size:18px;
    transition:.3s;
}

.nav-links a:hover{
    color:#e30613;
}

.nav-links a.active{

    color:#d50018;

    background:#ffe9ea;

    padding:12px 18px;

    border-radius:10px;

}

.call-btn{

    background:#e30613;
    color:white;

    text-decoration:none;

    padding:14px 25px;

    border-radius:40px;

    font-weight:600;
}

/* HERO */

.hero{

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;
    align-items:center;

    min-height:85vh;
}

.hero-title{

    font-size:70px;
    line-height:1.1;
    font-weight:700;

}

#changing-text{

    color:#e30613;

}

.cursor{

    color:#e30613;

    animation:blink .8s infinite;

}

@keyframes blink{

    50%{

        opacity:0;

    }

}

.badge{

    display:inline-block;

    background:#ffe8ea;
    color:#e30613;

    padding:12px 18px;

    border-radius:50px;

    margin-bottom:30px;

    font-weight:600;
}

.hero h1{

    font-size:75px;
    line-height:1.1;

    margin-bottom:25px;
}

.hero h1 span{
    color:#e30613;
}

.hero p{

    font-size:22px;
    line-height:1.8;
    color:#555;

    margin-bottom:30px;
}

.hero-buttons{

    display:flex;
    gap:20px;

    margin-bottom:30px;
}

.primary-btn{

    background:#e30613;
    color:white;

    text-decoration:none;

    padding:18px 30px;

    border-radius:50px;

    font-weight:600;
}

.secondary-btn{

    border:1px solid #ddd;

    text-decoration:none;
    color:black;

    padding:18px 30px;

    border-radius:50px;
}

.hero-stats{

    display:flex;
    gap:30px;

    color:#555;
}

.hero-image img{

    width:100%;
    border-radius:25px;

    box-shadow:0 20px 60px rgba(227,6,19,.15);
}

/* FEATURES */

.features{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;

    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.feature{

    background:#fff5f5;

    padding:25px;

    border-radius:15px;

    text-align:center;

    font-weight:600;
}

/* SECTION HEADER */

.section-header{

    display:flex;
    justify-content:space-between;
    align-items:end;

    margin-bottom:50px;
}

.section-tag{

    color:#e30613;
    font-weight:700;

    letter-spacing:2px;
}

.section-header h2,
.process h2{

    margin-top:10px;

    font-size:55px;
}

/* SERVICES */

.service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

.service-card{

    border:1px solid #e5e7eb;

    padding:40px;

    border-radius:20px;

    transition:.3s;
}

.service-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card h3{

    font-size:32px;
    margin-bottom:15px;
}

.service-card p{

    font-size:18px;
    color:#555;
    line-height:1.7;
}

/* PROCESS */

.process{

    background:#fafafa;
    text-align:center;
}

.steps{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.step-card{

    background:white;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:40px;
    text-align:left;
}

.step-card h3{

    font-size:60px;
    color:#e30613;

    margin-bottom:15px;
}

.step-card h4{

    font-size:30px;
    margin-bottom:15px;
}

.step-card p{

    color:#555;
    line-height:1.7;
}

/* CTA */

.cta{

    padding-top:40px;
}

.cta-content{

    background:#e30613;

    color:white;

    border-radius:30px;

    padding:40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta-content h2{

    font-size:60px;
    margin-bottom:15px;
}

.cta-content p{

    font-size:22px;
}

.cta-buttons{

    display:flex;
    gap:20px;
}

.white-btn{

    background:white;
    color:#e30613;

    text-decoration:none;

    padding:28px 30px;

    border-radius:50px;
    

    font-weight:700;
}

.outline-btn{

    border:1px solid rgba(255,255,255,.4);

    color:white;
    text-decoration:none;

    padding:18px 35px;

    border-radius:50px;
}

/* FOOTER */

footer{

    background:#f8f8f8;

    margin-top:80px;
}

.footer-grid{

    padding:80px 12%;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:80px;
}

.footer-grid img{

    width:150px;
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid a{

    display:block;

    text-decoration:none;

    color:#444;

    line-height:2;
}

.footer-grid h3{

    margin-bottom:20px;
}

.copyright{

    text-align:center;

    padding:25px;

    border-top:1px solid #ddd;
}

/* FLOATING BUTTONS */

.whatsapp,
.floating-call,.instagram{

    position:fixed;
    right:20px;

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    text-decoration:none;

    font-size:28px;

    z-index:999;
}
.instagram{

    bottom:190px;
    background:#E4405F;
}

.whatsapp{

    bottom:110px;
    background:#25d366;
}

.floating-call{

    bottom:30px;
    background:#e30613;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero,
    .service-grid,
    .steps,
    .features,
    .footer-grid{

        grid-template-columns:1fr;
    }

    .navbar{

        flex-direction:column;
        gap:20px;
    }

    .nav-links{

        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:50px;
    }

    .section-header h2,
    .process h2{
        font-size:40px;
    }

    .cta-content{

        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .cta-content h2{
        font-size:40px;
    }
}
