/* Variables para colores (Fácil de cambiar) */
:root {
    --color-primary: #007bff; /* Azul vibrante (CTA Principal) */
    --color-secondary: #0056b3; /* Azul Oscuro (Hover) */
    --color-text: #333; /* Texto principal oscuro */
    --color-background: #f8f9fa; /* Fondo claro */
    --color-accent: #28a745; /* Verde para resaltado (Highlight) */
}

/* Estilos Globales y Tipografía */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--color-text);
    background-color: var(--color-background);
}

/* --- HERO SECTION --- */
.hero-section {
    background-color: #0d1a26; /* Fondo oscuro elegante */
    color: white;
    padding: 100px 20px;
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
    text-align: center;
    min-height: 70vh; /* Ocupa buena parte de la pantalla */
    /* Aquí iría la imagen de fondo si aplica */
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900; /* Extra-bold */
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    color: var(--color-accent); /* Resalta la palabra clave */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #e0e0e0; /* Gris claro para subtítulo */
}

/* --- BOTONES CTA --- */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre botones */
    flex-wrap: wrap; /* Para responsividad */
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- BARRA de CONFIANZA --- */
.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    background-color: #e9ecef; /* Color gris claro */
    color: var(--color-text);
    font-weight: 700;
    text-align: center;
    flex-wrap: wrap;
}

.trust-item {
    padding: 5px 15px;
}

/* --- Responsividad Básica --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-ctas {
        flex-direction: column; /* Botones apilados en móvil */
        align-items: center;
    }
    .btn {
        width: 80%; /* Botones más anchos */
    }
    .trust-bar {
        justify-content: center;
        gap: 10px;
    }
}
/* --- SECCIÓN DE SERVICIOS --- */
.services-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0d1a26;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--color-primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0d1a26;
}

/* --- SECCIÓN DE CONTACTO --- */
.contact-section {
    padding: 80px 20px;
    background-color: #0d1a26;
    color: white;
}

.contact-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.contact-details li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

/* --- FOOTER --- */
.main-footer {
    padding: 40px 20px;
    background-color: #071017;
    color: #888;
    text-align: center;
    border-top: 1px solid #1a2a3a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a {
    color: #888;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-primary);
}

/* Responsividad extra */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
    }
}
