/* RESETEO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Instrument Sans", sans-serif;
}

/* =======================
   HEADER REDISEÑADO
======================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;

    /* Fondo blanco 70% + blur 30% */
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
}

.header-left {
    font-size: 12px;
    font-weight: 300;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
}

.header-center {
    display: flex;
    gap: 8px;
}

.header-right {
    display: flex;
}

.nav-link {
    font-size: 12px;
    font-weight: 300;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s, font-weight 0.3s;
}

.nav-link:hover {
    color: #0024fc; /* azul hover */
    font-weight: 400;
}

/* =======================
   HAMBURGUESA
======================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 16px;
    height: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: #0024fc;
}
/* =======================
   CONTACT OVERLAY
======================= */
.contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.contact-overlay.active {
    display: flex;
}

/* TARJETA */
.contact-card {
    width: 495px;
    height: 286px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.25);
    position: relative;
    transform: rotate(-5deg);
    padding: 24px;
}

/* CLOSE */
.contact-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    color: #000000;
    cursor: pointer;
}

.contact-close:hover {
    color: #0024ce;
}

/* CONTENIDO */
.contact-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

/* TEXTOS */
.contact-intro,
.contact-follow {
    font-size: 17.5px;
    font-weight: 500;
    font-style: italic;
    color: #000000;
    margin-bottom: 8px;
}

.contact-overlay .highlight {
    color: #0024ce;
}

/* LINKS */
.contact-link,
.contact-socials a {
    font-size: 15.3px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

.contact-link:hover,
.contact-socials a:hover {
    color: #0024ce;
}
/* =======================
   MOBILE MENU (oculto por defecto)
======================= */
.mobile-menu {
    display: none; /* oculto en desktop */
    flex-direction: column;
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1001;
    text-align: center;
}

.mobile-menu .nav-link {
    font-size: 12px;
    font-weight: 300;
    color: #000000;
}

.mobile-menu .nav-link:hover {
    color: #0024fc;
    font-weight: 400;
}

.about {
    display: flex;        /* Activa las columnas */
    gap: 80px;           /* Espacio entre columnas */
    height: 100vh;
    overflow: hidden;
    width: 100%;
    padding: 40px;
    background: #F9F9F9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr 0.65fr;
    height: 100%;
    column-gap: 100px; /* separación entre imagen y texto */
}

/* Imagen izquierda */
body {
    padding-top: 10px;   /* 40px del header + 10px de margen */
    padding-bottom: 20px; /* 33px del footer + 10px de margen */
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 530px;
    height: 680px;
    border-radius: 18px;
    object-fit: cover;
}

/* Texto derecha */
.about-right {
    width: 230px; /* ajustable */
    overflow: hidden;
}

.about-right-2 {
    margin-top: 40px; /* AJUSTA ESTE VALOR para alinearlo con la intro */
}

.about-left {
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-intro {
    font-size: 24px;
    font-weight: 500;
    color: #0024fc;
    width: 320px;
    margin-bottom: 35px;
    margin-top: 80px;
    margin-left: 25px
}

.about-desc {
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
    margin-left: 25px;
    width: 350px;
}

.about-door {
    margin-top: 30px; /* separa del texto anterior */
    margin-left: 25px; /* mismo margen que tu texto de columna */
    line-height: 1.4;
}

.door-link {
    color: #0024fc; /* azul */
    font-size: 14px;
    font-weight: 400; /* regular */
    text-decoration: none;
}

.door-link:hover {
    text-decoration: none
}

.door-subtext {
    color: #000000; /* negro */
    font-size: 14px;
    font-style: italic;
    margin-top: 2px;
}


.about-block {
    margin-bottom: 28px !important;
}

.about-block h3 {
    font-size: 12pt;
    color: #0024fc;
    font-weight: 500;
    margin-bottom: 5px;
}

.about-block p {
    font-size: 10pt;
    color: #000;
    font-weight: 400;
}

/* highlight: ahora en negro (o heredado), sin forzar color azul */
.highlight {
    font-weight: 500;
    color: #000000; /* si prefieres otro color, cámbialo aquí */
}

/* honors: bloque en cursiva (salto de línea real) */
.honors {
    margin-top: 6px;
    font-style: italic;   /* texto en cursiva */
}

/* star: SOLO el asterisco en azul */
.star {
    color: #0024fc;
    font-weight: 400;
    margin-right: 0px;
    font-size: 16px;
    /* si quieres que el asterisco tenga tamaño distinto: font-size: 14px; */
}

/* honors-text: texto de honors (hereda cursiva) — opcional para controlar separación */
.honors-text {
    color: inherit; /* hereda color (negro) o puedes forzar otro color */
    font-style: italic;
    font-weight: 400;
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

.footer-email {
    font-size: 9pt;
    color: #000000;
    white-space: nowrap;
    line-height: 40px;
}
.footer-email a {
    text-decoration: none; /* quita el subrayado */
    color: #000000;
}
.footer-email a:hover {
    color: #0024fc;  /* un gris más oscuro */
    text-decoration: none
}

/* ICONOS FOOTER */
.footer-icons {
    display: flex;
    gap: 24px;
}

.footer-icons a {
    color: #0024fc;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    display: flex;
    align-items: center;
}

.footer-icons a[data-icon="instagram"] span,
.footer-icons a[data-icon="linkedin"] span {
    font-size: 18px !important;
}

.footer-icons a[data-icon="behance"] span {
    font-size: 20px !important;
}

/* =======================
   TABLET – ABOUT (FIDEL)
======================= */
@media (max-width: 1024px) {

    .about {
        padding: 32px 24px;
        height: auto;
    }

    .about-grid {
        grid-template-columns: 1fr 0.9fr 0.8fr;
        column-gap: 48px;
    }

    /* Imagen */
    .about-image {
        width: 100%;
        height: auto;
        max-height: 620px;
    }

    /* Texto */
    .about-intro {
        font-size: 22px;
        width: 100%;
        margin-top: 60px;
    }

    .about-desc {
        font-size: 16px;
        width: 100%;
    }

    .about-right {
        width: 100%;
    }

    .about-right-2 {
        margin-top: 60px;
    }
}

/* =======================
   MÓVIL – ABOUT (FIDEL)
======================= */
@media (max-width: 768px) {

.header {
        height: 40px;
        padding: 0 16px;
    }

    /* Ocultamos menú original */
    .header-center,
    .header-right {
        display: none;
    }

    /* Mostramos hamburguesa */
    .hamburger {
        display: flex;
    }

    /* Mostramos menú móvil cuando está activo */
    .mobile-menu.active {
        display: flex;
    }

    
    .about {
        padding: 35px 16px;
        height: auto;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    /* Imagen */
    .about-image {
        width: 100%;
        height: auto;
        max-height: 70vh;
        border-radius: 16px;
    }

    /* Intro */
    .about-intro {
        font-size: 20px;
        margin-top: 0px;
        margin-left: 0;
        width: 90%;
    }

    .about-desc {
        font-size: 15px;
        margin-left: 0;
        width: 95%;
    }

    /* Columnas derecha */
    .about-right,
    .about-right-2 {
        width: 100%;
        margin-top: 0;
    }

    .about-right-2 {
        margin-top: 24px;
    }

    /* Door */
    .about-door {
        margin-left: 0;
    }

    /* Bloques */
    .about-block {
        margin-bottom: 28px !important;
    }

    .about-block h3 {
        font-size: 11pt;
    }

    .about-block p {
        font-size: 9.5pt;
    }

    /* FOOTER */
    .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 33px;
        padding: 0 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-email {
        font-size: 8.5pt;
        line-height: 33px;
        white-space: nowrap;
    }

    .footer-icons {
        gap: 16px;
    }
  /* =======================
   CONTACT OVERLAY - MÓVIL
======================= */
@media (max-width: 768px) {

    .contact-card {
        width: 90%;
        max-width: 360px;
        height: auto;
        padding: 20px;
        transform: rotate(-3deg);
    }

    .contact-content {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 40px;
    }

    .contact-intro,
    .contact-follow {
        font-size: 15px;
        line-height: 1.4;
    }

    .contact-link,
    .contact-socials a {
        font-size: 14px;
    }

    .contact-close {
        font-size: 13px;
    }
}

}
