:root {
    --primary-color: #25d366;
    /* WhatsApp Green */
    --secondary-color: #FFFF00;
    /* Yellow for highlights */
    --bg-color: #0A140A;
    /* Dark Green/Black background from original */
    --text-color: #e0e0e0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: transparent;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.4);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(10, 20, 10, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);

    /* Opción 1: Cinzel - Elegante y mística */
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;

    /* Opción 2: UnifrakturMaguntia - Gótica medieval
    font-family: 'UnifrakturMaguntia', cursive;
    letter-spacing: 1px;
    */

    /* Opción 3: Uncial Antiqua - Estilo antiguo/celta
    font-family: 'Uncial Antiqua', cursive;
    letter-spacing: 1px;
    */
}

.nav-links a {
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
    color: #fff;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid #333;
}

.hero img.main-eye {
    max-width: 100%;
    width: 600px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.3));
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Grid */
.services {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-card img {
    margin: 0 auto 15px;
    max-height: 100px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #fff;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1ebc57;
}

/* Footer */
footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.float-wa:hover {
    transform: scale(1.1);
}

/* Animación flotante para el cartel navideño */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Cartel Navideño - Desktop (flotante) */
#cartel-navidad {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99;
    max-width: 253px;
    width: 253px;
    animation: float 3s ease-in-out infinite;
}

.cartel-navidad-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s;
}

.cartel-navidad-img:hover {
    transform: scale(1.05);
}
/* Cartel Semana Santa */
#cartel-semana-santa {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.cartel-semana-santa-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s;
}

.cartel-semana-santa-img:hover {
    transform: scale(1.05);
}


/* Carrusel de Imágenes */
.carousel-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto 40px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    padding: 20px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(37, 211, 102, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(37, 211, 102, 1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 10;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

.dot2 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot2.active,
.dot2:hover {
    background-color: var(--primary-color);
}

.dot3 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot3.active,
.dot3:hover {
    background-color: var(--primary-color);
}

.dot4 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot4.active,
.dot4:hover {
    background-color: var(--primary-color);
}

.dot5 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot5.active,
.dot5:hover {
    background-color: var(--primary-color);
}

.dot6 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot6.active,
.dot6:hover {
    background-color: var(--primary-color);
}

.dot7 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot7.active,
.dot7:hover {
    background-color: var(--primary-color);
}

/* Contenido de Amor */
.amor-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.amor-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.amor-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.amor-content ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    padding: 0;
}

.amor-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.amor-content ul li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        margin: 0;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .float-wa {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    /* Cartel Navideño - Mobile (tarjeta centrada) */
    #cartel-navidad {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        max-width: 100% !important;
        animation: none !important;
        padding: 20px 0;
        background: rgba(0, 0, 0, 0.3);
    }

    .cartel-navidad-img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }

    /* Cartel Semana Santa - Mobile */
    #cartel-semana-santa {
        max-width: 100% !important;
    }

    .cartel-semana-santa-img {
        max-width: 95%;
    }


    .carousel-container {
        padding: 15px;
    }

    .carousel {
        height: 350px;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .dot {
        height: 12px;
        width: 12px;
    }

    .dot2 {
        height: 12px;
        width: 12px;
    }

    .dot3 {
        height: 12px;
        width: 12px;
    }

    .dot4 {
        height: 12px;
        width: 12px;
    }

    .dot5 {
        height: 12px;
        width: 12px;
    }

    .dot6 {
        height: 12px;
        width: 12px;
    }

    .dot7 {
        height: 12px;
        width: 12px;
    }

    .amor-content {
        padding: 20px;
    }

    .amor-content h3 {
        font-size: 1.4rem;
    }

    .amor-content p {
        font-size: 1rem;
    }
}