* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #1e1e1e;   /* Gris oscuro más claro que negro */
    color: white;
}

/* Promo */
.promo {
    background: linear-gradient(90deg, #ff7300, #ffb800);
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: linear-gradient(90deg, #2b2b2b, #242424);
    border-bottom: 3px solid #ff7300; /* Línea naranja HERON */
}

.navbar img {
    height: 90px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #ff7300;
}

/* Hero */
.hero {
     text-align: center;
    padding: 140px 20px;
    background: #2a2a2a;  /* Gris moderno HERON */
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero h2 {
    color: #ff7300;
    margin: 20px 0;
}

.hero p {
    margin-bottom: 30px;
}

/* Secciones */
.section {
    padding: 100px 20px;
    text-align: center;
}

.dark {
   background: #2a2a2a;
}

.section h2 {
    color: #ff7300;
    margin-bottom: 40px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 60px;
}

.card {
    background: #333333;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255,115,0,0.3);
}

/* Plan */
.plan-card {
    background: #1a1a1a;
    padding: 50px;
    max-width: 450px;
    margin: auto;
    border-radius: 15px;
}

.plan-card h3 {
    color: #ff7300;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-card li {
    margin: 10px 0;
}

/* Botón */
.btn {
    padding: 15px 40px;
    background: linear-gradient(90deg, #ff7300, #ffb800);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

/* Contacto */
.slogan {
    margin-top: 20px;
    color: #ff7300;
    font-weight: 600;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    color: white;
}

/* Responsive */
@media(max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/* BENEFITS SECTION */

.benefits {
    padding: 100px 20px;
    background: #2a2a2a;
}

.benefits-container {
    max-width: 1200px;
    margin: auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ff7300;
    margin-bottom: 10px;
}

.benefits-header p {
    color: #ccc;
}

/* GRID RESPONSIVE */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* TARJETAS */
.benefit-card {
    background: #333333;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,115,0,0.15);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255,115,0,0.3);
}

.benefit-card .icon {
    background: #ff7300;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 8px;
}

.benefit-card p {
    color: #bbb;
    margin-bottom: 12px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #ccc;
}

/* -------- RESPONSIVE -------- */

/* Tablet */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-header h2 {
        font-size: 28px;
    }

    .benefit-card {
        padding: 25px;
    }
}
/* ===== COBERTURA ===== */
.coverage {
    padding: 120px 20px;
    .coverage {
    background: #2f2f2f;
}

}

.coverage-container {
    max-width: 1200px;
    margin: auto;
}

.coverage-header {
    text-align: center;
    margin-bottom: 60px;
}

.coverage-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.coverage-header p {
    color: #ccc;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Lista izquierda */
.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coverage-item {
    background: rgba(255,255,255,0.05);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,115,0,0.2);
}

.coverage-item h4 {
    margin-bottom: 5px;
}

.coverage-item span {
    color: #ff7300;
    font-size: 14px;
}

/* Tarjeta derecha */

.coverage-card {
    background: linear-gradient(135deg, #141414, #0d0d0d);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,115,0,0.35);
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow naranja al pasar el mouse */
.coverage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 1px solid rgba(255,115,0,0.8);
    box-shadow: 0 25px 50px rgba(255,115,0,0.35);
}

/* Logo animado */
.coverage-logo {
    max-height: 75px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.coverage-card:hover .coverage-logo {
    transform: scale(1.12);
}

/* Título */
.coverage-card h3 {
    margin-bottom: 20px;
    font-size: 26px;
    transition: color 0.3s ease;
}

.coverage-card:hover h3 {
    color: #ff7300;
}

/* Texto */
.coverage-card p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Link */
.coverage-link {
    color: #ff7300;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coverage-card:hover .coverage-link {
    text-shadow: 0 0 12px rgba(255,115,0,0.9);
}



/* Responsive */
@media (max-width: 900px) {
    .coverage-content {
        grid-template-columns: 1fr;
    }
}

/* ===== GALERÍA PROFESIONAL ===== */

.gallery {
    padding: 120px 20px;
    background: #2d2d2d;
    text-align: center;
}

.gallery h2 {
    color: #ff7300;
    margin-bottom: 10px;
    font-size: 36px;
}

.gallery p {
    color: #ccc;
    margin-bottom: 50px;
}

.slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(320px * 6);
    animation: scroll 30s linear infinite;
}

.slide-item {
    position: relative;
    margin-right: 25px;
}

.slide-item img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s ease;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    border-radius: 0 0 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    opacity: 0;
    transition: 0.4s ease;
    text-align: left;
}

.overlay h4 {
    color: #ff7300;
    margin-bottom: 5px;
}

.overlay p {
    color: #ccc;
    font-size: 14px;
}

/* Animación hover */
.slide-item:hover img {
    transform: scale(1.05);
}

.slide-item:hover .overlay {
    opacity: 1;
}

/* Animación automática */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1600px); }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-item img {
        width: 240px;
        height: 170px;
    }
}
