       :root {
            --gold: #c9a03d;
            --dark: #0b0b0b;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #111;
            color: #fff;
        }

        .navbar {
            background: rgba(0, 0, 0, .95);
            backdrop-filter: blur(10px);
        }

        .btn-gold {
            background: var(--gold);
            color: #000;
            font-weight: 600;
        }

        .btn-gold:hover {
            background: #d8af4b;
            color: #000;
        }

        .hero {
            min-height: 450px;
            display: flex;
            align-items: center;
            background:
                linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)),
                url('images/hero.jpg');
            background-size: cover;
            background-position: center;
        }

        .section-title {
            font-weight: 800;
            font-size: 3rem;
        }

        .gold {
            color: var(--gold);
        }

        .service-card {
            background: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 20px;
            padding: 35px;
            height: 100%;
            transition: .3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(201, 160, 61, .15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--gold);
            font-size: 2rem;
        }

        .coverage-card {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
        }

        .review-card {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 30px;
        }

        .info-box {
            background: #181818;
            border-left: 5px solid var(--gold);
            border-radius: 15px;
            padding: 30px;
        }

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(201,160,61,.3);
    color:#c9a03d;
    border-radius:50px;
    font-size:.85rem;
    letter-spacing:2px;
    margin-bottom:20px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:linear-gradient(180deg,#111,#181818);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px;
    transition:.35s;
    position:relative;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#c9a03d;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.service-tag{
    display:inline-block;
    padding:6px 12px;
    background:rgba(201,160,61,.12);
    color:#c9a03d;
    border-radius:30px;
    font-size:.75rem;
    font-weight:600;
    margin-bottom:15px;
}

.service-features{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.service-features li{
    margin-bottom:10px;
    color:#bbb;
}

.service-features i{
    color:#c9a03d;
    margin-right:10px;
}

.btn-service{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:14px;
    border-radius:14px;
    background:#c9a03d;
    color:#000;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-service:hover{
    background:#d6ae4c;
    color:#000;
}


/* ==========================
   COBERTURA
========================== */

#cobertura{
    max-width:1400px;
    margin:0 auto;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(201,160,61,.08);
    border:1px solid rgba(201,160,61,.15);
    color:#c9a03d;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
}

.section-title{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
}

.gold{
    color:#c9a03d;
}

.section-subtitle{
    color:#a8a8a8;
    font-size:1.1rem;
    line-height:1.8;
}

/* GRID */

.cobertura-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:60px;
}

/* CARD */

.cobertura-card{
    background:linear-gradient(
        180deg,
        rgba(20,20,20,.95),
        rgba(12,12,12,.95)
    );

    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    transition:.35s ease;

    position:relative;

    overflow:hidden;
}

.cobertura-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:#c9a03d;

    transform:scaleX(0);

    transition:.35s;
}

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

    border-color:rgba(201,160,61,.35);

    box-shadow:
        0 20px 40px rgba(0,0,0,.35);
}

.cobertura-card:hover::before{
    transform:scaleX(1);
}

.cobertura-card i{
    font-size:2.3rem;
    color:#c9a03d;
    margin-bottom:18px;
}

.cobertura-card h3{
    font-size:1.1rem;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
}

.cobertura-card span{
    color:#9ea3a8;
    font-size:.9rem;
}

/* NOTA INFERIOR */

.coverage-note{
    margin-top:50px;

    padding:28px 30px;

    border-radius:22px;

    background:rgba(201,160,61,.06);

    border:1px solid rgba(201,160,61,.12);

    display:flex;
    gap:20px;
    align-items:flex-start;
}

.coverage-note-icon{
    min-width:55px;
    width:55px;
    height:55px;

    border-radius:50%;

    background:rgba(201,160,61,.12);

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

.coverage-note-icon i{
    color:#c9a03d;
    font-size:1.3rem;
}

.coverage-note strong{
    display:block;
    color:#fff;
    font-size:1.1rem;
    margin-bottom:8px;
}

.coverage-note p{
    margin:0;
    color:#b9b9b9;
    line-height:1.8;
}

/* TABLET */

@media (max-width:991px){

    .cobertura-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

}

/* MOVIL */

@media (max-width:576px){

    .cobertura-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .coverage-note{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

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

    .section-subtitle{
        font-size:1rem;
    }

}
.coverage-status{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:6px 14px;

    background:rgba(40,167,69,.12);
    border:1px solid rgba(40,167,69,.25);

    border-radius:50px;

    color:#66d17a;
    font-size:.85rem;
    font-weight:600;
}

.coverage-status i{
    color:#66d17a;
    font-size:.9rem;
    margin:0;
}

.footer{
    background:#080808;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-top{
    max-width:1400px;
    margin:auto;
    padding:70px 40px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-brand h3{
    color:#fff;
    margin-bottom:20px;
    font-size:1.8rem;
}

.footer-brand p{
    color:#a8a8a8;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(201,160,61,.08);
    border:1px solid rgba(201,160,61,.15);
    padding:10px 18px;
    border-radius:50px;
    color:#c9a03d;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4{
    color:#fff;
    margin-bottom:20px;
}

.footer-links,
.footer-contact{
    display:flex;
    flex-direction:column;
}

.footer-links a,
.footer-contact a{
    color:#a8a8a8;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#c9a03d;
}

.footer-contact i{
    width:22px;
}

.footer-status{
    margin-top:10px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#72e38a;
    font-weight:600;
}

.status-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#39d353;
    box-shadow:
        0 0 0 4px rgba(57,211,83,.15),
        0 0 10px rgba(57,211,83,.45);
}

.hours-box{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
}

.hours-box strong{
    display:block;
    color:#c9a03d;
    margin-bottom:10px;
    font-size:1.2rem;
}

.hours-box span{
    display:block;
    color:#a8a8a8;
    margin-bottom:5px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 40px;
    max-width:1400px;
    margin:auto;

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

    color:#777;
    font-size:.9rem;
}

.footer-bottom-links{
    display:flex;
    gap:20px;
}

.footer-bottom-links a{
    color:#777;
    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#c9a03d;
}

@media(max-width:992px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer-status,
    .footer-badge{
        justify-content:center;
    }

}


  .wsp {
    background: #25d366;
  }

  .wsp:hover {
    background: #128C7E;
  }

  #back_to_top {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

#back_to_top:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

.why-us{
    background:#111;
    position:relative;
}

.why-card{
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px 30px;
    height:100%;
    position:relative;
    transition:.35s;
    overflow:hidden;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.why-icon{
    width:70px;
    height:70px;
    border-radius:16px;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.why-icon i{
    font-size:2rem;
    color:#d4af37;
}

.why-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:3rem;
    font-weight:800;
    color:rgba(212,175,55,.12);
    line-height:1;
}

.why-card h4{
    color:#fff;
    margin-bottom:15px;
    font-weight:700;
}

.why-card p{
    color:#bdbdbd;
    margin:0;
    line-height:1.7;
}

.business-section{
    background:#f8f9fa;
}

.business-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:15px 18px;
    border-radius:12px;
    border:1px solid #e9ecef;
    height:100%;
    transition:.3s;
}

.business-item:hover{
    transform:translateY(-4px);
    border-color:#d4af37;
}

.business-item i{
    color:#d4af37;
    font-size:1.2rem;
}

.business-item span{
    font-weight:600;
}

.business-highlight{
    display:flex;
    gap:18px;
    padding:25px;
    border-radius:18px;
    background:#111;
    color:#fff;
    margin-top:20px;
}

.business-highlight i{
    color:#d4af37;
    font-size:2rem;
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#d4af37;
    color:#111;
    padding:15px 25px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.coverage-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    height:100%;
    border:1px solid #eee;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.coverage-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.coverage-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.coverage-icon i{
    font-size:2rem;
    color:#d4af37;
}

.coverage-badge{
    display:inline-block;
    margin-top:15px;
    background:#d4af37;
    color:#111;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.coverage-info{
    background:#111;
    color:#fff;
    padding:30px;
    border-radius:20px;
    display:flex;
    gap:20px;
    align-items:center;
}

.coverage-info-icon{
    font-size:2.5rem;
    color:#d4af37;
}

.faq-section{
    background:#f8f9fa;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.custom-faq .accordion-button{
    padding:22px 25px;
    font-weight:700;
    font-size:1.05rem;
    background:#fff;
    color:#111;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#111;
    color:#fff;
    box-shadow:none;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
    border:none;
}

.custom-faq .accordion-body{
    padding:25px;
    line-height:1.8;
    color:#666;
    background:#fff;
}

.custom-faq .accordion-button::after{
    transform:scale(1.1);
}

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

.contact-cta{
    padding:100px 0;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(rgba(0,0,0,.80), rgba(0,0,0,.80)),
        url('/images/contacto-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.contact-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.contact-badge{
    display:inline-block;
    background:#d4af37;
    color:#111;
    font-weight:700;
    font-size:.9rem;
    letter-spacing:1px;
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:25px;
}

.contact-box h2{
    font-size:3rem;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.contact-box .lead{
    font-size:1.3rem;
    color:#fff;
    margin-bottom:20px;
}

.contact-box p{
    color:#cfcfcf;
    line-height:1.8;
    max-width:760px;
    margin:0 auto;
}

.contact-feature{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-weight:600;
    font-size:1rem;
}

.contact-feature i{
    color:#d4af37;
}

.contact-phone{
    display:block;
    font-size:2.8rem;
    font-weight:800;
    color:#d4af37;
    text-decoration:none;
    margin-bottom:35px;
    transition:.3s;
}

.contact-phone:hover{
    color:#fff;
}

.contact-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.contact-actions .btn{
    min-width:240px;
    padding:14px 28px;
    font-weight:700;
}

.btn-gold{
    background:#d4af37;
    border-color:#d4af37;
    color:#111;
}

.btn-gold:hover{
    background:#c39d25;
    border-color:#c39d25;
    color:#111;
}

.contact-actions .btn-outline-light:hover{
    background:#fff;
    color:#111;
}

@media(max-width:991px){

    .contact-cta{
        padding:80px 0;
    }

    .contact-box h2{
        font-size:2.3rem;
    }

    .contact-phone{
        font-size:2rem;
    }
}

@media(max-width:576px){

    .contact-box h2{
        font-size:1.8rem;
    }

    .contact-box .lead{
        font-size:1.1rem;
    }

    .contact-phone{
        font-size:1.6rem;
    }

    .contact-actions{
        flex-direction:column;
        align-items:center;
    }

    .contact-actions .btn{
        width:100%;
        max-width:350px;
    }
}