/* 
   Propuesta de Diseño:
   - Estilo: Minimalista Moderno
   - Paleta Principal: Azul (#005A8D), Naranja (#FF6F61)
   - Paleta Secundaria: Gris Claro (#F5F5F5), Gris Oscuro (#333333)
   - Tipografía Títulos: Poppins
   - Tipografía Cuerpo: Lato
*/

body {
    font-family: 'Lato', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #005A8D;
}

/* --- Secciones Generales --- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.destinos-section {
    padding: 4rem 0;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destino-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.destino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destino-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destino-card-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.destino-card-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* --- Paquetes Section --- */
.paquetes-section {
    padding: 4rem 0;
    background-color: #F8F9FA; /* Color de fondo suave */
}

.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.paquete-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paquete-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.paquete-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.paquete-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.paquete-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.paquete-card-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.paquete-card-content p {
    flex-grow: 1;
}

.btn-secondary {
    background-color: transparent;
    color: #005A8D;
    border: 2px solid #005A8D;
    align-self: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #005A8D;
    color: #FFFFFF;
}

/* --- Testimonios Section --- */
.testimonios-section {
    padding: 4rem 0;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonio-card {
    background-color: #F8F9FA;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #005A8D;
}

.testimonio-card p {
    margin-top: 0;
    font-style: italic;
}

.testimonio-card h4 {
    text-align: right;
    font-style: normal;
    color: #333;
}

/* --- Form Page Section --- */
.form-page-section {
    padding: 4rem 0;
    background-color: #F8F9FA; /* Light background for the section */
}

.form-page-section .section-title,
.form-page-section .section-subtitle {
    color: #005A8D; /* Ensure titles are visible on light background */
}

.form-container {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.form-group label {
    color: #333333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #005A8D;
    box-shadow: 0 0 0 0.2rem rgba(0, 90, 141, 0.25);
    outline: none;
}

/* --- Contact Page --- */
.contact-page {
    position: relative;
    color: #fff;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1534536281715-e28d76689b4d?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -1;
}

.contact-content {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    color: #fff;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-container label {
    color: #333;
}

/* --- Hero Section --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    /* Placeholder image from Unsplash */
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header --- */
.site-header {
    background-color: #FFFFFF;
    padding: 1rem 0;
    border-bottom: 1px solid #F5F5F5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    color: #005A8D;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #FF6F61;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: #FF6F61;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #E65A50;
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Footer --- */
.site-footer {
    background-color: #005A8D;
    color: #FFFFFF;
    padding: 3rem 0 0;
}

.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.site-footer h4 {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
}

.site-footer a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #FF6F61;
}

.footer-column ul {
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 90, 141, 0.95);
        display: flex; /* Changed from flex-direction */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .main-nav li {
        margin: 1.5rem 0;
    }

    .main-nav a {
        color: #FFFFFF;
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 1001; /* Ensure it's above the nav */
    }

    .desktop-only {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}