/* === RESET BÁSICO === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

/* === HEADER === */

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* === LOGO === */

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1F3A4D;
    text-decoration: none;
    letter-spacing: 1px;
}

/* === NAV LINKS === */

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #1F3A4D;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: #C6A75E;
    transition: 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* === LANGUAGE SELECTOR === */

.lang-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-selector a {
    text-decoration: none;
    font-size: 0.85rem;
    color: #1F3A4D;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: 0.3s;
}

.lang-selector a:hover {
    background-color: #C6A75E;
    color: #F8F5F0;
}

body {
     background-color: #F8F5F0;
     color: #1F3A4D;
     line-height: 1.6;
}

/* ===== ALT DESTINATIONS ===== */

.alt-destinations {
    padding: 3rem 2rem;
    background-color: #F8F5F0; /* mismo fondo */
}

.alt-box {
    border-top: 4px solid #dfb160; /* más grueso arriba */
    border-radius: 10px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    background: white;
}

.alt-box h2 {
    text-align: center;
}

.alt-box p {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* FORM */
.alt-box .form-group {
    margin-bottom: 1rem;
}

.alt-box input,
.alt-box select {
    width: 100%;
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.alt-box button {
    margin-top: 1rem;
    width: 100%;
}

/* === ANIMACIONES === */
.fade-section {
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-section.visible {
     opacity: 1;
     transform: translateY(0);
}

.step {
     opacity: 0;
     transform: translateY(30px);
}

.step.show {
     animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
     to {
         opacity: 1;
         transform: translateY(0);
    }
}

/* === TIPOGRAFÍA === */
h1, h2, h3 {
     font-family: 'Playfair Display', serif;
     color: white;
     margin-bottom: 1rem;
}

h2, h3 {
     font-family: 'Playfair Display', serif;
     color: #1F3A4D;
     margin-bottom: 1rem;
}

p {
     margin-bottom: 1rem;
     text-align: justify;
}

/* === HERO === */
.hero {
     height: 90vh;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: #F8F5F0;
     position: relative;
}

.hero-content h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
}

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

.btn-primary {
     background-color: #dfb160;
     color: #F8F5F0;
     padding: 0.75rem 2rem;
     text-decoration: none;
     font-weight: bold;
     text-transform: uppercase;
     border: none;
     border-radius: 5px;
     transition: 0.3s;
}

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

/* === SECCIONES === */
section {
     padding: 4rem 2rem;
}

.benefits, .options, .checklists, .cta-final {
     background-color: #E6D8C3;
     margin: 2rem;
     border-radius: 10px;
     padding: 2rem 1rem;
     text-align: center;
}
.benefits h1 {
    color: #1F3A4D;
}
/* === GRID PASOS === */
.step-grid, .option-grid, .checklist-grid {
     display: grid;
     gap: 1rem;
     margin-top: 2rem;
}

.step-grid {
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.steps h2 {
     text-align: center;
}

.step-grid h3 {
     color: #F8F5F0;
}

.step {
     background-color: #c4654d;
     color: #F8F5F0;
     padding: 1.5rem;
     border-radius: 10px;
     box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.option-grid, .checklist-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* === OPTIONS === */
.option {
     background: #F8F5F0;
     padding: 2rem;
     border-top: 4px solid #dfb160;
     border-radius: 10px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.option h3 {
     margin-bottom: 1.5rem;
     color: #1F3A4D;
}

.option-btn {
     display: inline-block;
     background: #1F3A4D;
     color: white;
     padding: 0.7rem 1.6rem;
     border-radius: 10px;
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(31,58,77,0.2);
}

.option-btn:hover {
     background: #dfb160;
     color: #1F3A4D;
     transform: translateY(-2px);
}

/* === CHECKLISTS === */
.checklists {
     background-color: #1F3A4D;
     color: #F8F5F0;
     padding: 1.5rem;
     border-radius: 10px;
     box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
     margin-top: 100px;
     margin-bottom: 100px;
     max-width: 900px;
     margin: 100px auto;
}

.checklist {
     background-color: #F8F5F0;
     color: #1F3A4D;
     padding: 1.5rem;
     border-radius: 10px;
     box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.checklists h2 {
     background-color: #1F3A4D;
     color: #F8F5F0;
}

/* === FORMULARIO DE SUSCRIPCIÓN === */
.checklist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.checklist-form input[type="email"] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
}

/*.checklist-form button {
    background-color: #dfb160;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}*/

.checklist-form button:hover {
    background-color: #C67B5C;
    color: #F8F5F0;
}

/* === CALENDARIO VIDEOLLAMADAS === */
#calendar-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

/* === POPUP CALENDARIO === */

.calendar-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);

    align-items: center;
    justify-content: center;
}

.calendar-modal-content {
    background: #F8F5F0;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    position: relative;
}

.close-calendar {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* === CTA FINAL === */
.cta-final {
     background-color: #E6D8C3;
     color: #dfb160;
     text-align: center;
}

.cta-final h2 {
     color: #F8F5F0;
     text-align: center;
}

.cta-final .btn-primary {
     background-color: #dfb160;
}

.cta-final .btn-primary:hover {
     background-color: #C67B5C;
}

/* === RESPONSIVE HOME === */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* ===== ABOUT PAGE ===== */

.about-hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../img/about/about-bg.jpg') center/cover;
    color: #F8F5F0;
    text-align: center;
    padding: 6rem 2rem;
}

.container-hero {
    margin-top: 8rem;
}

/* GRID HISTORIA */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* VALORES */
.about-values {
    background: #E6D8C3;
    padding: 3rem 2rem;
    margin: 2rem;
    border-radius: 10px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-top: 4px solid #c4654d;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* PROCESO */
.about-proccess {
    margin: 2rem;
} 
.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.process-card {
    flex: 1;
    background: #1F3A4D;
    color: #F8F5F0;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.process-card span {
    font-size: 2rem;
    color: #dfb160;
    font-weight: bold;
}

.process-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* CTA */
.about-cta {
    background: #E6D8C3;
    margin: 2rem;
    border-radius: 10px;
    color: #F8F5F0;
    text-align: center;
    padding: 5rem 2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
    background: linear-gradient(120deg, #1c2b39, #2f4f6f);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 0.3rem;
}

.contact-form button {
    margin-top: 1rem;
}

.contact-info {
    padding: 1rem;
}

.info-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.highlight {
    border-left: 4px solid #dfb160;
}

.outline-btn {
    background: transparent;
    border: 1px solid #dfb160;
    border-radius: 10px;
    color: #dfb160;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
}

.trust {
    margin-top: 2rem;
}

/* CTA contacto */
.contact-cta {
    background: #1F3A4D;
    color: #F8F5F0;
    text-align: center;
    padding: 4rem 2rem;
}

/* RESPONSIVE CONTACT */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MOVE PAGE (SIN CONFLICTOS) ===== */

/* Ajuste hero para que no quede tapado por header */
.hero {
    margin-top: 80px;
}

/* Centrado de textos en secciones nuevas */
.options h2,
.steps h2,
.benefits h2 {
    text-align: center;
}

/* Espaciado extra consistente */
.options,
.steps,
.benefits {
    margin: 2rem;
}


/* Hover suave adicional */
.step:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* ===== INVEST PAGE (VARIACIÓN VISUAL) ===== */

/* HERO DIFERENTE */
.hero-invest {
    background: linear-gradient(rgba(31,58,77,0.7), rgba(31,58,77,0.7)),
                url('/images/invest.jpg') center/cover;
}

/* SECCIONES MÁS SOBRIAS */
.invest-section {
    background-color: #E6D8C3;
}

/* STEPS DIFERENTES */
.invest-step {
    background-color: #1F3A4D;
    color: #F8F5F0;
}

.invest-step h3 {
    color: #dfb160;
}

/* BENEFITS */
.invest-benefits {
    background-color: #E6D8C3;
}

.invest-cta h2 {
    color: #F8F5F0;
}

.invest-cta .btn-primary:hover {
    background-color: #C67B5C;
    color: #F8F5F0;
}

.footer {
    background-color: #1F3A4D; /* azul profundo */
    color: #F5F1E8;
    padding: 60px 20px 30px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #dfb160;
}
.footer-col h3, .footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.footer-logo {
    font-size: 24px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #F5F1E8;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #dfb160;
}

.footer-col ul li a:hover {
    color: #C6A75E;
}

/*resposive footer*/
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}