:root { --primary: #0056b3; --green: #25d366; --dark: #333; --bg: #f8f9fa; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--dark); line-height: 1.6; background: var(--bg); }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
header { background: white; padding: 15px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 130px; width: auto; vertical-align: middle; }
.nav-links { list-style: none; display: flex; gap: 15px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; }

.hero { 
    padding: 150px 0 250px; 
    background-color: #003366;
    color: white; 
    text-align: center; 
    position: relative;
    overflow: hidden; /* Evita que el zoom cree barras de desplazamiento */
}
.hero::before {
    content: "";
    position: absolute;
    /* Extendemos el contenedor drásticamente para un efecto ultra gran angular */
    top: -310%; 
    left: -300%; 
    right: -300%; 
    bottom: -300%;
    background-image: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)),
                      url('img/camion_volcan_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(0.15); /* Efecto de alejamiento máximo para ver todo el entorno del volcán */
}
.hero-content { position: relative; z-index: 2; }
.hero-btns {
    position: absolute;
    top: 30px;
    right: 5%;
    display: flex;
    gap: 15px;
    z-index: 10;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.btn { padding: 12px 25px; border-radius: 5px; text-decoration: none; display: inline-block; font-weight: bold; cursor: pointer; border: none; }
.btn-primary { background: var(--green); color: white; }
.btn-secondary { background: var(--primary); color: white; }
.services { padding: 60px 0; }
.about { padding: 60px 0; background: white; text-align: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; text-align: left; }
.about-content { max-width: 800px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.info-split { padding: 80px 0; background: #fff; }
.image-box img { width: 100%; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.info-split .image-box img { transform: scaleX(-1); }
.badge { background: var(--green); color: white; padding: 5px 12px; border-radius: 5px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; margin-bottom: 15px; display: inline-block; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-weight: 600; color: var(--primary); }
.check-list i { color: var(--green); margin-right: 10px; }

.section-title { text-align: center; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card { background: white; padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.service-card i { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
.service-card p { font-size: 0.9rem; color: #666; }

/* Ventajas y Características */
.features { padding: 40px 0; background: white; margin-top: -40px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-item { text-align: center; padding: 20px; }
.feature-item i { font-size: 30px; color: var(--green); margin-bottom: 10px; }
.feature-item h4 { margin-bottom: 10px; color: var(--primary); }

/* Proceso */
.process { padding: 60px 0; background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 30px; }
.step { text-align: center; position: relative; }
.step-num { background: var(--primary); color: white; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 15px; font-weight: bold; font-size: 1.2rem; }

/* FAQ */
.faq { padding: 60px 0; background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.faq-item h4 { color: var(--primary); margin-bottom: 10px; }
.faq-item p { font-size: 0.95rem; color: #555; }

/* Testimonios */
.testimonials { padding: 80px 0; background: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.9)), url('https://images.unsplash.com/photo-1506461883276-594a12b11cf3?auto=format&fit=crop&q=80&w=1920'); background-size: cover; color: white; }
.testimonials .section-title { color: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.testimonial-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 10px; font-style: italic; backdrop-filter: blur(5px); }
.testimonial-card strong { display: block; margin-top: 15px; font-style: normal; color: var(--green); }

.coverage { padding: 60px 0; background: #e9ecef; text-align: center; }
.coverage-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0; }
.coverage-tags span { background: var(--primary); color: white; padding: 5px 15px; border-radius: 20px; font-weight: 600; }
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: var(--green); color: white; width: 60px; height: 60px; 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; }

/* Contacto Mejorado */
.contact-section { padding: 80px 0; background: #f0f2f5; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--primary); }
.contact-info p { margin-bottom: 25px; color: #555; }
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; color: var(--dark); }
.info-item i { color: var(--primary); font-size: 1.2rem; }
.contact-image img { width: 100%; border-radius: 12px; margin-top: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.image-caption { text-align: center; margin-top: 10px; font-weight: 700; color: var(--primary); font-size: 0.9rem; text-transform: uppercase; }
.contact-form { width: 100%; display: flex; flex-direction: column; gap: 15px; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
input, select, textarea { padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.captcha-box { display: flex; align-items: center; gap: 10px; background: #f8f9fa; padding: 12px; border-radius: 6px; border: 1px dashed var(--primary); margin-bottom: 5px; }
.captcha-box label { font-size: 0.85rem; font-weight: 600; color: #555; }
.captcha-box input { width: 70px; text-align: center; padding: 5px; border-color: var(--primary); }
textarea { min-height: 120px; resize: vertical; }

footer { background: var(--dark); color: white; padding: 40px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 30px; }
.footer-grid h3 { margin-bottom: 15px; font-size: 1.2rem; color: #ffffff; }
.footer-logo { height: 100px; width: auto; margin-bottom: 15px; background: white; padding: 12px; border-radius: 6px; }
.footer-social { display: flex; gap: 15px; margin-top: 15px; }
.footer-social a { color: white; font-size: 1.5rem; transition: color 0.3s; }
.footer-social a:hover { color: var(--green); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }

/* Reset total de estilos para el footer - Fuerza colores y elimina azul/subrayado */
footer, footer p, footer li, footer strong, footer i, footer h3 { color: #ffffff !important; }

footer a,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active,
footer a:focus {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    transition: color 0.3s ease;
    color: #cccccc !important; /* Color base para todos los links */
}

footer a:hover,
footer a:active {
    color: #ffffff !important; /* Color al pasar el mouse */
}

.copy { text-align: center; border-top: 1px solid #444; padding-top: 20px; font-size: 0.8rem; }

/* Ajustes Responsivos */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .info-split .grid-2 .text-box { order: 1; }
    .info-split .grid-2 .image-box { order: 2; }
    .faq-grid { grid-template-columns: 1fr; }
    header { padding: 10px 0; }
    .logo img { height: 90px; } /* El logo se ajusta para no saturar la pantalla del móvil */
    nav { flex-direction: column; gap: 15px; }
    .nav-links { gap: 10px; font-size: 0.9rem; flex-wrap: wrap; justify-content: center; }
    .hero h1 { font-size: 1.8rem; }
    .hero-btns {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}