:root {
    --color-black: #000000;
    --color-yellow: #FFD700;
    --color-gold: #DAA520;
    --color-white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding-top: 0; /* Eliminado porque usas navbar fixed-top */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar Styles */
.navbar {
    background-color: var(--color-black) !important;
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    color: var(--color-yellow) !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-yellow) !important;
}

.language-selector {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    border-radius: 4px;
    padding: 5px 10px;
    margin-left: 15px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-color: var(--color-black);
    color: var(--color-black);
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin-top: 0;
    padding-top: 0;
}

.hero-section h1.display-3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--color-gold);
    margin-top: 15px;
}

.text-center .section-title:after {
    margin-left: auto;
    margin-right: auto;
}

/* Tour Cards */
.tour-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
    border: none;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tour-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.tour-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.tour-card .card-body {
    padding: 1.5rem;
}

.tour-card .card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tour-card .card-text {
    color: #666;
    margin-bottom: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-gold);
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.contact-info .bg-primary {
    background-color: var(--color-gold) !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 30px;
}

footer h4 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
}

footer a.text-white {
    text-decoration: none;
    transition: color 0.3s;
}

footer a.text-white:hover {
    color: var(--color-yellow) !important;
}

.social-icons a {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--color-yellow);
}

footer .input-group .form-control {
    border-radius: 8px 0 0 8px;
}

footer .input-group .btn {
    border-radius: 0 8px 8px 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    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;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    color: #FFF;
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-section {
        height: 70vh;
        text-align: center;
    }
    
    .hero-section h1.display-3 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .testimonial-card {
        margin: 10px 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-section h1.display-3 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-outline-dark {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .tour-card {
        margin-bottom: 20px;
    }
}

/* Animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scroll effect */
.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}