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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f9fc;
    color: #222;
}

a {
    text-decoration: none;
}

/* TOPBAR */

.topbar {
    background: #0f0f0f;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.topbar i {
    margin-right: 6px;
}

/* NAVBAR */

.navbar-custom {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 16px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 28px;
    color: #0866FF !important;
}

.navbar-nav .nav-link {
    color: #111;
    font-weight: 600;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 13px;
}

/* BOTONES */

.btn-red {
    background: #0866FF;
    color: #fff;
    border-radius: 3px;
    padding: 12px 24px;
    font-weight: 700;
    transition: all .25s ease;
}

.btn-red:hover {
    background: #1654b8;
    color: #fff;
    transform: translateY(-2px);
}

/* HERO */

.hero {
    position: relative;
    min-height: 90vh;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url('https://induband.cl/assets/img/bg-masthead.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,.25);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    max-width: 720px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* FILTER */

.filter-bar {
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.filter-box {
    background: #0866FF;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.form-select,
.form-control {
    height: 52px;
    border-radius: 6px;
    border: none;
}

/* TITULOS */

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 90px;
    height: 4px;
    background: #0866FF;
    position: absolute;
    left: 0;
    bottom: -15px;
}

/* ESPACIADO */

.py-7 {
    padding: 7rem 0;
}

/* CARDS */

.product-card,
.feature-box,
.news-card {
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    animation: fadeUp .7s ease;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.product-body {
    padding: 25px;
}

/* FEATURES */

.feature-section {
    background: white;
}

.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: .3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(8,102,255,.12);
    color: #0866FF;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;
    border-radius: 50%;
    font-size: 2rem;
}

/* SERVICES */

.services {
    background: #151515;
    color: white;
}

.service-card {
    background: #202020;
    border-radius: 15px;
    padding: 30px;
    transition: .3s ease;
    height: 100%;
}

.service-card:hover {
    background: #0866FF;
}

.service-card i {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* CLIENTS */

.clients {
    background: #fff;
}

.client-box {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    font-weight: 700;
    color: #666;
    border: 1px solid #ececec;
    transition: .3s ease;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}



/* FOOTER */

footer {
    background: #0e0e0e;
    color: white;
    padding-top: 70px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    color: #bbb;
    display: block;
    margin-bottom: 12px;
    transition: .3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 50px;
    padding: 25px 0;
    color: #999;
    font-size: 14px;
}

/* ANIMACIONES */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width: 991px) {

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

    .hero {
        min-height: 70vh;
        text-align: center;
    }
}

@media(max-width: 768px) {

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

    .section-title {
        font-size: 1.6rem;
    }
}

/* =========================================
   DROPDOWN MENU
========================================== */

.dropdown-menu-custom {
    border: none;
    border-radius: 0;
    padding: 0;
    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    margin-top: 18px;
}

.dropdown-menu-custom .dropdown-item {

    padding: 16px 22px;

    font-weight: 500;
    font-size: 14px;

    transition: .25s ease;
}

.dropdown-menu-custom .dropdown-item:hover {

    background: #0866FF;
    color: white;
}

.navbar-nav .nav-link.active {
    color: #0866FF;
}


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

.internal-hero {
    padding: 120px 0;
    color: white;
    position: relative;
}

.internal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ============================= */
/* BREADCRUMB */
/* ============================= */

.breadcrumb-section {
    background: #f4f4f4;
    padding: 18px 0;
    font-size: 14px;
}

.breadcrumb-section a {
    color: #0866FF;
    font-weight: 600;
}

.breadcrumb-section span {
    color: #777;
}

/* ============================= */
/* REC MAIN IMAGE */
/* ============================= */

.recauchaje-main-img {
    max-width: 260px;
}

/* ============================= */
/* REC SYSTEM CARDS */
/* ============================= */

.rec-system-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 280px;
}

.rec-system-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-system-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

.rec-system-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rec-system-content h3 {
    font-size: 2rem;
    font-weight: 800;
}

/* ============================= */
/* PROCESS SECTION */
/* ============================= */

.process-section {
    background: #efefef;
}

.section-title-center {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title-center::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #0866FF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

/* ============================= */
/* PROCESS CARD */
/* ============================= */

.process-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.process-number {
    font-size: 4rem;
    font-weight: 800;
    color: #0866FF;
    min-width: 120px;
}

.process-content {
    flex: 1;
}

.process-content h4 {
    font-weight: 800;
    margin-bottom: 15px;
}

.process-image img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 991px) {

    .process-card {
        flex-direction: column;
        text-align: center;
    }

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

}

/* ============================= */
/* PREVENTA */
/* ============================= */

.service-pre-badge {
    width: 50px;
    height: 50px;
    background: #0866FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-pre-image {
    position: relative;
    min-height: 400px;
}

.truck-img {
    max-width: 420px;
}

.worker-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* ============================= */
/* POSTVENTA */
/* ============================= */

.services-post-section {
    background: #efefef;
}

.post-service-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    gap: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: .3s ease;
}

.post-service-card:hover {
    transform: translateY(-8px);
}

.post-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: rgba(8,102,255,.1);
    color: #0866FF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.post-service-card h4 {
    font-weight: 800;
    margin-bottom: 15px;
}

.post-service-card p {
    margin-bottom: 0;
    color: #666;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 991px) {

    .service-pre-image {
        text-align: center;
        min-height: auto;
    }

    .truck-img {
        max-width: 100%;
    }

    .worker-img {
        position: relative;
        margin-top: 30px;
        width: 220px;
    }

    .post-service-card {
        flex-direction: column;
        text-align: center;
    }

}

/* ============================= */
/* CONTACT STRIP */
/* ============================= */

.contact-strip {
    background: #0866FF;
    padding: 35px 0;
    color: white;
}

.contact-strip h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-strip p {
    margin: 0;
    opacity: .9;
}

.contact-strip .form-control {
    height: 54px;
    border: none;
    border-radius: 6px;
    padding: 0 18px;
}

.btn-contact {
    height: 54px;
    border: none;
    background: #111;
    color: white;
    font-weight: 700;
    border-radius: 6px;
    transition: .3s ease;
}

.btn-contact:hover {
    background: #000;
    color: white;
}

/* ============================= */
/* CONTACTO */
/* ============================= */

.branch-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    height: 100%;
}

.branch-tabs {
    display: flex;
}

.branch-tabs button {
    flex: 1;
    border: none;
    background: #111;
    color: white;
    padding: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s ease;
}

.branch-tabs button.active,
.branch-tabs button:hover {
    background: #0866FF;
}

.branch-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-bottom: 1px solid #eee;
}

.branch-item:last-child {
    border-bottom: none;
}

.branch-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(8,102,255,.1);
    color: #0866FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.branch-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.branch-item p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.map-box {
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.contact-form-section {
    background: #f5f5f5;
}

.contact-girl {
    max-height: 650px;
    object-fit: contain;
}

.contact-form-section .form-control {
    height: 55px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0 18px;
}

.contact-form-section textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.contact-form-section .form-control:focus {
    border-color: #0866FF;
    box-shadow: none;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 991px) {

    .map-box {
        min-height: 350px;
    }

    .contact-girl {
        max-height: 420px;
    }

}

@media(max-width: 768px) {

    .branch-tabs {
        flex-direction: column;
    }

    .branch-item {
        flex-direction: column;
    }

}

/* ============================= */
/* VIDEO */
/* ============================= */

.video-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ============================= */
/* LEY REP */
/* ============================= */

.rep-logo {
    max-width: 320px;
}

.management-accordion {
    border-top: 1px solid #ddd;
}

.accordion-item-custom {
    border-bottom: 1px solid #ddd;
}

.accordion-item-custom button {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
}

/* ============================= */
/* ROLE */
/* ============================= */

.management-role-section {
    background: #f5f5f5;
}

.globe-img {
    max-width: 280px;
}

.management-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    display: flex;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    height: 100%;
}

.management-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(8,102,255,.1);
    color: #0866FF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.management-card h4 {
    font-weight: 800;
    margin-bottom: 12px;
}

/* ============================= */
/* INDIVIDUAL */
/* ============================= */

.individual-box {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 50px;
}

.individual-logo {
    width: 90px;
    height: 90px;
    background: rgba(8,102,255,.1);
    color: #0866FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

/* ============================= */
/* KPI */
/* ============================= */

.kpi-section {
    background: #efefef;
}

.kpi-box {
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url('assets/img/bg-masthead.jpg')
        center/cover no-repeat;

    padding: 80px 50px;
    border-radius: 25px;
    color: white;
}

.kpi-box h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
}

.kpi-card {
    background: rgba(8,102,255,.9);
    border-radius: 25px;
    padding: 60px 30px;
    text-align: center;
}

.kpi-card span {
    font-size: 3rem;
    font-weight: 800;
}

.kpi-arrow {
    font-size: 4rem;
    font-weight: 800;
    color: white;
}

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

.management-cta {
    background: white;
}

.management-cta h3 {
    font-weight: 800;
    margin-bottom: 10px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 991px) {

    .management-card {
        flex-direction: column;
        text-align: center;
    }

    .kpi-box h2 {
        font-size: 2rem;
    }

    .kpi-card span {
        font-size: 2rem;
    }

    .kpi-arrow {
        transform: rotate(90deg);
    }

}

@media(max-width: 768px) {

    .video-box iframe {
        height: 300px;
    }

    .individual-box {
        padding: 35px;
    }

}

/* =========================================================
   PRODUCTO PAGE
========================================================= */

.page-banner{
    height:260px;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?q=80&w=1600&auto=format&fit=crop') center/cover;
    display:flex;
    align-items:center;
    color:#fff;
}

.page-banner h1{
    font-size:3rem;
    font-weight:800;
    text-transform:uppercase;
}

.page-banner p{
    font-size:1.1rem;
    font-weight:600;
}

/* =========================================================
   FILTER BAR
========================================================= */

.filter-bar{
    background:#0866FF;
    padding:25px 0;
}

.filter-bar .form-select{
    height:50px;
    border:none;
    font-size:14px;
    border-radius:6px;
}

.filter-bar .btn{
    height:50px;
    font-weight:700;
    text-transform:uppercase;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-custom{
    font-size:14px;
    margin:30px 0;
}

.breadcrumb-custom a{
    color:#0866FF;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb-custom a:hover{
    text-decoration:underline;
}

/* =========================================================
   PRODUCT WRAPPER
========================================================= */

.product-wrapper{
    background:#fff;
    border-radius:16px;
    padding:50px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.product-brand{
    text-align:right;
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.product-title{
    font-size:3rem;
    font-weight:800;
    margin-bottom:25px;
    color:#111;
}

.product-image{
    width:100%;
    max-width:420px;
    display:block;
    margin:auto;
}

.product-subtitle{
    font-size:1.4rem;
    font-weight:700;
    color:#0866FF;
    margin-bottom:20px;
}

.product-description{
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.application-list{
    padding-left:20px;
    margin-bottom:30px;
}

.application-list li{
    margin-bottom:10px;
    color:#444;
}

.vehicle-icons{
    display:flex;
    gap:18px;
    font-size:2rem;
    color:#777;
    margin-bottom:35px;
}

.btn-product{
    background:#0866FF;
    color:#fff;
    border:none;
    padding:14px 30px;
    font-weight:700;
    border-radius:5px;
    transition:.3s ease;
    text-decoration:none;
    display:inline-block;
}

.btn-product:hover{
    background:#1654b8;
    color:#fff;
}

/* =========================================================
   TABLE
========================================================= */

.table-specs{
    margin-top:50px;
}

.table-specs table{
    margin-bottom:0;
}

.table-specs th{
    background:#f5f5f5;
    font-size:14px;
    font-weight:700;
    vertical-align:middle;
}

.table-specs td{
    font-size:14px;
    color:#555;
    vertical-align:middle;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .product-wrapper{
        padding:30px;
    }

    .product-title{
        font-size:2.2rem;
        margin-top:30px;
    }

    .product-brand{
        text-align:left;
        margin-top:30px;
    }

    .vehicle-icons{
        justify-content:flex-start;
    }

}

@media(max-width:768px){

    .page-banner{
        height:220px;
        text-align:center;
    }

    .page-banner h1{
        font-size:2.2rem;
    }

    .product-wrapper{
        padding:25px;
    }

    .product-title{
        font-size:1.9rem;
    }

    .product-subtitle{
        font-size:1.2rem;
    }

}

.navbar-brand img {
    height: 58px;
    width: auto;
}