/* ==========================================================================
   TRAVEL GUIDE HUB STYLES (css/travel-guide.css)
   ========================================================================== */

/* Hero Section */
.guide-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.guide-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.guide-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.guide-hero__content {
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.guide-hero__badge {
    display: inline-block;
    background-color: var(--gold-color, #c5a86a);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.guide-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.guide-hero__desc {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ==========================================================================
   BREADCRUMBS (Migas de pan)
   ========================================================================== */
.breadcrumbs {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.breadcrumbs__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumbs a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--gold-color, #c5a86a);
}

.breadcrumbs__separator {
    color: #cccccc;
    font-size: 0.75rem;
}

.breadcrumbs__current {
    color: #1a1a1a;
    font-weight: 600;
}

/* Guide Layout */
.guide-layout {
    padding: 80px 0;
    background-color: #faf9f6; /* Soft luxury background */
}

.guide-layout__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.guide-section-title span {
    color: var(--gold-color, #c5a86a);
    font-style: italic;
}

/* Grid layout for Cards */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Editorial Cards */
.guide-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.guide-card__img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.guide-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.guide-card:hover .guide-card__img {
    transform: scale(1.08);
}

.guide-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(26, 26, 26, 0.85);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.guide-card__content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guide-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.guide-card__excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.guide-card__link {
    color: var(--gold-color, #c5a86a);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.guide-card:hover .guide-card__link i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Support Section */
.guide-support {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.guide-support h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--gold-color, #c5a86a);
}

.guide-support p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .guide-hero__title { font-size: 2.5rem; }
    .guide-grid { grid-template-columns: 1fr; }
    .guide-support { padding: 40px 20px; }
}

/* Ajuste para que el botón largo no desborde en móviles */
.guide-support .btn {
    max-width: 100%;
    white-space: normal; /* Permite que el texto salte a la siguiente línea */
    height: auto; /* Ajusta la altura si el texto ocupa dos líneas */
    line-height: 1.4;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (max-width: 480px) {
    .guide-support .btn {
        width: 100%; /* Hace que el botón se vea completo y proporcionado en celulares */
    }
}

/* ==========================================================================
   EDITORIAL ARTICLE LAYOUT
   ========================================================================== */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.editorial-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.editorial-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--gold-color, #c5a86a);
    margin: 30px 0 15px;
}

.editorial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.editorial-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.editorial-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.editorial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold-color, #c5a86a);
    text-align: center;
    margin: 40px 0;
    padding: 0 40px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .article-container {
        padding: 30px 20px;
    }
    .editorial-content h2 {
        font-size: 1.8rem;
    }
    .editorial-quote {
        font-size: 1.5rem;
        padding: 0 10px;
    }
}

/* ==========================================================================
   ULTRA PRO FESTIVITIES GRID (LIGHT LUXURY THEME)
   ========================================================================== */
.festivities-ultra-layout {
    padding: 80px 0 100px;
    background-color: #faf9f6; /* Se funde perfectamente con el resto de la web */
}

.festivities-header-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #4a4a4a; /* Texto oscuro elegante */
    font-size: 1.2rem;
    line-height: 1.8;
}

.festivities-header-text strong {
    color: #1a1a1a;
}

.ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.ultra-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 420px;
    display: block;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Sombra suave para fondo claro */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transition: box-shadow 0.4s ease;
}

.ultra-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Sombra más profunda al pasar el cursor */
}

.ultra-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.ultra-card__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente oscuro interno para que el texto blanco siempre se lea */
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    transition: background 0.5s ease;
}

.ultra-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    transform: translateY(calc(100% - 100px)); 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ultra-card:hover .ultra-card__content {
    transform: translateY(0);
}

.ultra-card:hover .ultra-card__img {
    transform: scale(1.1);
}

.ultra-card:hover .ultra-card__gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.3) 100%);
}

.ultra-date {
    color: var(--gold-color, #c5a86a);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.ultra-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ultra-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ultra-card:hover .ultra-desc {
    opacity: 1;
}

.ultra-btn {
    display: inline-block;
    color: #1a1a1a;
    background-color: var(--gold-color, #c5a86a);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.3s;
}

.ultra-card:hover .ultra-btn {
    opacity: 1;
    transform: translateY(0);
}

.ultra-btn:hover {
    background-color: #fff;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .ultra-card__content {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 100%);
        padding: 20px;
    }
    .ultra-desc, .ultra-btn {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   EVENT QUICK FACTS (Ficha Técnica de Festividades)
   ========================================================================== */
.event-facts {
    background: #faf9f6;
    border-left: 4px solid var(--gold-color, #c5a86a);
    padding: 25px;
    margin: 0 0 40px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.event-fact-item {
    flex: 1;
    min-width: 200px;
}

.event-fact-item span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.event-fact-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.event-fact-item i {
    color: var(--gold-color, #c5a86a);
    margin-right: 8px;
}

/* ==========================================================================
   EDITORIAL INLINE IMAGES (Fotos dentro del artículo)
   ========================================================================== */
.article-inline-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0 15px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.article-img-caption {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   THE LUXURY DIFFERENCE - ZIG ZAG LAYOUT
   ========================================================================== */
.difference-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.difference-container {
    max-width: 1200px;
    margin: 0 auto;
}

.difference-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.difference-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.difference-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Zig-Zag Rows */
.diff-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

/* Invierte el orden en filas pares para el efecto Zig-Zag */
.diff-row:nth-child(even) {
    flex-direction: row-reverse;
}

.diff-text {
    flex: 1;
    min-width: 300px;
}

.diff-text .diff-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold-color, #c5a86a);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}

.diff-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.diff-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.diff-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.diff-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .diff-row, .diff-row:nth-child(even) {
        flex-direction: column-reverse; /* El texto siempre va abajo en móvil */
        gap: 30px;
        margin-bottom: 60px;
    }
    .difference-intro h2 { font-size: 2.5rem; }
    .diff-text h3 { font-size: 1.8rem; }
}
/* ==========================================================================
   LEGAL & PRIVACY POLICY PAGES
   ========================================================================== */
.legal-content h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    color: #1a1a1a;
}

.legal-last-updated {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: block;
}

/* ==========================================================================
   CONTACT PAGE - CONCIERGE DESK LAYOUT
   ========================================================================== */
.contact-section {
    padding: 100px 20px;
    background-color: #faf9f6;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-details-block {
    margin-bottom: 40px;
}

.contact-details-block h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-color, #c5a86a);
    margin-bottom: 12px;
}

.contact-details-block p, 
.contact-details-block a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    transition: color 0.3s ease;
}

.contact-details-block a:hover {
    color: var(--gold-color, #c5a86a);
}

/* El Formulario Único VIP */
.contact-form-area {
    flex: 1.2;
    min-width: 300px;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.vip-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.vip-form .form-group {
    flex: 1;
    margin-bottom: 30px;
}

.vip-form .form-row .form-group {
    margin-bottom: 0;
}

.vip-form label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-color, #c5a86a); /* Color dorado */
    margin-bottom: 8px;
    font-weight: 600;
}

.vip-form label i {
    margin-right: 8px;
    font-size: 0.95rem;
}

.vip-form input, 
.vip-form select, 
.vip-form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    color: #1a1a1a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vip-form input:focus, 
.vip-form select:focus, 
.vip-form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold-color, #c5a86a);
}

.vip-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-form-area { padding: 40px 20px; }
    .contact-info h2 { font-size: 2.8rem; }
    .vip-form .form-row { flex-direction: column; gap: 30px; }
}

.contact-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-socials a:hover {
    background-color: var(--gold-color, #c5a86a);
    transform: translateY(-3px);
    color: #fff;
}

.contact-socials img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1); /* Vuelve el icono SVG blanco */
}