/* --- RESET Y ESTILOS GENERALES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- ANIMACIONES --- */
@keyframes parpadeo-amarillo {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 193, 7, 0.6);
    }
    50% {
        opacity: 0.35;
        transform: scale(0.98);
        box-shadow: 0 0 0px rgba(255, 193, 7, 0);
    }
}

.badge-parpadeo {
    animation: parpadeo-amarillo 1.8s infinite ease-in-out;
}

@keyframes pulso-delicado {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(40, 167, 69, 0.45); }
    100% { transform: scale(1); }
}

.btn-sonando {
    animation: pulso-delicado 2.4s infinite ease-in-out !important;
}

.btn-sonando i {
    display: inline-block;
    animation: none !important;
}

/* --- HEADER Y NAVEGACIÓN --- */
.header-full-banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #28a745;
    padding: 12px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.header-full-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand-full-image {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.banner-img {
    height: auto;
    width: 100%;
    max-width: 480px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}

.banner-img:hover {
    transform: scale(1.02);
}

.header-right-side {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-modern a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.nav-modern a:hover {
    color: #28a745;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #181818;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 10px 20px;
    font-size: 14px;
    color: #ccc;
}

.dropdown-menu a:hover {
    background-color: #222;
    color: #28a745;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn.email {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0078d4;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn.email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.4);
}

.icon-btn.facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1877f2;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn.facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.icon-btn.instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.btn-phone-modern {
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.35);
    transition: all 0.2s ease;
}

.btn-phone-modern:hover {
    background-color: #218838;
}

/* --- HERO BANNER PRINCIPAL --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('hero-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
}

.badge-urgencia-hero {
    background-color: #ffc107;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    color: #28a745;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-call {
    background-color: #28a745;
    color: #fff;
}

.btn-call:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* --- SECCIONES Y TARJETAS --- */
.info-section, .services-section, .extra-info {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    color: #28a745;
    font-size: 28px;
    margin-bottom: 30px;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.grid-4-zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.card, .service-box, .zone-card {
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

.card h3, .service-box h3, .zone-card h3 {
    color: #28a745;
    margin-bottom: 15px;
}

/* Estilos de las Tarjetas SEO Especializadas */
.service-card-seo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card-seo:hover {
    transform: translateY(-5px);
    border-color: #28a745;
}

.service-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

.seo-desc {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

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

.service-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ddd;
}

.service-features li i {
    color: #28a745;
    margin-right: 6px;
}

.btn-service-wa {
    display: block;
    text-align: center;
    background-color: #28a745;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-service-wa:hover {
    background-color: #218838;
}

.badge-urgencia {
    color: #ffc107;
    font-weight: bold;
}

.payment-card {
    margin-top: 20px;
    text-align: center;
}

.inline-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.inline-list li i {
    color: #28a745;
}

/* --- SECCIÓN RESEÑAS DE GOOGLE --- */
.reviews-section {
    padding: 50px 0;
}

.google-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
    background-color: #1a1a1a;
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.google-icon {
    font-size: 42px;
    color: #4285f4;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-score {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
}

.stars {
    color: #fbbc05;
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-count {
    color: #aaa;
    font-size: 14px;
}

.review-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-bottom: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #4285f4;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.review-user h4 {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}

.review-date {
    color: #888;
    font-size: 12px;
}

.google-card-logo {
    position: absolute;
    right: 0;
    top: 0;
    color: #4285f4;
    font-size: 18px;
}

.stars-card {
    color: #fbbc05;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.review-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

/* --- SECCIÓN FAQ Y GARANTÍA --- */
.faq-section {
    padding: 50px 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 6px;
}

.faq-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.garantia-card {
    border-left: 4px solid #28a745 !important;
}

.garantia-intro {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 15px;
}

.garantia-box-alerta {
    background-color: #161616;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.garantia-box-alerta h4 {
    color: #ffc107;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.garantia-box-alerta ul {
    list-style: none;
    padding-left: 0;
}

.garantia-box-alerta ul li {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}

.garantia-box-alerta ul li::before {
    content: "✖";
    color: #dc3545;
    position: absolute;
    left: 0;
    font-size: 12px;
}

.garantia-box-alerta ul li strong {
    color: #ffffff;
}

.garantia-nota {
    font-size: 12px;
    color: #aaa;
    line-height: 1.4;
}

.garantia-nota i {
    color: #28a745;
}

/* --- FOOTER --- */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    border-top: 3px solid #28a745;
    padding: 40px 0 20px 0;
    color: #ffffff;
}

.footer-banner-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-brand-text h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-brand-text p {
    color: #28a745;
    font-weight: bold;
    font-size: 13px;
    margin: 3px 0 0 0;
    letter-spacing: 1.5px;
}

.footer-urgencias {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    padding: 12px 20px;
    border-radius: 4px;
}

.footer-urgencias h4 {
    color: #28a745;
    margin: 0 0 5px 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-urgencias ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #ccc;
}

.footer-contact-info {
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-info i {
    color: #28a745;
    margin-right: 8px;
}

.footer-copy {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

/* --- BOTONES FLOTANTES --- */
.no-pozo-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #111111;
    color: #ffffff;
    border: 2px solid #28a745;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 250px;
    line-height: 1.3;
}

.no-pozo-float i {
    color: #28a745;
    font-size: 18px;
    flex-shrink: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* --- DISEÑO RESPONSIVO Y ADAPTACIÓN A CELULARES --- */
@media (max-width: 1024px) {
    .header-full-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .banner-img {
        max-width: 380px;
    }

    .header-right-side {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        padding-top: 10px;
        border-top: 1px solid #222;
    }
}

@media (max-width: 768px) {
    .header-full-container {
        padding: 10px 15px;
    }

    .brand-full-image img.banner-img {
        max-width: 95% !important;
        margin: 0 auto;
    }

    .nav-modern {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav-modern a {
        font-size: 14px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-phone-modern span {
        display: inline-block;
    }

    .footer-banner-wide {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-urgencias ul {
        flex-wrap: wrap;
    }

    .google-header {
        flex-direction: column;
        align-items: flex-start;
    }
}