﻿/* CSS personalizado específico para las secciones expandibles */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1B4B8C 0%, #7CB342 100%);
    color: white;
    border-color: transparent;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(27, 75, 140, 0.25);
}

.step-number {
    background: linear-gradient(135deg, #1B4B8C 0%, #7CB342 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.video-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #6c757d;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #6c757d;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 1rem 0;
}

.pad-section{
    padding-top:140px;
}

/* Aplicar el mismo patrón de bolitas del landing */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 2px, transparent 2px), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Cambiar el fondo del hero para que se vean las bolitas */
.hero-section {
    background: linear-gradient(135deg, #1B4B8C 0%, #2980B9 100%) !important;
    min-height: 40vh;
}

    /* Asegurar que el texto se vea bien sobre el fondo azul */
    .hero-section h1,
    .hero-section .lead {
        color: white !important;
    }

    .hero-section .badge {
        background: rgba(255, 255, 255, 0.2) !important;
        color: white !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hero-section .btn-primary {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        color: white;
        backdrop-filter: blur(10px);
    }

        .hero-section .btn-primary:hover {
            background: white;
            color: #1B4B8C;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

    .hero-section .btn-outline-primary {
        border: 2px solid rgba(255, 255, 255, 0.7);
        color: white;
        background: transparent;
    }

        .hero-section .btn-outline-primary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            color: white;
            transform: translateY(-2px);
        }

/* CSS personalizado específico para las secciones expandibles */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1B4B8C 0%, #7CB342 100%);
    color: white;
    border-color: transparent;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(27, 75, 140, 0.25);
}

.step-number {
    background: linear-gradient(135deg, #1B4B8C 0%, #7CB342 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.video-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #6c757d;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #6c757d;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Optimización para capturas de móvil */
.mobile-screenshot {
    max-height: 400px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}