/* --- style.css --- */
:root {
    /* CAMBIO DE COLOR A NARANJA */
    --primary: #f97316; /* Naranja vibrante */
    --secondary: #ea580c; /* Naranja más oscuro para hovers */
    --dark: #1c1917; /* Un negro cálido que combina bien con naranja */
    --light: #fff7ed; /* Un blanco crema muy suave */
    --text-gray: #57534e;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; }
ul { list-style: none; }
section { padding: 5rem 0; } /* Espaciado estándar para secciones */

/* Navbar y Logo */
.navbar {
    background: var(--white);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

/* Estilos nuevos para el contenedor del logo + texto */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-img {
    height: 40px; /* Ajusta esto según el tamaño real de tu logo */
    width: auto;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--dark); font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.btn-nav { background: var(--primary); color: var(--white) !important; padding: 8px 20px; border-radius: 50px; }

/* Hero Home */
.hero {
    height: 90vh; /* Un poco más corto para que se vea la siguiente sección */
    /* He oscurecido un poco más la imagen de fondo para que resalte el naranja */
    background: linear-gradient(rgba(28, 25, 23, 0.85), rgba(28, 25, 23, 0.9)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px; 
}
.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.2; }
.highlight { color: var(--primary); } /* Ahora el highlight usa el color primario naranja */
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: #d6d3d1; }
.btn-primary { background: var(--primary); color: var(--white); padding: 15px 30px; border-radius: 5px; font-weight: 600; transition: 0.3s; display: inline-block;}
.btn-primary:hover { background: var(--secondary); }

/* Common Section Styles */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--dark); }
.section-subtitle { text-align: center; color: var(--text-gray); margin-bottom: 3rem; }
.icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }

/* NUEVA SECCIÓN: QUIÉNES SOMOS */
.about-us { background-color: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.about-text .lead { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; display: block;}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Servicios Grid (Home) */
.services { background-color: var(--light); }
.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 2rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; border-bottom: 3px solid transparent;}
.card:hover { transform: translateY(-5px); border-bottom: 3px solid var(--primary); }
.card a { color: var(--primary); font-weight: 600; margin-top: 1rem; display: inline-block; }

/* NUEVA SECCIÓN: BENEFICIOS */
.benefits { background-color: var(--white); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}
.benefit-item {
    padding: 20px;
    border-left: 3px solid var(--primary);
    background: var(--light);
}
.benefit-item h3 { margin-bottom: 10px; color: var(--dark); }

/* Páginas Internas (Headers) */
.service-hero { background: var(--dark); color: var(--white); padding: 140px 0 80px 0; text-align: center; margin-top: 0; }
.service-hero h1 { font-size: 3rem; margin-bottom: 1rem; }

/* Detalles Paginas Internas */
.details-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 50px; margin-bottom: 50px; }
.benefit-list { margin: 20px 0; }
.benefit-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; }
.benefit-list i { color: var(--primary); margin-top: 5px; }

/* Sidebar Precio */
.price-card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-top: 5px solid var(--primary); text-align: center; height: fit-content; position: sticky; top: 100px;}
.price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: 15px 0; }
.btn-whatsapp-full { display: block; width: 100%; background: #25D366; color: white; text-align: center; padding: 15px; border-radius: 5px; margin-top: 15px; font-weight: bold; transition: 0.3s; font-size: 1.1rem;}
.btn-whatsapp-full:hover { background: #1ebc57; }
.small-note { font-size: 0.8rem; color: #888; margin-top: 15px; }

/* CTA y Footer */
.cta-banner { background: var(--primary); /* CTA ahora es naranja */ color: var(--white); padding: 5rem 0; text-align: center; }
.btn-whatsapp { display: inline-block; background: var(--white); color: var(--primary); padding: 12px 30px; border-radius: 50px; margin-top: 25px; font-weight: bold; font-size: 1.1rem;}
footer { background: var(--dark); color: #a8a29e; padding: 4rem 0 1rem; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); margin-bottom: 1rem; font-size: 1.2rem;}
.copyright { text-align: center; border-top: 1px solid #44403c; padding-top: 1.5rem; font-size: 0.9rem; }
.footer-col i { color: var(--primary); margin-right: 10px; }

/* Responsive */
@media (max-width: 968px) {
     .about-grid { grid-template-columns: 1fr; text-align: center; }
     .about-image { order: -1; /* Pone la imagen arriba en móvil */ }
     .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-content h1, .service-hero h1 { font-size: 2.2rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .details-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } 
    .logo-text { font-size: 1.2rem; }
    .nav-logo-img { height: 35px; }
}
