/* ============================================
   PÁGINA NOSOTROS - ESTUDIO ENJAMBRE
   Archivo CSS independiente
   ============================================ */

/* ============================================
   TIPOGRAFÍAS
   ============================================ */


/* BuenosAires - Fuente Secundaria */
@font-face {
    font-family: 'BuenosAires';
    src: url('../Fonts/BuenosAires-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'BuenosAires';
    src: url('../Fonts/BuenosAires-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

/* ============================================
   ESTILOS BASE
   ============================================ */

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

body {
    font-family: 'Obviously', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

nav{
    width: 100%;
    height: 50px;
    background-color: black;
    border-bottom: 1px solid transparent;
    box-shadow: 1px 1px 10px 0 #1E1E1E;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: ease-in-out .5s;
}
.contenedorNav{
    display: flex;
    justify-content: space-around;
    height: 50px;
    width: 100%;
    align-items: center;
}
.whatsapp > a{
    color: var(--amarillo);
}

.iso > img{
    margin: 10px;
    height: 40px;
}

.logo{
    display: flex;
    align-items: center;
}

.logo > a > img{
    margin: 10px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-nosotros {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 120px 30px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-nosotros h1 {
    font-family: "obviously", sans-serif;
    font-size: 4em;
    font-weight: 800;
    color: #ffbc00;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-nosotros .subtitle {
    font-size: 1.5em;
    color: #fff;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Obviously', sans-serif;
}

.hero-highlight {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 6px 16px;
    border: 2px solid #ffbc00;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9em;
    margin: 5px;
    transition: all 0.3s ease;
    font-family: 'Obviously', sans-serif;
}

.hero-highlight:hover {
    background: #ffbc00;
    color: #000;
}

/* Decoración de fondo */
.hero-nosotros::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: #ffbc00;
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    padding: 100px 30px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
}

.story-grid {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: #000;
    margin-bottom: 35px;
    line-height: 1.3;
    font-family: 'Obviously', sans-serif;
}

.story-text p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.8;
    font-family: 'Obviously', sans-serif;
    text-align: left;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   EQUIPO SECTION
   ============================================ */

.team-section {
    background: #f8f9fa;
    padding: 100px 30px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3em;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Obviously', sans-serif;
}

.section-header p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.8;
    font-family: 'Obviously', sans-serif;
    font-style: italic;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #ffbc00;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.team-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
    text-align: left;
    background: #ffbc00;
}

.team-name {
    font-size: 2em;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-style: italic;
    font-family: 'BuenosAires', sans-serif;
}

.team-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team-age {
    font-size: 0.95em;
    color: #000;
    font-weight: 500;
    font-family: 'Obviously', sans-serif;
}

.team-location {
    font-size: 0.85em;
    color: #000;
    font-weight: 400;
    font-family: 'Obviously', sans-serif;
}

.team-skills-label {
    font-size: 1.1em;
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Obviously', sans-serif;
}

.team-skills {
    font-size: 0.95em;
    color: #000;
    line-height: 1.6;
    font-family: 'Obviously', sans-serif;
}

.team-superpoder {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.superpoder-label {
    font-size: 0.9em;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Obviously', sans-serif;
}

.superpoder-text {
    font-size: 0.9em;
    color: #000;
    font-style: italic;
    font-family: 'Obviously', sans-serif;
}



/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: #000;
    padding: 80px 30px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Obviously', sans-serif;
}

.cta-section .highlight {
    color: #ffbc00;
}

.cta-section p {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 35px;
    opacity: 0.9;
    font-family: 'Obviously', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Obviously', sans-serif;
}

.btn-primary {
    background: #ffbc00;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 188, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 188, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ffbc00;
}

.btn-secondary:hover {
    background: #ffbc00;
    color: #000;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-nosotros h1 {
        font-size: 3.5em;
    }

    .section-header h2 {
        font-size: 2.5em;
    }
}

/* Móviles y pantallas pequeñas */
@media (max-width: 768px) {
    /* Hero */
    .hero-nosotros {
        min-height: 60vh;
        padding: 100px 20px 60px;
    }

    .hero-nosotros h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .hero-nosotros .subtitle {
        font-size: 1.15em;
        margin-bottom: 25px;
    }

    .hero-highlight {
        font-size: 0.85em;
        padding: 5px 12px;
    }

    /* Story Section */
    .story-section {
        padding: 80px 20px;
    }

    .story-text h2 {
        font-size: 2em;
        margin-bottom: 25px;
    }

    .story-text p {
        font-size: 1.05em;
        margin-bottom: 20px;
    }

    /* Team Section */
    .team-section {
        padding: 80px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-image {
        height: 350px;
    }

    .team-name {
        font-size: 1.8em;
    }

    /* Valores Section */
    .valores-section {
        padding: 80px 20px;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .valor-card {
        padding: 35px 25px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2em;
    }

    .section-header p {
        font-size: 1.05em;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 1.8em;
        line-height: 1.3;
    }

    .cta-section p {
        font-size: 1.05em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 16px 35px;
        font-size: 1em;
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    .hero-nosotros {
        padding: 80px 15px 50px;
    }

    .hero-nosotros h1 {
        font-size: 2em;
    }

    .hero-nosotros .subtitle {
        font-size: 1em;
    }

    .story-section {
        padding: 60px 15px;
    }

    .story-text h2 {
        font-size: 1.6em;
    }

    .story-text p {
        font-size: 0.95em;
    }

    .team-section,
    .valores-section {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 1.6em;
    }

    .section-header p {
        font-size: 0.95em;
    }

    .team-image {
        height: 320px;
    }

    .team-name {
        font-size: 1.6em;
    }

    .team-info {
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 1.5em;
    }
}