
/* Estilos para la Sección Héroe */
.hero {
    height: 65vh; /* 100vh Ocupa toda la altura de la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botón de Llamada a la Acción (CTA) */
.cta-button {
    background-color: #1a9f00;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #308f1d;
    transform: scale(1.05);
    text-decoration: none;
    color: white;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}




 /* Contenedor de Servicios */
 .services-container {
     padding: 70px 20px;
     background-color: #f4f4f4;
     text-align: center;
 }

.services-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

/* La Cuadrícula (Grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo de cada Tarjeta */
.card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    margin-bottom: 15px;
    color: #333;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* Color de acento para los títulos de las tarjetas */
.card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #44b700;
    margin: 10px auto 0;
}









/*SECCION POR QUE TRABAJAR CON NOSOTROS*/
:root {
    --accent-color: #00b894; /* Verde esmeralda profesional */
    --title-color: #2d3436;
    --text-color: #636e72;
}

body { margin: 0; font-family: 'Inter', 'Segoe UI', sans-serif; }

.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;

}

.content-half {
    flex: 1;
    min-width: 350px;
    padding: 30px 5%; /* Padding proporcional */
    box-sizing: border-box;
}

.content-half h2 {
    font-size: 2.5rem;
    color: var(--title-color);
    margin-bottom: 25px;
    font-weight: 800;
}

/* --- ESTILOS DE LA LISTA PROFESIONAL --- */
.pro-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pro-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.pro-list li i {
    background: rgba(0, 184, 148, 0.1); /* Fondo suave para el icono */
    color: var(--accent-color);
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
    flex-shrink: 0; /* Evita que el icono se aplaste */
}

.pro-list li strong {
    display: block;
    color: var(--title-color);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

/* Bloque de Imagen */
.image-half {
    flex: 1;
    min-width: 350px;
    height: 50vh;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
    .split-section { flex-direction: column; }
    .image-half { display:none; height: 550px; width: 100%; order: 2; }
    .content-half { width: 100%; order: 1; padding: 40px 20px; }
    .content-half h2 { font-size: 2rem; }
}













/*SECCION DE CONTACTO*/
.contact-bg-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 80px 0;
    /* CONFIGURACIÓN DE IMAGEN */
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000'); /* Cambia esta URL por tu imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax (opcional) */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Capa oscura para que el texto se lea bien */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Ajusta el 0.6 para más o menos oscuridad */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2; /* Por encima del overlay */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.contact-header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px); /* Efecto cristal */
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a9f00; /* Color de acento */
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-card p, .contact-card a {
    color: #f0f0f0;
    text-decoration: none;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-bg-section { background-attachment: scroll; } /* Desactiva parallax en móvil */
    .contact-header h2 { font-size: 2.2rem; }
}
