* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif; 
    background-color: #82a9f9;    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.tarjeta-contenedor {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.logo-circulo {
    width: 180px;
    height: 180px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo-texto {
    color: #ffffff;
    font-size: 4.5rem;
    font-family: 'Georgia', serif;
    font-weight: bold;
    letter-spacing: -4px;
}


.bloque-descripcion, .boton-enlace, .icono-enlace {
    background-color: #fffafb;
    color: #000000;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/*VISTA MOBILE*/
@media (max-width: 767px) {
    .tarjeta-contenedor {
        padding: 40px 30px;
        max-width: 450px; 
    }

    .perfil-seccion {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 50px;
    }

    .bloque-descripcion {
        width: 100%;
        max-width: 260px;
        padding: 12px;
        margin-top: 25px;
    }

    .contacto-iconos {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 260px;
        margin-bottom: 20px;
    }

    .icono-enlace {
        width: 47%; 
        height: 55px;
    }

    .icono-svg {
        width: 30px;
        height: 30px;
        fill: #000000;
    }

    .enlaces-seccion {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        gap: 15px; 
    }

    .boton-enlace {
        width: 100%;
        height: 50px;
    }
}

/*VISTA DESKTOP*/
@media (min-width: 768px) {
    body {
        background-color: #7196e3; 
    }

    .tarjeta-contenedor {
        max-width: 600px;
        background-color: rgba(255, 255, 255, 0.1); 
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .perfil-seccion {
        margin-bottom: 40px;
        text-align: center;
    }

    .bloque-descripcion {
        width: 320px;
        padding: 15px;
        margin: 30px auto 0 auto;
        font-size: 1.4rem;
        transition: transform 0.2s;
    }

    .contacto-iconos {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .icono-enlace {
        width: 150px;
        height: 60px;
        border-radius: 4px;
        transition: background-color 0.2s, transform 0.2s;
    }

    .icono-svg {
        width: 32px;
        height: 32px;
    }

    .enlaces-seccion {
        display: flex;
        flex-direction: column;
        width: 320px;
        gap: 12px;
    }

    .boton-enlace {
        height: 55px;
        border-radius: 4px;
        transition: background-color 0.2s, transform 0.2s;
    }

   
    .boton-enlace:hover, .icono-enlace:hover, .bloque-descripcion:hover {
        background-color: #ffffff;
        transform: translateY(-2px);
    }
}



/*DESCRIPCIÓN*/

body {
    font-family: 'Arial', sans-serif;
    background-color: #82a9f9; /* Color azul de fondo exacto del figma */
    color: #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Barra Superior (Header fijo/tope) --- */
.barra-superior {
    width: 100%;
    height: 60px;
    background-color: #fffafb; /* Blanco roto de la barra */
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.boton-volver {
    width: 70px;
    height: 100%;
    background-color: #dbdbdb; /* Fondo gris de la zona del botón de regreso */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-right: 1px solid #c5c5c5;
}

.icono-flecha {
    width: 32px;
    height: 32px;
    fill: #000000;
}

.titulo-cabecera {
    flex-grow: 1;
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: #000000;
    padding-right: 70px; /* Compensa el ancho del botón para centrar perfectamente el texto */
}

/* ==========================================================================
   2. VISTA MOBILE (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
    .contenido-contenedor {
        padding: 40px 25px;
        text-align: center;
        max-width: 480px;
        margin: 0 auto;
    }

    .nombre-perfil {
        font-family: 'Arial', sans-serif;
        font-size: 1.6rem;
        color: #2c323f; /* Tono oscuro grisáceo del título */
        margin-bottom: 35px;
        font-weight: bold;
    }

    .texto-descripcion {
        font-family: 'Arial', sans-serif;
        font-size: 0.95rem;
        line-height: 1.4;
        color: #000000;
    }

    .texto-descripcion p {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   3. VISTA DESKTOP (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
    .contenido-contenedor {
        max-width: 700px;
        margin: 50px auto;
        background-color: rgba(255, 255, 255, 0.15); /* Contenedor sutil para Desktop */
        padding: 50px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .nombre-perfil {
        font-size: 2.2rem;
        color: #1e222b;
        margin-bottom: 40px;
        letter-spacing: 0.5px;
    }

    .texto-descripcion {
        font-size: 1.05rem;
        line-height: 1.6;
        text-align: justify; /* Justificado opcional para que se vea más pulcro en escritorio */
    }

    .texto-descripcion p {
        margin-bottom: 25px;
    }

    /* Efecto hover interactivo para el botón en desktop */
    .boton-volver:hover {
        background-color: #cdcdcd;
        transition: background-color 0.2s ease;
    }
}