/* Estilos para la sección de Referidos */
.referidos-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.referidos-header {
    text-align: center;
    margin-bottom: 60px;
}

.seccion-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.seccion-titulo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFD700;
}

.seccion-subtitulo {
    font-size: 1.1rem;
    color: #ccc;
    margin: 1rem 0 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.referidos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.referido-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.referido-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.referido-icono {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.referido-card h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.referido-card p {
    color: #ccc;
    line-height: 1.6;
}

.referido-enlace {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.referido-enlace h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.input-group {
    max-width: 600px;
    margin: 0 auto;
}

.input-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 50px;
}

.input-group-append .btn {
    background: #FFD700;
    color: #000;
    font-weight: 600;
    border-color: #FFD700;
    height: 50px;
    padding: 0 25px;
}

/* Enlace de registro/login */
.referido-registro {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.referido-registro:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.referido-registro a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.referido-registro a:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    color: #000 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.referido-registro a:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Efecto de brillo al pasar el ratón */
.referido-registro a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: 0.5s;
}

.referido-registro a:hover::before {
    left: 100%;
}

/* Efecto de pulso para el botón */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.referido-registro a.pulse {
    animation: pulse 2s infinite;
}

/* Estilo para el icono dentro del botón */
.referido-registro a i {
    margin-right: 10px;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.referido-registro a:hover i {
    transform: translateX(5px);
}

.login-prompt {
    margin-top: 20px;
    color: #ccc;
    font-size: 0.95rem;
    text-align: center;
}

.login-link {
    color: #FFD700 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline;
    padding: 0;
    background: none;
    border: none;
}

.login-link:hover {
    color: #fff !important;
    text-decoration: underline;
}

.referido-login {
    margin-top: 25px;
    color: #bbb;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.referido-login a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.referido-login a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.referido-login a:hover {
    color: #fff;
    text-decoration: none;
}

.referido-login a:hover::after {
    width: 100%;
}

/* =========== Estilos para la sección CTA ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    min-width: 280px;
}

/* Botón principal */
.cta-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Botón secundario */
.cta-secondary {
    background: transparent;
    color: #FFD700 !important;
    border: 2px solid #FFD700;
    padding: 14px 30px;
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.cta-secondary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.1);
}

/* Efecto de brillo al pasar el ratón */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

/* Iconos de los botones */
.cta-button i {
    margin-right: 10px;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Texto debajo de los botones */
.cta-text {
    color: #bbb;
    margin-top: 25px;
    font-size: 1rem;
}

.cta-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-text a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.cta-text a:hover {
    color: #fff;
}

.cta-text a:hover::after {
    width: 100%;
}

/* Efecto de pulso para el botón principal */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.cta-primary.pulse {
    animation: pulse 2s infinite;
}

/* =========== Estilos para la sección de Beneficios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.beneficio-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.beneficio-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.beneficio-icono {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.beneficio-item h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.beneficio-item p {
    color: #aaa;
    line-height: 1.6;
}

/* Estilos para el FAQ */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.faq-pregunta {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item:first-child .faq-pregunta {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.faq-pregunta:hover {
    background: rgba(0, 0, 0, 0.3);
}

.faq-pregunta h4 {
    color: #FFD700;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-pregunta i {
    color: #FFD700;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    will-change: max-height;
    padding: 0 20px;
}

.faq-respuesta p {
    margin: 0;
    padding: 15px 0 20px;
    color: #ddd;
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Estilo para ítem activo */
.faq-item.activo .faq-respuesta {
    max-height: 500px; /* Ajusta según sea necesario */
}

.faq-item.activo .faq-pregunta i {
    transform: rotate(180deg);
}

/* Asegurar que el primer ítem esté abierto por defecto */
.faq-item:first-child .faq-respuesta {
    max-height: 500px;
    padding: 0 20px;
}

.faq-item:first-child .faq-pregunta i {
    transform: rotate(180deg);
}

/* Estilo para el hover en las preguntas */
.faq-pregunta:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Estilos para el botón de compartir */
#compartirRedes {
    margin-top: 20px;
    background: #FFD700;
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

#compartirRedes:hover {
    background: transparent;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Estilos para el botón de copiar */
#copiarEnlace {
    transition: all 0.3s ease;
}

#copiarEnlace:hover {
    background: #000;
    color: #FFD700;
    border-color: #FFD700;
}

/* Estilos para la sección de Nosotros */
.nosotros-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.nosotros-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nosotros-header {
    text-align: center;
    margin-bottom: 60px;
}

.nosotros-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.nosotros-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.nosotros-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nosotros-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.nosotros-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #FFD700, #D4AF37);
    transition: all 0.4s ease;
}

.nosotros-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nosotros-card-title i {
    font-size: 2rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.nosotros-card:hover .nosotros-card-title i {
    transform: scale(1.2);
}

.nosotros-card p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
}

.nosotros-card p::before {
    content: '»';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.nosotros-cta {
    text-align: center;
    margin-top: 60px;
}

.nosotros-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2100 !important;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%) !important;
    border: none !important;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nosotros-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4) !important;
}

.nosotros-btn:active {
    transform: translateY(-1px);
}

/* Efecto de partículas doradas */
.nosotros-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ===== Estilos para las secciones ===== */
.seccion-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.seccion-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.seccion-subtitulo {
    color: #aaa;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

/* Estilos para Testimonios */
.testimonio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonio-tarjeta {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
}

.testimonio-tarjeta:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonio-texto {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonio-texto::before {
    content: '"\201C"';
    font-size: 4rem;
    position: absolute;
    left: -15px;
    top: -20px;
    color: rgba(255, 215, 0, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonio-imagen {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FFD700;
}

.testimonio-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-info h4 {
    color: #FFD700;
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.testimonio-info p {
    color: #aaa;
    margin: 0;
    font-size: 0.9rem;
}

/* Estilos para Estadísticas */
.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.estadistica-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.estadistica-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.estadistica-valor {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.estadistica-etiqueta {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin: 0;
}

/* Estilos para Características */
.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.caracteristica-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
    text-align: center;
}

.caracteristica-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.caracteristica-icono {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.caracteristica-item:hover .caracteristica-icono {
    background: #FFD700;
    color: #1a1a1a;
    transform: scale(1.1);
}

.caracteristica-titulo {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.caracteristica-descripcion {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Estilos para Preguntas Frecuentes */
.faq-contenedor {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-pregunta {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.faq-pregunta:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-pregunta i {
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.activo .faq-pregunta i {
    transform: rotate(180deg);
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-item.activo .faq-respuesta {
    padding: 20px 25px;
    max-height: 500px;
}

/* Responsivo */
@media (max-width: 768px) {
    .nosotros-hero {
        padding: 80px 0 60px;
    }
    
    .nosotros-title {
        font-size: 2.5rem;
    }
    
    .nosotros-card {
        padding: 30px 20px;
    }
    
    .nosotros-card-title {
        font-size: 1.6rem;
    }
    
    .nosotros-card p {
        font-size: 1rem;
    }
    
    .nosotros-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nosotros-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.nosotros-card:nth-child(1) { animation-delay: 0.1s; }
.nosotros-card:nth-child(2) { animation-delay: 0.3s; }
.nosotros-card:nth-child(3) { animation-delay: 0.5s; }
.nosotros-card:nth-child(4) { animation-delay: 0.7s; }
.nosotros-card:nth-child(5) { animation-delay: 0.9s; }
