:root {
    --primary-color: #E86200;
    /* Christmas Red */
    --secondary-color: #165B33;
    /* Christmas Green */
    --accent-color: #F8B229;
    /* Gold */
    --text-dark: #333333;
    --light-bg: #f8f9fa;
    --fondo-navidad: #D60000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../imagenes/hero_party.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-whatsapp {
    background-color: #128C7E;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    color: white;
    background-color: #1ebe57;
}

/* Section Titles */
.section-title {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    color: #3703a7;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* ESTILO DE LISTA*/
.list-unstyled {
	padding-left: 0;
	list-style: none;
	text-align: left;
}
.lead{
    text-align:left;
    font-weight:300 !important;
}
    

/* Product Grid */
.product-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-body {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.btn-product {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-product:hover {
    background-color: #b01b1d;
    color: white;
    border: none;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: opacity 0.3s;
}

.gallery-img:hover {
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background-color: var(--fondo-navidad);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: #222;
    color: #eee;
    padding: 40px 0 20px;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-popup.show {
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-popup-content {
    background: #fff;
    color: #000;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
    border-top: 5px solid var(--secondary-color);
}

.whatsapp-popup.show .whatsapp-popup-content {
    transform: translateY(0);
}

.btn-close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ea2a2a;
    transition: color 0.3s;
}

.btn-close-popup:hover {
    color: #333;
}

/* Logos */
.hero-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    /* Mobile Grid: 2 columns */
    .row-cols-2-mobile>* {
        flex: 0 0 auto;
        width: 50%;
    }
}
/* Refacciones Intro Section - Centrar botón */
.bg-light .col-md-6:last-child {
    text-align: center;
}

.bg-light .col-md-6:last-child .section-title {
    text-align: start;
}
