html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #f5f5f5;
    color: #111;
    overflow-x: hidden;
}

a:hover,
a:focus,
a:active,
.form-control:focus,
.form-control:active,
.form-control:hover,
button:hover,
button:active,
button:focus,
.btn:hover,
.btn:active,
.btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.header {
    padding: 14px 0;
    background: rgba(5, 5, 5, .88);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.nav-link {
    color: #fff;
    font-weight: 600;
    margin-left: 18px;
}

.nav-link:hover {
    color: #ee1d23;
}

.navbar-toggler {
    border: none;
    color: #fff;
}

.hero-section {
    position: relative;
    background: url('../img/hero.jpg') center center/cover no-repeat;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, .48), rgba(238, 29, 35, .45));
}

.eyebrow,
.section-tag {
    display: inline-block;
    font-size: .85rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: #ee1d23;
    margin-bottom: 18px;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d8d8d8;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn-main {
    background: #ee1d23;
    border: none;
    padding: 15px 34px;
    font-weight: 700;
    border-radius: 100px;
    color: white;
}

.btn-main:hover,
.btn-main:active,
.btn-main:focus {
    background: #fff;
    color: #111;
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 15px 34px;
    border-radius: 100px;
    font-weight: 700;
    color: #fff;
}

.btn-outline-custom:hover,
.btn-outline-custom:active,
.btn-outline-custom:focus {
    border: 1px solid rgba(255, 255, 255, 1);
    color: white;
}

.hero-card {
    background: #ee1d23;
    padding: 40px;
    border-radius: 50px 0px 50px 0px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    color: white;
}

.stat-item {
    padding: 22px 0;
    border-bottom: 1px solid #ececec;
}

.stat-item:last-child {
    border: none;
}

.stat-item strong {
    display: block;
    font-size: 2.4rem;
    font-family: 'Montserrat', sans-serif;
}

.section {
    padding: 110px 0;
}

.section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.feature-box {
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
}

.feature-box i {
    font-size: 1.4rem;
    color: #ee1d23;
}

.dark-section {
    background: #0d0d0d;
    color: #fff;
}

.section-heading {
    margin-bottom: 60px;
}

.service-card {
    background: #171717;
    padding: 40px;
    border-radius: 50px 0px 50px 0px;
    height: 100%;
    transition: .3s ease;
    border: 1px solid black;
}

.service-card:hover {
    transform: translateY(-6px);
    border: 1px solid #ee1d23;
}

.service-card i {
    font-size: 2.5rem;
    color: #ee1d23;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.problem-box {
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    height: 100%;
}

.problem-box ul {
    padding-left: 20px;
    margin: 0;
}

.problem-box li {
    margin-bottom: 18px;
    line-height: 1.7;
}

.cta-section {
    padding: 120px 0;
    text-align: center;
    color: #fff;
    position: relative;
    background: url(../img/parallax.jpg) center center / cover no-repeat;
    background-attachment: fixed;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-section p {
    max-width: 800px;
    margin: auto auto 34px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-section {
    background: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    font-size: 1rem;
}

.contact-item i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ee1d23;
    border-radius: 100px;
    color: #fff;
}

.contact-form {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 28px;
}

.form-control {
    height: 58px;
    border: none;
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

textarea.form-control {
    height: auto;
}

.footer {
    padding: 30px 0;
    background: #0b0b0b;
    color: #fff;
    text-align: center;
}


.problem-box li::marker {
    color: #ee1d23;
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.3s;
    animation: pulse 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #1ebd5a;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}


/**********************
Footer
***********************/


#footer {
    background: #1e1e1e;
    color: #fff;
    padding: 40px 0 0 0;
}

#footer .container-fluid {
    padding-left: 4%;
    padding-right: 4%;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 277px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: .8;
}

.footer-title {
    position: relative;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.footer-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 18px;
    border-left: 1px solid #fff;
}

.footer-contacto {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacto li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contacto i {
    width: 20px;
    text-align: center;
}

.footer-redes {
    display: flex;
    gap: 12px;
}

.footer-redes a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.footer-redes a:hover {
    transform: translateY(-4px);
}


.copyright {
    width: 100%;
    background: #000;
    padding: 12px 0;
    margin-top: 20px;
}

.copyright p {
    font-size: 11px;
    color: #fff;
}

.copyright a {
    color: #fff;
    text-decoration: none;
}


@media(max-width:991px) {

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .section h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }

    .hero-card {
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .cta-section,
    .hero-section {
        background-attachment: scroll;
    }

    .hero-section {
        height: 188vh;
        padding-top: 140px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-title {
        padding-left: 0;
    }

    .footer-title:before {
        display: none;
    }

    .footer-contacto li {
        justify-content: center;
    }

    .footer-redes {
        justify-content: center;
    }

    .contact-form {
        padding: 10px
    }

}

@media(max-width:575px) {

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .btn-main,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

}