/* --- Estilos Generales --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3 {
    color: #1a1a1a; /* Negro Intenso */
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #cc0000; /* Rojo Fuerte */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #a70000; /* Rojo Oscuro */
}

/* --- Header y Navegación --- */
.header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #1a1a1a; /* Negro */
}
.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.nav a:hover {
    color: #cc0000; /* Rojo Fuerte */
}

/* Botón de Menú Hamburguesa */
.menu-toggle {
    display: none; /* Oculto por defecto en escritorio */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 5px 0;
    transition: transform 0.4s, opacity 0.4s;
}

/* --- Hero Section --- */
.hero {
    background-image: url('images/slider.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* --- Secciones de Contenido --- */
.section {
    padding: 60px 20px;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

/* Propuesta de Valor */
.value-props {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
    flex-wrap: wrap;
}
.prop {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.prop img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* Intro Quiénes Somos */
.intro-about {
    background-color: #fff;
    text-align: center;
}
.intro-about p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Contenido Quiénes Somos */
.about-content { display: flex; gap: 40px; align-items: center; background-color: #fff; padding: 40px; border-radius: 8px; flex-wrap: wrap; }
.about-content .text, .about-content .image { flex: 1; min-width: 300px; }
.about-content .text { line-height: 1.7; }
.about-content img { max-width: 100%; border-radius: 8px; }

/* Contenido de Contacto */
.contact-wrapper { display: flex; gap: 40px; background-color: #fff; padding: 40px; border-radius: 8px; flex-wrap: wrap; }
.contact-info, .contact-form { flex: 1; min-width: 300px; }
.contact-info p { font-size: 1.1em; line-height: 1.8; margin: 0 0 20px 0; }
.contact-info strong { color: #1a1a1a; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; }
.submit-btn { width: 100%; padding: 15px; background-color: #cc0000; color: white; border: none; border-radius: 5px; font-size: 1.1em; font-weight: bold; cursor: pointer; transition: background-color 0.3s; }
.submit-btn:hover { background-color: #a70000; }
.map-container { margin-top: 60px; text-align: center; }
.map-container iframe { width: 100%; height: 400px; border: 0; border-radius: 8px; }

/* --- Footer --- */
.footer {
    background-color: #1a1a1a; /* Negro Intenso */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.footer .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.footer p {
    margin: 5px 0;
}
.footer-col {
    padding: 10px 20px;
}

/* --- Botón Flotante de WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* --- ESTILOS RESPONSIVE PARA MÓVILES --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; width: 100%; background-color: #ffffff; border-top: 1px solid #ddd; transform: translateY(-150%); transition: transform 0.3s ease-in-out; z-index: 999; padding: 10px 0; }
    .nav.active { transform: translateY(0); }
    .nav a { margin: 0; text-align: center; padding: 15px 0; width: 100%; border-bottom: 1px solid #f0f0f0; }
    .nav a:last-child { border-bottom: none; }
    .menu-toggle.active .hamburger-bar:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
    .menu-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .hamburger-bar:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }
    .hero h1 { font-size: 2.2em; }
    .hero p { font-size: 1em; }
    .section-title { font-size: 2em; }
    .value-props { flex-direction: column; }
    .footer .container { flex-direction: column; gap: 20px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 15px; right: 15px; }
    .whatsapp-float svg { width: 30px; height: 30px; }
    .about-content { flex-direction: column; padding: 20px; }
    .about-content.reverse-mobile { flex-direction: column-reverse; }
    .contact-wrapper { flex-direction: column; padding: 20px; }
    .map-container { margin-top: 40px; }
}

.logo img {
    max-width: 190px;
}

.contact-info .contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* Espacio entre columnas */
    flex-wrap: wrap; /* Permite que se apilen en pantallas pequeñas */
}

.contact-info .contact-column {
    flex: 1;
    min-width: 250px; /* Ancho mínimo para que se mantenga legible */
}