/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Times New Roman', Times, serif;
    background-color: rgb(254, 235, 212);
    color: #333;
    line-height: 1.6;
    font-size: 24px;
    padding-bottom: 50px;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgb(255, 153, 0), rgb(163, 58, 58));
    padding: 20px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-bottom: 3px solid orange;
    position: relative;
}

/* CONTENEDOR IZQUIERDO */
.header-left{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO */
.logo {
    width: 100%;
    max-width: 180px;
    height: auto;
}

/* TITULO */
.titulo-principal {
    font-size: 32px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
    line-height: 1.3;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

/* MENÚ */
nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    background: rgba(163, 58, 58, 0.95);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

nav.active {
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 10px;
}

nav ul li {
    display: block;
}

nav ul li a {
    display: block;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 22px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #ffb300;
    color: #4b0082;
    box-shadow: 0 0 10px #9d00ff;
}

/* SECCIÓN CONTACTO */
.contacto {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.titulo-seccion {
    text-align: center;
    font-size: 35px;
    color: #4b0082;
    margin-bottom: 25px;
}

.contacto p {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.item-contacto {
    background-color: #fff7ef;
    border-left: 6px solid #8b1e3f;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.item-contacto h3 {
    color: #8b1e3f;
    margin-bottom: 10px;
    font-size: 28px;
    text-align: center;
}

.item-contacto p {
    text-align: center;
    font-size: 22px;
}

.item-contacto a {
    text-decoration: none;
    color: #4b0082;
    font-weight: bold;
    transition: 0.3s;
}

.item-contacto a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* FOOTER */
footer {
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
    padding: 20px 10px;
    color: #333;
}

footer a {
    color: #333;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px){

    body {
        font-size: 18px;
    }

    .logo {
        max-width: 150px;
    }

    .titulo-principal {
        font-size: 24px;
    }

    .titulo-seccion {
        font-size: 28px;
    }

    .contacto p,
    .item-contacto p {
        font-size: 18px;
    }

    .item-contacto h3 {
        font-size: 22px;
    }

    nav {
        width: 210px;
        right: 10px;
    }

    nav ul li a {
        font-size: 18px;
    }

    header{
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-left{
    flex-direction: column;
    align-items: center;
}

.logo{
    max-width: 140px;
}

.titulo-principal{
    font-size: 24px;
    text-align: center;
}
}