/* Reset básico y fuentes */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Considera usar una fuente más moderna como Lato, Montserrat, Open Sans desde Google Fonts */
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-color: #0a2540; /* Azul oscuro corporativo */
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: #63e; /* Un color vibrante para destacar, ajusta según tu logo */
}

.hero .subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    background-color: #63e; /* Color principal del CTA */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Para que el padding funcione bien */
}

.cta-button:hover {
    background-color: #50c; /* Un poco más oscuro al pasar el mouse */
}

/* Secciones Generales */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #0a2540;
}

.section-highlight {
    background-color: #f6f9fc; /* Un fondo muy claro para alternar */
}

.section-dark {
    background-color: #333; /* Fondo oscuro para contraste */
    color: #fff;
}
.section-dark h2 {
 color: #fff;
}
.section-dark p {
 text-align: center;
 max-width: 800px;
 margin: 20px auto;
}

/* Sección Problema y Beneficios */
.problem-points, .benefit-points {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap; /* Para que se adapte en pantallas pequeñas */
    gap: 30px; /* Espacio entre elementos */
}

.point {
    flex-basis: calc(33% - 40px); /* Aproximadamente 3 columnas, con espacio */
    min-width: 250px; /* Ancho mínimo antes de envolver */
}

.point .icon {
    width: 60px; /* Tamaño del icono */
    height: 60px;
    margin-bottom: 15px;
    /* background-color: #eee;  Estilo temporal si no tienes iconos */
    /* border-radius: 50%; */
}

.point h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #0a2540;
}

/* Sección Solución */
#solucion p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

#solucion ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

#solucion ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

#solucion .check {
    color: #28a745; /* Verde para el checkmark */
    font-weight: bold;
    margin-right: 10px;
}
.mockup-image {
    display: block;
    max-width: 80%;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sección CTA Final */
.cta-section {
    background-color: #63e; /* Color principal */
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.cta-section .small-text {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 20px;
    margin-bottom: 10px;
}

.secondary-button {
     background-color: transparent;
     color: #fff;
     padding: 10px 25px;
     text-decoration: none;
     font-size: 1em;
     border: 2px solid #fff;
     border-radius: 5px;
     transition: background-color 0.3s ease, color 0.3s ease;
     display: inline-block;
}

.secondary-button:hover {
    background-color: #fff;
    color: #63e;
}


/* Footer */
footer {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

footer a {
    color: #6c757d;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive (Muy Básico) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    .hero .subtitle {
        font-size: 1em;
    }
    .section h2 {
        font-size: 1.8em;
    }
    .problem-points, .benefit-points {
        flex-direction: column;
        align-items: center;
    }
    .point {
        flex-basis: 80%; /* Ocupa más ancho en móvil */
        margin-bottom: 30px;
    }
     .mockup-image {
        max-width: 100%;
    }
}

/* Estilos para el Logo */
.logo {
    /* --- Solución Fondo Blanco --- */
    background-color: transparent; /* Fuerza a que no tenga color de fondo */
    
    /* --- Solución Tamaño --- */
    max-width: 100px; /* Define el ancho máximo. AJUSTA ESTE VALOR según necesites */
    /* width: 150px; */ /* Alternativa si quieres un tamaño fijo siempre */
    
    height: auto;     /* Mantiene la proporción alto/ancho original */
    
    /* --- Otros estilos (opcional) --- */
    display: block;   /* Evita espacios extra debajo si es necesario */
    margin-bottom: 20px; /* Añade un espacio debajo del logo (ajusta si quieres) */
    /* margin-left: auto; */ /* Descomenta estas dos líneas si quieres */
    /* margin-right: auto; */ /* centrar el logo horizontalmente */
}