/* public/css/nosotros.css */
body.nosotros-body-scope { /* Clase para evitar conflictos si index.css es muy global */
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nosotros-page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #050505; /* Un negro muy sutilmente diferente para la página */
}

.nosotros-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-link-nosotros {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.logo-icon-nosotros {
    height: 35px;
    width: auto;
    margin-right: 10px;
}

.logo-text-nosotros {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
}

.logo-text-nosotros .gradient-text {
    font-size: 1.75rem; /* X un poco más grande */
}


.back-home-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #333;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.back-home-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #555;
}

.nosotros-main-content {
    flex-grow: 1;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-nosotros {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #1f1f1f;
}

.hero-nosotros h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* Tamaño de fuente adaptable */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.hero-nosotros h1 span{
    font-size: clamp(2rem, 5vw, 3rem); /* Tamaño de fuente adaptable */
    font-weight: 700;
    margin-bottom: 10px;
}
.hero-nosotros .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto;
}

.founder-story-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #0d0d0d;
    border-radius: 12px;
}

.founder-image-placeholder {
    flex-shrink: 0;
}
.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2a2a2a;
}

.founder-text-content {
    text-align: left;
}

.founder-text-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.founder-text-content p {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
    line-height: 1.8;
}
.founder-text-content strong {
    color: #e0e0e0;
    font-weight: 600;
}

.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
}

.mission-vision-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    border-left: 3px solid; /* Usar el gradiente para el borde */
    padding-left: 10px;
    border-image: linear-gradient(to bottom, #8A2BE2, #4A00E0, #00D4FF) 1;
}

.mission-vision-section p {
    font-size: 0.95rem;
    color: #b3b3b3;
}


.collaboration-contact-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #0d0d0d;
    border-radius: 12px;
    margin-bottom: 40px;
}

.collaboration-contact-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.collaboration-contact-section p {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 25px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0077B5; /* Color oficial de LinkedIn */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
}

.linkedin-button:hover {
    background-color: #005E8E; /* Un poco más oscuro */
    transform: translateY(-2px);
}

.nosotros-footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #1a1a1a;
    color: #7a7a7a;
    font-size: 0.875rem;
}

.footer-nav-nosotros {
    margin-top: 10px;
}

.footer-link-nosotros {
    color: #7a7a7a;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}

.footer-link-nosotros:hover {
    color: #b3b3b3;
}

@media (min-width: 768px) {
    .founder-story-section {
        flex-direction: row;
        text-align: left;
        gap: 50px;
    }
    .founder-text-content h2 {
        text-align: left;
    }
    .founder-image-placeholder {
        margin-bottom: 0;
    }
    .mission-vision-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nosotros-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    .logo-text-nosotros {
        font-size: 1.3rem;
    }
    .logo-text-nosotros .gradient-text {
        font-size: 1.9rem;
    }
    .hero-nosotros h1 {
        font-size: 1.8rem;
    }
    .hero-nosotros h1 span {
        font-size: 1.8rem;
    }

    .hero-nosotros .subtitle {
        font-size: 0.9rem;
    }
    .founder-text-content h2, .collaboration-contact-section h2 {
        font-size: 1.5rem;
    }
    .founder-image {
        width: 150px;
        height: 150px;
    }
}
