/* ========================================
   RiFortuna - Estilos Principales
   ======================================== */

/* Variables CSS */
:root {
    --primary-color: #00D190;
    --primary-dark: #00b87a;
    --secondary-color: #09152D;
    --text-dark: #000;
    --text-light: #fff;
    --text-muted: #555;
    --bg-light: #f4f6f9;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #128C7E;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Header y Navegación
   ======================================== */
header {
    background-color: var(--text-light);
}

.navbar {
    padding: 0.5rem 2rem;
}

.navbar-brand img {
    max-width: 100%;
    height: auto;
}

.logo {
    width: 100px;
    height: auto;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
    text-decoration: none;
}

.navbar-nav .btn-primary {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.navbar-nav .btn-outline-light {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.navbar-toggler-icon {
    background-color: var(--text-light);
}

/* ========================================
   Banner y Carrusel
   ======================================== */
.banner {
    position: relative;
    height: 100vh;
}

.carousel {
    background-color: #000;
}

.carousel-inner img {
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Sección de Rifas
   ======================================== */
#rifas {
    margin-top: -150px;
}

.progress-bar {
    background-color: var(--secondary-color) !important;
}

/* Tarjetas de Rifas */
.rifa-card {
    height: 100%;
}

.rifa-card .card-body {
    height: 100%;
}

.btn-comprar {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-comprar:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.price-tag {
    font-size: 13px;
}

.brand-highlight {
    color: var(--primary-color);
}

/* ========================================
   Sección Intro Rifas (Index)
   ======================================== */
.rifas-intro {
    max-width: 800px;
    margin: 0 auto;
}

.rifas-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.rifas-intro-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00b87a);
    border-radius: 2px;
}

.rifas-intro-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.intro-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.intro-feature i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #00b87a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 209, 144, 0.3);
}

.intro-feature span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.intro-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #1a3a5c);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin: 0;
}

.intro-cta i {
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@media (max-width: 767px) {
    .rifas-intro-title {
        font-size: 1.8rem;
    }

    .rifas-intro-content {
        padding: 25px 20px;
    }

    .intro-features {
        gap: 25px;
    }

    .intro-feature i {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .intro-feature span {
        font-size: 0.85rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .intro-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ========================================
   Sección Intro Ganadores
   ======================================== */
#ganadores-intro .info-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 0 10px 10px 0;
}

#ganadores-intro .check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

#ganadores-intro .check-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#ganadores-intro .check-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

#ganadores-intro .highlight-box {
    background: linear-gradient(135deg, var(--secondary-color), #1a3a5c);
    color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

#ganadores-intro .highlight-box .brand-highlight {
    color: var(--primary-color);
}

/* ========================================
   Sección de Ganadores
   ======================================== */
.ganadores-section {
    background: linear-gradient(180deg, #0a1628 0%, #142d4c 100%);
    padding: 60px 0;
}

.ganadores-section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.ganadores-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00b87a);
    border-radius: 2px;
}

.ganador-card {
    background: linear-gradient(145deg, #1a3a5c 0%, #0d2137 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 209, 144, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 350px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 209, 144, 0.25);
}

.ganador-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 209, 144, 0.25);
}

.ganador-card img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.ganador-card h4 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 15px;
}

.ganador-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.ganador-card p strong {
    color: #fff;
}

.ganador-card .badge {
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.ganador-card .badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), #00b87a) !important;
    box-shadow: 0 4px 15px rgba(0, 209, 144, 0.5);
    color: #fff;
}

.ganador-card .badge.bg-warning {
    background: linear-gradient(135deg, #ffc107, #ffca2c) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
}

/* Ganador cards - Móvil */
@media (max-width: 767px) {
    .ganador-card {
        background: linear-gradient(145deg, #1e4468 0%, #132d47 100%);
        border: 2px solid rgba(0, 209, 144, 0.4);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5),
                    0 0 20px rgba(0, 209, 144, 0.15);
        margin-bottom: 25px;
    }

    .ganadores-section .row {
        gap: 15px;
    }
}

/* ========================================
   Página Metodología
   ======================================== */
.metodologia-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.metodologia-intro h4 {
    color: var(--secondary-color);
    font-weight: 700;
}

.metodologia-steps {
    background: #fff;
}

.metodologia-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.metodologia-step:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), #00b87a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 209, 144, 0.3);
}

.step-content h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.step-example {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid #e9ecef;
}

.step-example .check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.step-example .check-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.step-example .check-list li i {
    color: var(--primary-color);
}

.step-note {
    font-style: italic;
    color: #666;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    background-size: 3px 100%;
    background-repeat: no-repeat;
    padding-left: 15px;
}

.lottery-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.lottery-item {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, var(--secondary-color), #1a3a5c);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.lottery-digits {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.lottery-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.garantias-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid var(--primary-color);
}

.garantias-box h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.garantias-box h6 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.garantias-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.garantia-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.garantia-item i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.garantia-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

.considerations-list {
    list-style: none;
    padding-left: 0;
}

.considerations-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.considerations-list li:last-child {
    border-bottom: none;
}

.considerations-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.considerations-list li span {
    color: #555;
    line-height: 1.6;
}

.metodologia-footer {
    background: linear-gradient(135deg, var(--secondary-color), #1a3a5c);
}

.final-message {
    color: #fff;
}

.final-message p {
    opacity: 0.9;
}

.final-message h4 {
    font-weight: 700;
}

/* Metodología Responsive */
@media (max-width: 767px) {
    .metodologia-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .step-number {
        margin-bottom: 15px;
    }

    .step-note {
        background: none;
        padding-left: 0;
        border-top: 3px solid var(--primary-color);
        padding-top: 10px;
    }

    .lottery-info {
        flex-direction: column;
    }

    .garantias-grid {
        flex-direction: column;
    }

    .considerations-list li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    background: var(--secondary-color);
}

.main-footer a {
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    max-width: 150px;
}

/* Logos legales (Coljuegos y 18+) */
.footer-logos-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logos-legal .logo-coljuegos {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logos-legal .logo-18 {
    height: 45px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .footer-logos-legal {
        gap: 20px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .footer-logos-legal .logo-coljuegos {
        height: 40px;
    }

    .footer-logos-legal .logo-18 {
        height: 35px;
    }
}

/* ========================================
   Botón WhatsApp Flotante
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-color);
    color: var(--text-light);
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    font-size: 30px;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: var(--whatsapp-hover);
    color: var(--text-light);
}

/* ========================================
   Estilos de Contenido
   ======================================== */
.section-title {
    font-weight: bold;
}

/* FAQ Styles */
#faq h5 {
    color: var(--text-dark);
}

#faq p {
    color: var(--text-muted);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 768px) {
    .banner {
        display: block;
    }

    .banner-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .banner {
        display: none;
    }

    .banner-mobile {
        display: block;
    }

    #rifas {
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .logo {
        width: 80px;
        height: auto;
    }
}

/* ========================================
   Sección Nuestro Equipo - Estilo Facebook
   ======================================== */
.equipo-section {
    background-color: var(--bg-light);
}

.equipo-card {
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 20px;
}

.equipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.equipo-cover {
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    border-radius: 10px 10px 0 0;
}

.equipo-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--text-light);
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    background: var(--text-light);
}

.equipo-info {
    padding-top: 70px;
    padding-bottom: 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipo-info h5 {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.equipo-info .cargo {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.equipo-info .bio-preview {
    font-size: 0.85rem;
    color: #666;
    padding: 0 15px;
    flex: 1;
}

.ver-perfil-btn {
    background: var(--bg-light);
    color: var(--text-dark);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 15px;
    transition: background 0.3s;
}

.ver-perfil-btn:hover {
    background: #e4e6e9;
}

/* ========================================
   Página de Perfil - Estilo Facebook
   ======================================== */
.perfil-header {
    background: var(--text-light);
    box-shadow: var(--shadow);
}

.perfil-cover {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 10px 10px;
    position: relative;
}

.perfil-avatar-container {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.perfil-avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 5px solid var(--text-light);
    object-fit: cover;
    background: var(--text-light);
}

.perfil-nombre-section {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 20px;
}

.perfil-nombre-section h1 {
    font-weight: bold;
    margin-bottom: 5px;
}

.perfil-nombre-section .cargo {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.perfil-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid #e4e6e9;
    margin-top: 15px;
}

.perfil-stat {
    text-align: center;
}

.perfil-stat .numero {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.perfil-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.perfil-nav {
    border-top: 1px solid #e4e6e9;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.perfil-nav-item {
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.perfil-nav-item:hover,
.perfil-nav-item.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.perfil-content {
    background: var(--bg-light);
    min-height: 400px;
    padding: 20px 0;
}

.perfil-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.perfil-card h5 {
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e6e9;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.info-item i {
    width: 25px;
    color: var(--text-muted);
}

.info-item span {
    color: var(--text-dark);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-muted);
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

@media (max-width: 767px) {
    .perfil-cover {
        height: 200px;
    }

    .perfil-avatar {
        width: 130px;
        height: 130px;
    }

    .perfil-avatar-container {
        bottom: -65px;
    }

    .perfil-nombre-section {
        padding-top: 75px;
    }

    .perfil-stats {
        gap: 15px;
    }

    .equipo-cover {
        height: 80px;
    }

    .equipo-avatar {
        width: 100px;
        height: 100px;
        bottom: -50px;
    }

    .equipo-info {
        padding-top: 60px;
    }
}

/* ========================================
   Página Nosotros
   ======================================== */

/* Hero Section */
.nosotros-hero {
    background: linear-gradient(135deg, var(--secondary-color), #1a3a5c);
    color: #fff;
}

.nosotros-hero .section-title {
    color: #fff;
    font-size: 2.5rem;
}

.nosotros-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Valores Section */
.nosotros-valores {
    background: var(--bg-light);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.valor-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.valor-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #00b380);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.valor-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.valor-card h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.valor-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.nosotros-mensaje {
    background: linear-gradient(135deg, var(--secondary-color), #1a3a5c);
    padding: 30px 40px;
    border-radius: 15px;
    color: #fff;
}

.nosotros-mensaje .lead {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question > i:first-child {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 35px;
    text-align: center;
}

.faq-question span {
    flex: 1;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.faq-arrow {
    color: #adb5bd;
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px 25px 75px;
    color: #555;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.faq-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: gap 0.3s ease;
}

.faq-link:hover {
    color: #00b380;
    gap: 12px;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(0, 209, 144, 0.1), rgba(0, 209, 144, 0.05));
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 15px;
}

/* Nosotros Responsive */
@media (max-width: 991px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .nosotros-hero .section-title {
        font-size: 2rem;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .valor-card {
        padding: 25px 20px;
    }

    .valor-icon {
        width: 60px;
        height: 60px;
    }

    .valor-icon i {
        font-size: 1.5rem;
    }

    .nosotros-mensaje {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question > i:first-child {
        font-size: 1.1rem;
        width: 30px;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px 20px 50px;
    }
}

/* ========================================
   Footer - Certificaciones y +18
   ======================================== */
.certification-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-restriction-badge {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border: 3px solid #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    transition: transform 0.3s ease;
}

.age-restriction-badge:hover {
    transform: scale(1.05);
}

.age-restriction-badge i {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2px;
}

.age-restriction-badge .age-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.legal-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .age-restriction-badge {
        width: 60px;
        height: 60px;
    }

    .age-restriction-badge i {
        font-size: 1rem;
    }

    .age-restriction-badge .age-number {
        font-size: 1.1rem;
    }

    .certification-badge img {
        max-height: 50px !important;
    }

    .certification-logos-container {
        gap: 10px !important;
    }

    .certification-item img {
        height: 35px !important;
    }
}

/* Contenedor de logos de certificación */
.certification-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.certification-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
