/* --- Reseteo Básico --- */
body, h1, h2, h3, h4, h5, h6, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    /* Fondo azul general */
    background-color: #0099d1;
    /* Texto general (párrafos y listas) en BLANCO */
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

/* --- Encabezado (Menú) --- */
.sitio-header {
    background-color: #0045e8; /* Fondo azul oscuro */
    padding: 15px 0;
    border-bottom: none;
}

    .sitio-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.titulo-sitio a {
    color: #ffffff; /* Logo BLANCO */
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
}

.navegacion-principal ul {
    list-style: none;
    display: flex;
}

.navegacion-principal li {
    margin-left: 20px;
}

.navegacion-principal a {
    color: #ffffff; /* Enlaces BLANCOS */
    text-decoration: none;
    font-size: 16px;
}

    /* Hover en rosa */
    .navegacion-principal a:hover {
        color: #f78da7; 
        text-decoration: underline;
    }

    /* Elemento actual ("Start") se mantiene BLANCO */
    .navegacion-principal .current-menu-item a {
        color: #ffffff !important; 
        text-decoration: none;
    }

/* --- Área Hero --- */
.hero-area {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #000000; 
}

.titulo-hero {
    color: #000000; /* Título NEGRO */
    font-size: 48px;
    font-weight: bold;
    text-shadow: none; 
}

.subtitulo-hero {
    color: #000000; /* Subtítulo NEGRO */
    font-size: 24px;
    margin: 10px 0 30px 0;
}

.boton-hero {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 2px;
}

    .boton-hero:hover {
        background-color: #333;
    }

/* --- Área de Contenido Principal (Index) --- */
.area-contenido {
    padding: 60px 0;
}

    .area-contenido img {
        max-width: 100%;
        height: auto;
    }

    .area-contenido h4 {
        color: #000000 !important; /* NEGRO */
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    
    .area-contenido strong {
        color: #000000 !important;
    }

    .area-contenido ul {
        list-style-position: inside;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .area-contenido li {
        margin-bottom: 10px;
    }

    /* Enlaces del index */
    .area-contenido a {
        color: #ffffff; 
        text-decoration: underline; 
    }

        .area-contenido a:hover {
            color: #f78da7; 
        }

    .area-contenido p {
        margin-bottom: 20px;
    }

/* --- Pie de Página --- */
.sitio-footer {
    background-color: #0045e8;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* --- Estilos de Páginas Internas --- */
.area-contenido-pagina .container {
    background-color: transparent !important; 
    color: #ffffff; /* Texto general blanco */
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
}

/* Títulos principales H1 */
.encabezado-articulo h1 {
    color: #000000; /* NEGRO */
    font-size: 38px;
    margin-bottom: 30px;
    border-bottom: 2px solid #000000; /* Línea NEGRA */
    padding-bottom: 15px;
}

.contenido-articulo p,
.contenido-articulo ul {
    margin-bottom: 20px;
}

.contenido-articulo ul {
    list-style-position: inside;
    margin-left: 20px;
}

/* Subtítulos H3, H4 */
.contenido-articulo h3,
.contenido-articulo h4 {
    color: #000000 !important; /* NEGRO */
}

/* Títulos centrados */
.contenido-articulo center h1 {
    font-size: 20px;
    color: #000000 !important; /* NEGRO */
    margin: 10px 0;
}

/* Negritas */
.contenido-articulo strong {
    color: #000000 !important; 
}

/* CAMBIO IMPORTANTE AQUÍ: Enlaces (como el de NOTE) */
.contenido-articulo a {
    color: #000000; /* Texto NEGRO (incluyendo "NOTE:") */
    text-decoration: none; /* SIN subrayado (sin rayado) */
    font-weight: bold; /* Negrita para que resalte */
}
    /* Al pasar el mouse cambia de color para saber que es clickeable */
    .contenido-articulo a:hover {
        color: #f78da7;
        text-decoration: none;
    }

/* --- Estilos Formulario Contacto --- */
.formulario-contacto { max-width: 600px; }
.campo-form { margin-bottom: 20px; }

.campo-form label { 
    display: block; 
    margin-bottom: 5px; 
    color: #ffffff !important; /* Etiquetas blancas */
    font-weight: bold; 
}

.campo-form input, .campo-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333; 
    background: #fff; 
}
.campo-form button { border: none; cursor: pointer; }