.row
/* ========================================
   CORRECCIÓN DE ESTILOS DEL HEADER
   ======================================== */

/* Proteger el header del CSS de Bootstrap */
.site-header .container {
    width: min(1100px, 92vw) !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
}

.site-header .header-wrap {
    padding: 12px 0 !important;
}

/* ========================================
   ESTILOS PERSONALIZADOS PARA TURISMO
   Complementa Bootstrap con estilos mejorados
   ======================================== */

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d99;
    --light-bg: #f8f9fa;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ========================================
   VARIABLES GLOBALES
   ======================================== */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ========================================
   SECCIÓN HERO
   ======================================== */
.hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a52 0%, #0066cc 50%, #1f6f8f 100%);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="wave" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M0,60 Q30,30 60,60 T120,60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></pattern></defs><rect width="1200" height="600" fill="url(%23wave)"/></svg>');
    opacity: 0.5;
    animation: wave-animation 10s linear infinite;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(120px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.1;
}

.hero-section .display-4 {
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SECCIÓN INTRODUCCIÓN
   ======================================== */
.intro-section {
    padding: 60px 0;
}

.intro-section h2 {
    color: #003d99;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-section .img-container {
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
    transition: var(--transition);
    overflow: hidden;
}

.intro-section .img-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.25);
}

.intro-section .img-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   SECCIÓN MUSEO
   ======================================== */
.museo-section {
    padding: 60px 0;
    background: #fff;
}

.museo-section h2 {
    color: #003d99;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.museo-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #003d99);
    border-radius: 2px;
}

.museo-section h3 {
    color: #003d99;
    font-weight: 600;
}

.museum-text {
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .museum-text {
        column-count: 1;
    }
}

/* ========================================
   TARJETAS DE CARACTERÍSTICAS
   ======================================== */
.feature-card {
    background: white;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #003d99);
    transform: translateX(-100%);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
    border-color: #0066cc;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card i {
    font-size: 2.5rem;
    color: #0066cc;
    transition: var(--transition);
}

.feature-card:hover i {
    color: #003d99;
    transform: scale(1.1);
}

.feature-card h4 {
    color: #003d99;
    font-weight: 600;
    margin: 15px 0;
}

/* ========================================
   SECCIÓN GALERÍA
   ======================================== */
.gallery-section {
    padding: 60px 0;
}

.gallery-section h2 {
    color: #003d99;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #003d99);
}

.gallery-item {
    overflow: hidden;
    height: 300px;
    position: relative;
    background: #e0e0e0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ========================================
   SECCIÓN LUGARES PARA VISITAR
   ======================================== */
.places-section {
    padding: 60px 0;
}

.places-section h2 {
    color: #003d99;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.places-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #003d99);
}

.place-card {
    transition: var(--transition);
    overflow: hidden;
    border-radius: 12px;
}


.place-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25) !important;
}



.place-card:hover .card-img-top {
    transform: scale(1.05);
}

.place-card .card-title {
    color: #003d99;
    font-weight: 600;
    font-size: 1.1rem;
}

.place-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.place-card .btn-outline-primary {
    transition: var(--transition);
    border-radius: 6px;
    font-weight: 500;
}

.place-card .btn-outline-primary:hover {
    background-color: #0066cc;
    border-color: #0066cc;
    transform: translateX(4px);
}

/* ========================================
   SECCIÓN FULLDAY
   ======================================== */
.fullday-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0ff 100%);
}

.fullday-section h2 {
    color: #003d99;
    font-weight: 700;
    margin-bottom: 20px;
}

.fullday-section p {
    font-size: 1.05rem;
    color: #555;
}

.fullday-section img {
    transition: var(--transition);
    border-radius: 12px;
    aspect-ratio: 1;
    object-fit: cover;
}

.fullday-section img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.25) !important;
}

.fullday-section .btn-primary {
    background: linear-gradient(135deg, #0066cc, #003d99);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.fullday-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

/* ========================================
   SECCIÓN ARTÍCULOS
   ======================================== */
.articles-section {
    padding: 60px 0;
    background: white;
}

.articles-section h2 {
    color: #003d99;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.articles-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #003d99);
}

.article-card {
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25) !important;
}

.article-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .card-img-top {
    transform: scale(1.08);
}

.article-card .card-title {
    color: #003d99;
    font-weight: 600;
    margin-top: 15px;
    font-size: 1.05rem;
}

.article-card .card-text {
    color: #666;
    font-size: 0.95rem;
}

.article-card .btn-link {
    color: #0066cc;
    font-weight: 500;
    transition: var(--transition);
}

.article-card .btn-link:hover {
    color: #003d99;
    transform: translateX(4px);
    display: inline-block;
}

/* ========================================
   SECCIÓN CTA (LLAMADO A LA ACCIÓN)
   ======================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.cta-section .btn-light {
    background-color: white;
    color: #003d99;
    border: none;
}

.cta-section .btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-section i {
    margin-right: 8px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-section .display-4 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .intro-section {
        padding: 40px 0;
    }

    .museo-section {
        padding: 40px 0;
    }

    .places-section {
        padding: 40px 0;
    }

    .fullday-section {
        padding: 40px 0;
    }

    .articles-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section .display-4 {
        font-size: 1.8rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .intro-section .row {
        flex-direction: column-reverse;
    }

    .fullday-section .row {
        gap: 15px;
    }

    .fullday-section img {
        height: 200px;
    }

    .place-card .card-img-top {
        height: 200px;
    }

    .cta-section .btn {
        margin: 5px;
        width: 100%;
        margin-bottom: 10px;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .places-section .place-card {
        width: 100%;
    }

    .hero-section {
        padding: 30px 0;
    }

    .hero-section .display-4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 20px !important;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .intro-section h2,
    .museo-section h2,
    .places-section h2,
    .fullday-section h2,
    .articles-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .place-card {
        margin-bottom: 15px;
    }

    .article-card {
        margin-bottom: 15px;
    }

    .row.g-4 {
        gap: 1rem !important;
    }

    .fullday-section img {
        height: 150px;
    }
}

/* ========================================
   ANIMACIONES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    animation: fadeInUp 0.8s ease-out;
}

.intro-section {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.museo-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.places-section {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.articles-section {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-section {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* ========================================
   UTILIDADES ADICIONALES
   ======================================== */
.text-primary {
    color: #0066cc !important;
}

.btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.btn-primary:hover {
    background-color: #003d99;
    border-color: #003d99;
}

.bg-primary {
    background-color: #0066cc !important;
}

/* ========================================
   SCROLL BEHAVIOR
   ======================================== */
html {
    scroll-behavior: smooth;
}

/* Accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible para navegación por teclado */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* ========================================
   SECCIÓN MAPA DE LOCALIZACIÓN
   ======================================== */
.map-section {
    padding: 60px 0;
    background: #fff;
}

.map-section h2 {
    color: #003d99;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #003d99);
    border-radius: 2px;
}

.map-container {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
    transition: var(--transition);
    margin-bottom: 30px;
}

.map-container:hover {
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.25);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* Información de Ubicación */
.location-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
    border-left: 4px solid #0066cc;
    transition: var(--transition);
    height: 100%;
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    border-left-color: #003d99;
}

.location-info h5 {
    color: #003d99;
    font-size: 1.1rem;
}

.location-info i {
    color: #0066cc;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }

    .map-container {
        margin-bottom: 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    .location-info {
        margin-bottom: 15px;
    }
}

.place-card .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .place-card .card-img-top {
        height: 200px;
    }
}