/* ========================================= */
/* Estilos Generales de Contenedores y Títulos */
/* ========================================= */

.destino-contenedor-contenidos {
    width: 100%;
    overflow-x: hidden;
}

.destino-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.destino-section-title {
    font-size: 2.5em;
    color: #06255b;
    /* Azul oscuro */
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.destino-section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.destino-bg-light {
    background-color: #f0f8ff;
    /* Un azul muy claro para secciones alternas */
}

/* ========================================= */
/* Hero Section */
/* ========================================= */
.destino-hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.destino-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.destino-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.destino-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 37, 91, 0.65);
    /* Overlay azul oscuro más intenso */
    z-index: 2;
}

.destino-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
}

.destino-hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destino-hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.destino-hero-btn {
    display: inline-block;
    background-color: #29abe2;
    /* Azul medio/acento */
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.destino-hero-btn:hover {
    background-color: #1e8ec2;
    /* Un tono más oscuro del azul de acento */
    transform: translateY(-2px);
}

/* ========================================= */
/* Sección de Información Principal (destino-section-info) */
/* ========================================= */
.destino-section-info {
    padding: 80px 0;
}

.destino-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destino-info-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.destino-info-card i {
    /* Estilos para iconos */
    font-size: 3.5em;
    color: #29abe2;
    /* Azul medio/acento para iconos */
    margin-bottom: 20px;
}

.destino-info-card h3 {
    font-size: 1.6em;
    color: #06255b;
    /* Azul oscuro para títulos */
    margin-bottom: 10px;
    font-weight: 600;
}

.destino-info-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}


/* ========================================= */
/* Sección Lugares a Visitar (destino-section-places) */
/* ========================================= */
.destino-section-places {
    padding: 80px 0;
    background-color: #ffffff;
}

.destino-grid-places {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.destino-place-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom: 4px solid #29abe2;
    /* Borde inferior azul medio */
}

.destino-place-card h3 {
    font-size: 1.5em;
    color: #06255b;
    /* Azul oscuro */
    margin: 20px 20px 10px;
    font-weight: 600;
    text-align: left;
}

.destino-place-card p {
    font-size: 1em;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
    flex-grow: 1;
    text-align: left;
}
