@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
:root {
    --accent-color: #F8DC63; /* Puedes cambiar este color según tus preferencias */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #C33C54, #CA5369, #CF6377 );
    color: white;
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    padding: 4rem 0;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    left: 0;
    right: 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.navbar-links {
    display: flex;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

  

/* Section Titles */
.section-title {
    margin-top: 2rem;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;

    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.sub-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;

    margin-bottom: 3rem;
    letter-spacing: -0.025em; 
}

.sub-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-section, .team-section {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

/* Paragraph Styling */
.paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}
.paragraph-1 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: slideInUp 1s ease-out;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.team-bio {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        padding-top: 4rem;
    }
    .sub-title {
        font-size: 2.5rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .paragraph-1 {
        font-size: 1.7rem;
    }
    #cursor, #cursor-border {
        display: none;
    }
    .navbar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        margin-top: 1rem;
    }
}

/* Ajuste para el contenedor de información del equipo */
.team-info {
    display: flex;
    flex-direction: column; /* Asegura que los elementos dentro del contenedor se apilen verticalmente */
    justify-content: flex-start; /* Alinea los elementos al inicio del contenedor */
    align-items: flex-start; /* Alinea los elementos al inicio de la columna */
    padding: 1.5rem;
}

/* Botón moderno */
.modern-button {
    background-color: #202221; /* Color de fondo */
    color: white; /* Color del texto */
    border: none; /* Sin bordes */
    padding: 15px 30px; /* Espaciado interno */
    font-size: 1rem; /* Tamaño de la fuente */
    font-weight: 600; /* Grosor de la fuente */
    border-radius: 50px; /* Bordes redondeados */
    cursor: pointer; /* Indicador de clic */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transiciones suaves */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
    text-transform: uppercase; /* Texto en mayúsculas */
    letter-spacing: 1px; /* Espaciado entre letras */
    text-decoration: none;
    margin-top: 20px; /* Añade espacio superior para separar el botón del texto */
}

/* Efecto hover */
.modern-button:hover {
    background-color: #414342; /* Cambio de color al pasar el ratón */
    transform: translateY(-5px); /* Efecto de levitación */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); /* Sombra más intensa al hacer hover */
}

/* Efecto al hacer clic */
.modern-button:active {
    transform: translateY(2px); /* Ligeramente hundido al hacer clic */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Sombra más suave al hacer clic */
}

  /* Footer */
  .footer {
    background-color: rgba(211, 203, 203, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Añade un borde superior para separar el footer del contenido */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Espacio entre el logo y el texto */
}

.footer-logo img {
    width: 100px; /* Ajusta el tamaño del logo */
    height: auto;
}

.footer-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Estilo responsivo */
@media (max-width: 768px) {
    .footer-text {
        font-size: 0.875rem;
    }

    .footer-logo img {
        width: 80px; /* Redimensionar logo para pantallas más pequeñas */
    }
}

#cursor {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

#cursor-border {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease-out;
}