/*!
 * ============================================================================
 * Iglesia Alianza Cristiana y Misionera Los Olivos
 * Version: 7.0.0
 * ============================================================================*/

.header {
    color: white;
    position: fixed;
    width: 100%;
    z-index: 3000;
}

.premium-section {
    align-items: center;
    background-color: var(--bg-body);
    display: flex;
    justify-content: center;
    min-height: 90vh;
    opacity: 0;
    overflow: hidden;
    padding: 100px 40px;
    position: relative;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.premium-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.premium-grid {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.premium-grid.reverse {
    direction: rtl;
}

.premium-grid.reverse .premium-content {
    direction: ltr;
    padding-left: 40px;
    padding-right: 0;
}

.premium-grid.reverse .premium-media {
    direction: ltr;
}

.premium-content {
    padding-right: 40px;
}

.premium-section.visible .premium-category {
    animation: slideInLeft 0.6s var(--transition-smooth) 0.1s both;
}

.premium-section.visible .premium-title {
    animation: fadeInUp 0.7s var(--transition-smooth) 0.2s both;
}

.premium-section.visible .premium-description {
    animation: fadeInUp 0.7s var(--transition-smooth) 0.3s both;
}

.premium-section.visible .premium-actions {
    animation: fadeInUp 0.7s var(--transition-smooth) 0.4s both;
}

.premium-section.visible .premium-faq {
    animation: fadeInUp 0.7s var(--transition-smooth) 0.5s both;
}

.premium-section.visible .premium-media {
    animation: scaleIn 0.8s var(--transition-bounce) 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.premium-category {
    color: var(--color-secondary);
    display: inline-block;
    font-size: var(--font-size-small);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    text-transform: uppercase;
}

.premium-category::before {
    background: var(--color-secondary);
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: width 0.3s ease;
    width: 24px;
}

.premium-title {
    color: var(--text-title);
    font-size: var(--font-size-h1);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.premium-title span {
    color: var(--color-secondary);
    display: block;
    font-size: var(--font-size-subtitle);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-top: 8px;
}

.premium-description {
    color: var(--text-paragraph);
    font-size: var(--font-size-body);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;
    opacity: 0.9;
}

.premium-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.premium-socials {
    display: flex;
    gap: 12px;
}

.premium-social-link {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 44, 127, 0.05);
    border: 1px solid rgba(0, 44, 127, 0.1);
    border-radius: 16px;
    display: flex;
    height: 48px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    width: 48px;
}

.premium-social-link::before {
    background: var(--color-secondary);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-smooth);
    width: 100%;
    z-index: 0;
}

.premium-social-link:hover::before {
    transform: translateY(0);
}

.premium-social-link img {
    height: 22px;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    width: 22px;
    z-index: 1;
}

.premium-social-link:hover img {
    transform: scale(1.1);
}

.premium-video-btn {
    align-items: center;
    background: transparent;
    border: 1.5px solid var(--color-secondary);
    border-radius: 40px;
    color: var(--color-secondary);
    cursor: pointer;
    display: inline-flex;
    font-size: var(--font-size-small);
    font-weight: 500;
    gap: 10px;
    overflow: hidden;
    padding: 14px 28px;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    z-index: 1;
}

.premium-video-btn::before {
    background: var(--color-secondary);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width 0.4s var(--transition-smooth);
    width: 0%;
    z-index: -1;
}

.premium-video-btn:hover {
    border-color: var(--color-secondary);
    color: white;
}

.premium-video-btn:hover::before {
    width: 100%;
}

.premium-video-btn svg {
    height: 18px;
    transition: transform 0.3s ease;
    width: 18px;
}

.premium-video-btn:hover svg {
    transform: translateX(4px);
}

.premium-faq {
    border-top: 1px solid rgba(0, 44, 127, 0.15);
    max-width: 520px;
    padding-top: 25px;
}

.premium-faq-title {
    color: var(--text-color);
    font-size: var(--font-size-small);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.7;
    text-transform: uppercase;
}

.premium-faq-item {
    background: var(--background-soft);
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.premium-faq-question {
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-title);
    cursor: pointer;
    display: flex;
    font-size: var(--font-size-small);
    font-weight: 600;
    justify-content: space-between;
    padding: 16px 20px;
    text-align: left;
    transition: all 0.3s var(--transition-smooth);
    width: 100%;
}

.premium-faq-question:hover {
    background: rgba(0, 44, 127, 0.03);
}

.premium-faq-question span {
    color: var(--color-secondary);
    font-size: 1.3rem;
    font-weight: 300;
    transition: transform 0.4s var(--transition-smooth);
}

.premium-faq-item.active .premium-faq-question span {
    transform: rotate(45deg);
}

.premium-faq-answer {
    background: var(--background-soft);
    color: var(--text-color);
    font-size: var(--font-size-small);
    line-height: 1.5;
    max-height: 0;
    opacity: 0.8;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.5s var(--transition-smooth);
}

.premium-faq-item.active .premium-faq-answer {
    max-height: 150px;
    padding: 0 20px 16px 20px;
}

.premium-media {
    position: relative;
}

.premium-media-wrapper {
    aspect-ratio: 1 / 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.4s var(--transition-smooth);
}

.premium-media-wrapper:hover {
    box-shadow: 0 40px 80px rgba(0, 44, 127, 0.15);
}

.wrapper-right {
    border-radius: 5px 30px 30px 5px;
}

.wrapper-left {
    border-radius: 30px 5px 5px 30px;
}

.premium-media-wrapper img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-smooth);
    width: 100%;
}

.premium-media-wrapper:hover img {
    transform: scale(1.03);
}

.premium-media-overlay {
    background: linear-gradient(135deg, rgba(0, 44, 127, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.premium-badge {
    animation: floatBadge 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: var(--background-soft);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 12px 24px;
    position: absolute;
    right: 25px;
    z-index: 2;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.premium-badge-content {
    align-items: center;
    display: flex;
    gap: 10px;
}

.premium-badge-dot {
    animation: pulse 2s ease-in-out infinite;
    background: var(--color-secondary);
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

.premium-badge-text {
    color: var(--text-title);
    font-size: var(--font-size-small);
    font-weight: 600;
}

.premium-play-btn {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    height: 70px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.4s var(--transition-smooth);
    width: 70px;
    z-index: 3;
}

.premium-media-wrapper:hover .premium-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.premium-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.premium-play-btn svg {
    fill: var(--color-secondary);
    height: 26px;
    margin-left: 4px;
    width: 26px;
}

.premium-divider {
    background: linear-gradient(90deg, transparent, rgba(0, 44, 127, 0.2), rgba(0, 44, 127, 0.3), rgba(0, 44, 127, 0.2), transparent);
    height: 1px;
    margin: 0 auto;
    max-width: 1200px;
    transform: scaleX(0);
    transition: transform 0.8s var(--transition-smooth);
}

.premium-divider.visible {
    transform: scaleX(1);
}

.video-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 1000000;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    background: #000;
    border-radius: 12px;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    width: 90%;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-body {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.video-modal-body video {
    background: #000;
    display: block;
    height: 100%;
    width: 100%;
}

.close-video-modal {
    align-items: center;
    background: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 20%;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 28px;
    font-weight: bold;
    height: 45px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    width: 45px;
    z-index: 2100;
}

.close-video-modal:hover {
    background: rgba(255, 0, 0, 1);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.swiper {
    background: #f8f9fa;
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.swiper-slide {
    height: 100%;
    position: relative;
    width: 100%;
}

.swiper-slide img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide-content {
    bottom: 40px;
    color: white;
    left: 40px;
    position: absolute;
    right: 40px;
    z-index: 2;
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content a {
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slide-content a:hover {
    border-bottom-color: white;
    padding-right: 10px;
}

.swiper-slide::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    bottom: 0;
    content: '';
    height: 60%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20%;
    color: #333;
    display: flex;
    font-size: 1rem;
    height: 40px !important;
    justify-content: center;
    opacity: 0;
    padding: 10px;
    transition: all 0.3s ease;
    width: 40px !important;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.swiper-button-next {
    right: 30px !important;
}

.swiper-button-prev {
    left: 30px !important;
}

.swiper-pagination {
    bottom: 15px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    height: 8px;
    margin: 0 4px !important;
    opacity: 1;
    transition: all 0.3s ease;
    width: 8px;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

.swiper-slide:hover img {
    transform: scale(1.03);
}

.section-principal-message {
    background: var(--main-color-nets);
    color: white;
    display: flex;
    font-size: var(--font-size-body);
    justify-content: center;
    line-height: 25px;
    min-height: 200px;
    padding: 20px;
    text-align: center;
}

.principal-message {
    margin: 0 auto;
    max-width: 1900px;
    padding: 40px;
    width: 900px;
}

@media (max-width: 1500px) {
    .header {
        animation: header-movement-short-plus both !important;
        animation-range: 5px 20px !important;
        animation-timeline: scroll() !important;
        font-family: var(--font-button);
        top: 0;
        z-index: 3000;
    }

    .slide-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 1100px) {
    .premium-grid {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .premium-section {
        padding: 80px 20px;
    }
    
    .premium-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }
    
    .premium-grid.reverse {
        direction: ltr;
    }
    
    .premium-content {
        margin: 0 auto;
        max-width: 550px;
        padding-right: 0;
        text-align: center;
    }
    
    .premium-grid.reverse .premium-content {
        padding-left: 0;
    }
    
    .premium-category {
        padding-left: 0;
    }
    
    .premium-category::before {
        display: none;
    }
    
    .premium-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .premium-actions {
        justify-content: center;
    }
    
    .premium-socials {
        justify-content: center;
    }
    
    .premium-faq {
        margin: 0 auto;
        text-align: left;
    }
    
    .premium-media {
        margin: 0 auto;
        max-width: 450px;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .slide-content {
        width: 75%;
    }

    .swiper {
        height: 70vh;
        min-height: 400px;
    }

    .swiper-slide img {
        height: 70vh;
        min-height: 400px;
    }
    
    .close-video-modal {
        font-size: 24px;
        height: 40px;
        right: 10px;
        top: 10px;
        width: 40px;
    }
}

@media (max-width: 480px) {
    .premium-section {
        padding: 60px 16px;
    }
    
    .premium-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }
    
    .premium-video-btn {
        justify-content: center;
        width: 100%;
    }
    
    .premium-badge {
        bottom: 15px;
        padding: 8px 16px;
        right: 15px;
    }
    
    .premium-play-btn {
        height: 60px;
        width: 60px;
    }
    
    .premium-play-btn svg {
        height: 22px;
        width: 22px;
    }
    
    .swiper {
        height: 60vh;
        min-height: 350px;
    }

    .swiper-slide img {
        height: 60vh;
        min-height: 350px;
    }
    
    .slide-content {
        bottom: 25px;
        left: 25px;
        right: 25px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content a {
        font-size: 0.9rem;
    }
    
    .close-video-modal {
        font-size: 20px;
        height: 35px;
        right: 8px;
        top: 8px;
        width: 35px;
    }
}

.premium-divider {
    background: linear-gradient(90deg, transparent, rgba(110, 159, 249, 0.3), rgba(110, 159, 249, 0.6), rgba(110, 159, 249, 0.3), transparent);
    height: 1px;
    margin: 30px auto;
    max-width: 1200px;
    overflow: visible;
    position: relative;
    transform: scaleX(0);
    transition: transform 0.8s var(--transition-smooth);
}

.premium-divider.visible {
    transform: scaleX(1);
}

#creciendo-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 154, 139, 0.2), rgba(255, 106, 136, 0.4), rgba(255, 154, 139, 0.2), transparent);
}

#creciendo-net + .premium-divider .divider-path {
    display: flex;
    justify-content: space-around;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#creciendo-net + .premium-divider.visible .divider-path {
    opacity: 1;
}

#creciendo-net + .premium-divider .divider-path span {
    animation: growDots 2s ease-in-out infinite;
    background: #FF9A8B;
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

#creciendo-net + .premium-divider .divider-path span:nth-child(2) { animation-delay: 0.2s; background: #FF6A88; }
#creciendo-net + .premium-divider .divider-path span:nth-child(3) { animation-delay: 0.4s; background: #FF99AC; }
#creciendo-net + .premium-divider .divider-path span:nth-child(4) { animation-delay: 0.6s; background: #FF9A8B; }
#creciendo-net + .premium-divider .divider-path span:nth-child(5) { animation-delay: 0.8s; background: #FF6A88; }

@keyframes growDots {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); }
}

#adn-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(0, 201, 255, 0.2), rgba(146, 254, 157, 0.4), rgba(0, 201, 255, 0.2), transparent);
    height: 2px;
}

#adn-net + .premium-divider .divider-path {
    display: flex;
    justify-content: space-evenly;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#adn-net + .premium-divider.visible .divider-path {
    opacity: 0.8;
}

#adn-net + .premium-divider .divider-path i {
    animation: dnaTwist 3s ease-in-out infinite;
    background: linear-gradient(to bottom, #00C9FF, #92FE9D);
    height: 20px;
    transform: rotate(15deg);
    width: 2px;
}

#adn-net + .premium-divider .divider-path i:nth-child(even) {
    animation-delay: 0.5s;
    transform: rotate(-15deg);
}

@keyframes dnaTwist {
    0%, 100% { transform: rotate(15deg) scaleY(1); }
    50% { transform: rotate(25deg) scaleY(1.2); }
}

#jovenes-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(127, 0, 255, 0.15), rgba(225, 0, 255, 0.3), rgba(127, 0, 255, 0.15), transparent);
}

#jovenes-net + .premium-divider .divider-path {
    align-items: center;
    display: flex;
    justify-content: space-around;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#jovenes-net + .premium-divider.visible .divider-path {
    opacity: 0.9;
}

#jovenes-net + .premium-divider .divider-path span {
    animation: soundWave 1.5s ease-in-out infinite;
    background: #7F00FF;
    border-radius: 2px;
    height: 4px;
    width: 4px;
}

#jovenes-net + .premium-divider .divider-path span:nth-child(1) { animation-delay: 0s; height: 15px; }
#jovenes-net + .premium-divider .divider-path span:nth-child(2) { animation-delay: 0.2s; height: 25px; }
#jovenes-net + .premium-divider .divider-path span:nth-child(3) { animation-delay: 0.4s; height: 35px; }
#jovenes-net + .premium-divider .divider-path span:nth-child(4) { animation-delay: 0.6s; height: 25px; }
#jovenes-net + .premium-divider .divider-path span:nth-child(5) { animation-delay: 0.8s; height: 15px; }

@keyframes soundWave {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.5); }
}

#axion-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(0, 44, 127, 0.2), rgba(74, 144, 226, 0.4), rgba(0, 44, 127, 0.2), transparent);
}

#axion-net + .premium-divider .divider-path {
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#axion-net + .premium-divider.visible .divider-path {
    opacity: 1;
}

#axion-net + .premium-divider .divider-path .line-glow {
    animation: executiveGlow 3s ease-in-out infinite;
    background: white;
    border-radius: 4px;
    filter: blur(5px);
    height: 4px;
    width: 80px;
}

@keyframes executiveGlow {
    0%, 100% { opacity: 0.3; width: 80px; }
    50% { opacity: 0.8; width: 150px; }
}

#damas-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.2), rgba(255, 105, 180, 0.3), rgba(255, 182, 193, 0.2), transparent);
}

#damas-net + .premium-divider .divider-path {
    display: flex;
    justify-content: space-around;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#damas-net + .premium-divider.visible .divider-path {
    opacity: 0.7;
}

#damas-net + .premium-divider .divider-path .curve {
    animation: gentleWave 4s ease-in-out infinite;
    border: 2px solid rgba(255, 182, 193, 0.6);
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

#damas-net + .premium-divider .divider-path .curve:nth-child(2) { animation-delay: 0.5s; }
#damas-net + .premium-divider .divider-path .curve:nth-child(3) { animation-delay: 1s; }

@keyframes gentleWave {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

#varones-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(44, 62, 80, 0.2), rgba(52, 152, 219, 0.3), rgba(44, 62, 80, 0.2), transparent);
}

#varones-net + .premium-divider .divider-path {
    display: flex;
    justify-content: space-around;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#varones-net + .premium-divider.visible .divider-path {
    opacity: 0.8;
}

#varones-net + .premium-divider .divider-path .angle {
    animation: anglePulse 3s ease-in-out infinite;
    border-bottom: 2px solid #3498DB;
    border-right: 2px solid #2C3E50;
    height: 20px;
    transform: rotate(45deg);
    width: 20px;
}

#varones-net + .premium-divider .divider-path .angle:nth-child(2) { animation-delay: 0.4s; }
#varones-net + .premium-divider .divider-path .angle:nth-child(3) { animation-delay: 0.8s; }

@keyframes anglePulse {
    0%, 100% { opacity: 0.4; transform: rotate(45deg) scale(1); }
    50% { opacity: 0.8; transform: rotate(90deg) scale(1.2); }
}

#matrimonios-jovenes-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.25), rgba(255, 107, 107, 0.15), transparent);
    height: 2px;
}

#matrimonios-jovenes-net + .premium-divider .divider-path {
    display: flex;
    gap: 40px;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#matrimonios-jovenes-net + .premium-divider.visible .divider-path {
    opacity: 1;
}

#matrimonios-jovenes-net + .premium-divider .divider-path .line {
    animation: meetAndPart 4s ease-in-out infinite;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    height: 2px;
    transform-origin: center;
    width: 60px;
}

#matrimonios-jovenes-net + .premium-divider .divider-path .line:first-child { animation-delay: 0s; }
#matrimonios-jovenes-net + .premium-divider .divider-path .line:last-child { animation-delay: 0.2s; }

@keyframes meetAndPart {
    0%, 100% { opacity: 0.4; transform: scaleX(1) translateX(0); }
    25% { opacity: 1; transform: scaleX(1.3) translateX(10px); }
    50% { opacity: 0.6; transform: scaleX(1) translateX(20px); }
    75% { opacity: 1; transform: scaleX(1.3) translateX(10px); }
}

#matrimonios-adultos-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.2), rgba(142, 68, 173, 0.3), rgba(155, 89, 182, 0.2), transparent);
}

#matrimonios-adultos-net + .premium-divider .divider-path {
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#matrimonios-adultos-net + .premium-divider.visible .divider-path {
    opacity: 0.9;
}

#matrimonios-adultos-net + .premium-divider .divider-path .infinity {
    animation: infinitySpin 6s linear infinite;
    color: #9B59B6;
    font-size: 32px;
    line-height: 1;
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

@keyframes infinitySpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#adultos-mayores-net + .premium-divider {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), rgba(170, 140, 48, 0.25), rgba(212, 175, 55, 0.15), transparent);
}

#adultos-mayores-net + .premium-divider .divider-path {
    display: flex;
    justify-content: space-around;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 5;
}

#adultos-mayores-net + .premium-divider.visible .divider-path {
    opacity: 0.7;
}

#adultos-mayores-net + .premium-divider .divider-path .leaf {
    animation: leafFloat 5s ease-in-out infinite;
    background: linear-gradient(135deg, #D4AF37, #AA8C30);
    border-radius: 100% 0 100% 0;
    height: 15px;
    width: 15px;
}

#adultos-mayores-net + .premium-divider .divider-path .leaf:nth-child(2) { animation-delay: 0.5s; }
#adultos-mayores-net + .premium-divider .divider-path .leaf:nth-child(3) { animation-delay: 1s; }
#adultos-mayores-net + .premium-divider .divider-path .leaf:nth-child(4) { animation-delay: 1.5s; }

@keyframes leafFloat {
    0%, 100% { opacity: 0.5; transform: translateY(0) rotate(0deg); }
    25% { opacity: 0.8; transform: translateY(-5px) rotate(5deg); }
    50% { opacity: 1; transform: translateY(5px) rotate(-5deg); }
    75% { opacity: 0.8; transform: translateY(-2px) rotate(2deg); }
}

@media (max-width: 900px) {
    .premium-divider .divider-path {
        display: none !important;
    }
}