    

    body {
        margin-top: 50px;
        margin-bottom: 200px;
        font-family: Arial, sans-serif;
        background-image: url(Recursos/Pared_fondo_web.png);
        background-repeat: repeat;
        background-position: 0 0;
        background-size: 500px 500px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
    }

    #head_io {
        max-width: 200px;
    }

    /*------------------------------------------ Contenedor Central ---------------------------------------------*/
    .container {
        background: rgba(132, 73, 150, 0.616);
        margin: 20px;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.89);
        max-width: 900px;
        width: 100%;
    }

    /*----------------------------------------------- NavBar ------------------------------------------------------*/
    nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    nav a {
        text-decoration: none;
        color: white;
        padding: 10px 18px;
        border-radius: 6px;
        transition: background 0.3s ease;
    }

    nav a:hover {
        background: #af79a444;
        text-decoration: none;
    }

    /*----------------------------------------------- Secciones --------------------------------------------------*/
    #inicio { 
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    section {
        margin-bottom: 40px;
    }

    .instagram { 
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .instagram-media {
        max-width: 200px !important;
        flex: 1 1 auto;
    }

    h1 {
        color: #ccd6d5;
        font-size: 200%;
    }

    h2 {
        color: #bcd6d3;
    }

    h3 { 
        color: #bcd6d3;

    }

    footer {
        text-align: center;
        padding-top: 15px;
        font-size: 14px;
        color: #afafaf;
        border-top: 1px solid #ccc;
    }

    #hand01 {
        display: flex;
        max-width: 400px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.89);
    }

    .recursos1 {
        display: flex;
        gap: 60px;
        flex-wrap: wrap;
        justify-content: center;
        flex: 1 1 auto;
    }

    .recursos1 img { 
        max-width: 130px;
    }

    .recursos2 {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        flex: 1 1 auto;
    }

    .recursos2 img { 
        max-width: 280px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.89);
    }

    .recursos3 {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        flex: 1 1 auto;
    }

    .recursos3 img { 
        max-width: 50px;
    }

    .texto_inicio {
        display: flex;
        align-items: center;
        gap: 50px;
        justify-content: space-between;
        font-size: 22px;
        font-style: italic;
    }

    .texto_inicio p {
        color: #bcd6d3;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    a:hover {
        text-decoration: underline;
    }

    .contactos {
        display: flex;
        align-items: center;
        max-width: 30px;
        gap: 12px;
        margin-bottom: 20px;
        color: #bcd6d3;
    }



    .contactos img {
        max-width: 20px;
    }