* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 10px 20px;
    color: white;
}

.header_logo img{
    width: 75px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

nav ul li a {
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
    transform: scale(1.1);
}

.header_2{
    display: none;
}


#toggleNav{
    background-image: none;
    text-transform: none;
    background: none; /* No background color */
    border: none;    /* No border */
    padding: 0;      /* Remove default padding */
    margin: 0;       /* Remove default margin */
    cursor: pointer; /* Indicate it's clickable */
    font-family: inherit; /* Inherit font from parent for text inside button (if any) */
    outline: none;   /* Remove outline on focus for a cleaner look, but consider accessibility */
    -webkit-appearance: none; /* For Safari/Chrome to reset default button styles */
    -moz-appearance: none;    /* For Firefox */
}

@media (max-width: 1000px){
    nav{
        display: none;
    }
    .header_2 {
        display: block;
        font-family: Arial, sans-serif;
        text-align: center;
    }

    #toggleNav img{
        width: 50px;
        background-color: transparent !important;
    }
    #navMenu {
        display: none;
        margin-top: 20px;
    }

    #navMenu ul {
        list-style: none;
        padding: 0;
    }

    #navMenu ul li {
        background-color: #333;
        margin: 5px 0;
        padding: 10px;
    }

    #navMenu ul li a {
        color: white;
        text-decoration: none;
        display: block;
    }
}

.content {
    width: 90%;
    max-width: 1000px;
    background: #ffffff;
    padding: 40px;
    margin: 40px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
}

/* SECCIONES */
section {
    margin-bottom: 40px;
}

section h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 6px solid #3498db;
    padding-left: 12px;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 6px solid #3498db;
    padding-left: 12px;
}

section p {
    font-size: 1rem;
    margin-bottom: 16px;
}

/* TEXTO DESTACADO */
.highlight-box {
    background: #f0f8ff;
    border-left: 5px solid #3498db;
    padding: 16px;
    border-radius: 8px;
    font-style: italic;
}

/* LISTAS SIMULADAS CON VIÑETAS */
section p b {
    display: inline-block;
    margin-top: 12px;
    color: #34495e;
}

section p::before,
section p::after {
    content: "";
    display: block;
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

/* LISTAS DE PUNTOS (UL SIMULADO EN P) */
section p br + • {
    display: block;
    margin-top: 8px;
}

/* ESTILOS RESPONSIVOS */
@media screen and (max-width: 768px) {
    .content {
        padding: 24px;
    }

    section h2 {
        font-size: 1.4rem;
    }

    section p {
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-container p {
    margin: 5px 0;
    font-size: 14px;
}

/* Estilo para el enlace de Facebook */
.facebook-link {
    color: #1877F2;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.facebook-link i {
    margin-right: 5px;
}

.facebook-link:hover {
    text-decoration: underline;
}

.legal{
    display:flex;
    justify-content:center;
    margin-bottom:50px;
    margin-top:25px;
    flex-wrap: wrap;
}
.legal p{
    margin-left:10px;
}
.legal a{
    margin-left:10px;
    color:white;
}
.legal a:hover{
    color:rgba(0,0,0,0.5);
}