/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #7d2d47 0%, #5a1f33 50%, #4a1929 100%);
    min-height: 100vh;
    color: #fff;
}

/* Barra de navegación */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    background-color: rgba(212, 175, 55, 0.1);
}

/* Sección principal */
.main-section {
    margin-top: 80px;
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 160px);
}

/* Logo ornamentado */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-ornament {
    text-align: center;
    position: relative;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    font-style: italic;
}

.ornamental-circle {
    width: 200px;
    height: 200px;
    border: 4px solid #d4af37;
    border-radius: 50%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
}

/* Ornamentos alrededor del círculo */
.ornamental-circle::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border: 2px dashed #d4af37;
    border-radius: 50%;
    opacity: 0.6;
    animation: rotate 20s linear infinite;
}

.ornamental-circle::after {
    content: '❦ ❦ ❦ ❦ ❦ ❦ ❦ ❦';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transform: rotate(0deg);
    animation: rotate-reverse 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.cross-symbol {
    font-size: 3rem;
    color: #d4af37;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.anniversary {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    letter-spacing: 3px;
}

/* Sección de imagen */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.group-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid #d4af37;
    transition: transform 0.3s ease;
}

.group-image:hover {
    transform: scale(1.02);
}

/* Diseño responsivo */
@media (max-width: 968px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .ornamental-circle {
        width: 150px;
        height: 150px;
    }
    
    .ornamental-circle::before {
        width: 180px;
        height: 180px;
    }
    
    .ornamental-circle::after {
        width: 210px;
        height: 210px;
        font-size: 1rem;
    }
    
    .cross-symbol {
        font-size: 2rem;
    }
    
    .anniversary {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .ornamental-circle {
        width: 120px;
        height: 120px;
    }
    
    .ornamental-circle::before {
        width: 150px;
        height: 150px;
    }
    
    .ornamental-circle::after {
        width: 180px;
        height: 180px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-section {
        margin-top: 120px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .anniversary {
        font-size: 1.5rem;
    }
}


/* Sección Nosotros */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #5a1f33 0%, #7d2d47 50%, #4a1929 100%);
    min-height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Video Section */
.video-section {
    position: relative;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid #000;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.video_poster {
    width: 20%;
    height: 20%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: rgba(212, 175, 55, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 3px;
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100%;
    min-height: 350px;
    justify-content: space-between;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(125, 45, 71, 0.2);
}

.info-card:last-child {
    border-bottom: none;
}

.icon-container {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 45, 71, 0.1);
    border-radius: 50%;
}

.info-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Iconos personalizados */
/* Icono de pergamino */
.icon-scroll {
    position: relative;
    width: 25px;
    height: 30px;
}

.scroll-top, .scroll-bottom {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 12px;
}

.scroll-body {
    width: 25px;
    height: 24px;
    background: #f8f9fa;
    border: 2px solid #2c3e50;
    margin: 1px 0;
    position: relative;
}

.scroll-lines {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: repeating-linear-gradient(
        transparent,
        transparent 2px,
        #2c3e50 2px,
        #2c3e50 2.5px
    );
}

/* Icono de target */
.icon-target {
    position: relative;
    width: 30px;
    height: 30px;
}

.target-ring {
    position: absolute;
    border: 2px solid #2c3e50;
    border-radius: 50%;
}

.ring1 {
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}

.ring2 {
    width: 22px;
    height: 22px;
    top: 4px;
    left: 4px;
}

.ring3 {
    width: 14px;
    height: 14px;
    top: 8px;
    left: 8px;
}

.target-center {
    width: 4px;
    height: 4px;
    background: #2c3e50;
    border-radius: 50%;
    position: absolute;
    top: 13px;
    left: 13px;
}

/* Icono de engranajes */
.icon-gears {
    position: relative;
    width: 30px;
    height: 30px;
}

.gear {
    position: absolute;
    border: 2px solid #2c3e50;
    border-radius: 50%;
    background: #f8f9fa;
}

.gear1 {
    width: 18px;
    height: 18px;
    top: 0;
    left: 0;
    animation: rotate-gear 4s linear infinite;
}

.gear2 {
    width: 13px;
    height: 13px;
    top: 10px;
    left: 17px;
    animation: rotate-gear-reverse 3s linear infinite;
}

.gear-tooth {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #2c3e50;
    border-radius: 1px;
}

.gear1 .gear-tooth:nth-child(1) { top: -1px; left: 7px; }
.gear1 .gear-tooth:nth-child(2) { top: 2px; right: -1px; }
.gear1 .gear-tooth:nth-child(3) { bottom: -1px; right: 7px; }
.gear1 .gear-tooth:nth-child(4) { bottom: 2px; left: -1px; }
.gear1 .gear-tooth:nth-child(5) { top: 7px; right: -1px; }
.gear1 .gear-tooth:nth-child(6) { top: 7px; left: -1px; }

.gear2 .gear-tooth:nth-child(1) { top: -1px; left: 5px; }
.gear2 .gear-tooth:nth-child(2) { right: -1px; top: 5px; }
.gear2 .gear-tooth:nth-child(3) { bottom: -1px; right: 5px; }
.gear2 .gear-tooth:nth-child(4) { left: -1px; bottom: 5px; }

@keyframes rotate-gear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-gear-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Responsive para sección Nosotros */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .video-container {
        min-height: 280px;
    }
    
    .info-section {
        padding: 25px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.3rem;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .icon-container {
        margin-bottom: 8px;
        width: 40px;
        height: 40px;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-container {
        min-height: 220px;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        font-size: 1.2rem;
    }
    
    .info-content h3 {
        font-size: 1rem;
    }
    
    .info-content p {
        font-size: 0.8rem;
    }
}

/* Sección Eventos */
.events-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7d2d47 0%, #5a1f33 50%, #4a1929 100%);
    min-height: 100vh;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
}

.events-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

/* Logo ornamentado lateral */
.events-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.events-logo-ornament {
    text-align: center;
    position: relative;
    padding: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.events-logo-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    font-style: italic;
}

.events-ornamental-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
}

.events-ornamental-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed #d4af37;
    border-radius: 50%;
    opacity: 0.4;
    animation: rotate 15s linear infinite;
}

.events-cross-symbol {
    font-size: 2rem;
    color: #d4af37;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.events-anniversary {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    letter-spacing: 2px;
}

/* Tarjetas de eventos */
.events-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.event-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-img {
    transform: scale(1.1);
}

.event-info {
    padding: 25px;
    text-align: center;
}

.event-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.event-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.event-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.event-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive para sección Eventos */
@media (max-width: 1024px) {
    .events-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .events-logo-ornament {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .events-cards {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.logo-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 20%;
    border: .0px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .events-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-logo-title {
        font-size: 2rem;
    }
    
    .events-ornamental-circle {
        width: 100px;
        height: 100px;
    }
    
    .events-ornamental-circle::before {
        width: 120px;
        height: 120px;
    }
    
    .events-cross-symbol {
        font-size: 1.5rem;
    }
    
    .events-anniversary {
        font-size: 1.5rem;
    }
    
    .event-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 60px 20px;
    }
    
    .events-logo-ornament {
        padding: 30px;
    }
    
    .events-logo-title {
        font-size: 1.8rem;
    }
    
    .events-ornamental-circle {
        width: 80px;
        height: 80px;
    }
    
    .events-ornamental-circle::before {
        width: 100px;
        height: 100px;
    }
    
    .events-anniversary {
        font-size: 1.3rem;
    }
    
    .event-info {
        padding: 20px;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* Modal para información de eventos */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.event-modal.modal-active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.event-modal.modal-active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #7d2d47, #5a1f33);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #d4af37;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.modal-body h3 {
    font-family: 'Cinzel', serif;
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body li {
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.modal-body li:before {
    content: '✠';
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-body li:last-child {
    border-bottom: none;
}

/* Responsive para modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .modal-body p {
        font-size: 0.95rem;
    }
}

/* Sección Nuestro Equipo */
.team-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #5a1f33 0%, #7d2d47 50%, #4a1929 100%);
    min-height: 100vh;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-carousel-container {
    position: relative;
    margin-top: 40px;
}

/* Carrusel */
.team-carousel {
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
}

.team-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

/* Tarjetas de miembros */
.team-member-card {
    flex: 0 0 250px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.member-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.member-role {
    color: #d4af37;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Controles de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4af37;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Animación de entrada */
.team-member-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.team-member-card:nth-child(1) { animation-delay: 0.1s; }
.team-member-card:nth-child(2) { animation-delay: 0.2s; }
.team-member-card:nth-child(3) { animation-delay: 0.3s; }
.team-member-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para sección Equipo */
@media (max-width: 1024px) {
    .team-member-card {
        flex: 0 0 220px;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .team-carousel {
        padding: 20px;
    }
    
    .team-member-card {
        flex: 0 0 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
    
    .member-info {
        padding: 15px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 20px;
    }
    
    .team-carousel {
        padding: 15px;
    }
    
    .team-member-card {
        flex: 0 0 180px;
    }
    
    .member-image {
        height: 160px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -10px;
    }
    
    .carousel-next {
        right: -10px;
    }
}

/* Sección Galería */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7d2d47 0%, #5a1f33 50%, #4a1929 100%);
    min-height: 100vh;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Filtros de categorías */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Grid de galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Overlay de información */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    align-self: flex-end;
    background: rgba(212, 175, 55, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    transform: translateY(0);
}

.gallery-info {
    color: #fff;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #d4af37;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    color: #fff;
    margin-top: 20px;
    padding: 0 20px;
}

.lightbox-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.lightbox-info p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Controles del lightbox */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 3001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Responsive para galería */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-filters {
        gap: 15px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .lightbox-container {
        padding: 30px 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .lightbox-container {
        padding: 20px 15px;
    }
    
    .lightbox-img {
        max-height: 70vh;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 50%, #0d1520 100%);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Logo del footer */
.footer-logo-ornament {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    font-style: italic;
}

.footer-ornamental-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
}

.footer-ornamental-circle::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px dashed #d4af37;
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.footer-cross-symbol {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
}

.footer-anniversary {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-top: 15px;
    letter-spacing: 1px;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 20px;
}

/* Títulos y enlaces */
.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d4af37;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '▶';
    color: #d4af37;
    margin-right: 8px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #d4af37;
    transform: translateX(10px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Información de contacto */
.contact-info {
    margin-bottom: 15px;
    color: #bdc3c7;
    line-height: 1.5;
}

.contact-label {
    color: #d4af37;
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
}

/* WhatsApp Contact */
.whatsapp-contact {
    margin-top: 25px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #20c157);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20c157, #1ea851);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn span {
    font-size: 0.95rem;
}

/* Divisor */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 40px 0;
}

/* Footer inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-subtitle {
    color: #d4af37;
    font-style: italic;
    margin-top: 5px !important;
    font-size: 0.85rem !important;
}

.footer-year {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.current-year {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.anniversary-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive para footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-year {
        align-items: center;
    }
    
    .whatsapp-btn {
        align-self: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-logo-title {
        font-size: 1.5rem;
    }
    
    .footer-ornamental-circle {
        width: 60px;
        height: 60px;
    }
    
    .footer-ornamental-circle::before {
        width: 80px;
        height: 80px;
    }
    
    .footer-cross-symbol {
        font-size: 1.2rem;
    }
    
    .footer-anniversary {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}