
/* GENERAL */
body {
    margin: 0;
    font-family: "Roboto", "Segoe UI", Arial, sans-serif;
}

/* HEADER */
header {
    background-color: transparent;
    color: white;
    padding: 15px;
    text-align: center;
}

header .container {
    display: flex;
    align-items: center;
	justify-content: flex-start; /* ← lo manda a la izquierda */
}

/* LOGO KOLBI */
.logo {
    height: 80px; /* ajustá tamaño si querés */
}

/* HERO */
.hero {
    background: transparent;
    color: #0F9D8A;
    text-align: center;
    padding: 40px 20px;
}

/* INFO (sin fondo gris ✅) */
.info {
    background: #ffffff"  /* ← AQUÍ SE ELIMINA EL GRIS */
    color: #0F9D8A;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TÍTULO */
.info h3 {
    font-size: 22px;
    color: #0F9D8A;
    margin-bottom: 20px;
}

/* LISTA */
.lista-recomendaciones {
    list-style: none;
    max-width: 700px;
    padding: 0;
}


.lista-recomendaciones li {
    background: transparent;
    margin: 10px 0;
    padding: 15px 20px;
    border-left: 5px solid #00a859;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 15px;
    line-height: 1.5;
}

/* ICONO */
.lista-recomendaciones li::before {
    content: "✔";
    color: #00a859;
    font-weight: bold;
    margin-right: 10px;
}

/* FOOTER */
footer {
    background: #0F9D8A;
    color: white;
    text-align: center;
    padding: 10px;
}
