:root {
    --primary-color: #d4a574;
    --secondary-color: #e8b44f;
    --accent-color: #c17a3a;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../img/tour/3ponedera.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideUp 1s ease-out;
}

.whatsapp-contact {
    position: fixed;
    bottom: 25px;
    /* left: 130px; */
    left: 10px;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-contact i {
    font-size: 22px;
}

.whatsapp-contact:hover {
    background-color: #20b358;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}



/* Button Animations */
.btn {
    transition: all 0.3s ease;
    color: var(--bg-tesoro-rojo-claro);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--bg-tesoro-amarillo);
}

/* Input Focus */
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 180, 79, 0.25);
}

/* --- CONTENEDOR GENERAL --- */
.sidebar-area .widget {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.widget_title {
    font-size: 22px;
    font-weight: 700;
    color: #3e261a;
    margin-bottom: 20px;
    position: relative;
}

.widget_title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--bg-tesoro-amarillo);
    margin-top: 6px;
    border-radius: 10px;
}

/* --- DISEﾃ前 DE TARJETAS (MISMO PARA AMBAS SECCIONES) --- */
.info-card,
.activity-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item,
.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
}

.info-item i,
.activity-item i {
    font-size: 30px;
    color: var(--bg-tesoro-rojo-claro);
    min-width: 35px;
    transition: 0.3s ease;
}

.info-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #3e261a;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.activity-item p {
    font-size: 15px;
    color: #3e261a;
    margin: 0;
}

/* --- EFECTOS HOVER --- */
.info-item:hover,
.activity-item:hover {
    background: var(--bg-tesoro-amarillo);
    color: #fff;
    transform: translateY(-2px);
}

.info-item:hover i,
.activity-item:hover i {
    color: #fff;
}

.info-item:hover h4,
.info-item:hover p,
.activity-item:hover p {
    color: #fff;
}

/* --- CONTACTO --- */
.widget_contact {
    background: linear-gradient(135deg, #3e261a 0%, #6b462d 100%);
    color: #fff;
    text-align: center;
    border-radius: 15px;
    padding: 30px 20px;
}

.contact-banner h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #a7d30c;
}

.contact-banner p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #f2f2f2;
}

.contact-info a {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 6px;
    text-decoration: none;
}

.contact-info i {
    margin-right: 8px;
    color: #a7d30c;
}



@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .treasure-card-img {
        height: 200px;
    }

    .carousel-item img {
        height: 300px;
    }

    .whatsapp-contact {
        position: fixed;
        left: 20px !important;
        /* bottom: 100px !important; */
    }

    /* .whatsapp-contact span {
        display: none;
    } */
}