/* ========================================
   TODOS LOS DESTINOS - ESTILOS
   ======================================== */

/* Estilos generales */
.todos-destinos-section {
    min-height: 400px;
    background: #ffffff;
}

/* Header con breadcrumb */
.todos-destinos-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #59C3D9;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
}

.btn-volver-destinos {
    background: none;
    border: none;
    color: #59C3D9;
    text-decoration: none;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    line-height: 100%;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0%;
}

.btn-volver-destinos:hover {
    text-decoration: underline;
    color: #59C3D9;
}

.btn-volver-destinos i,
.breadcrumb-item i {
    font-size: 14px;
    color: #59C3D9;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.breadcrumb-separator {
    color: #59C3D9;
    font-weight: 400;
    margin: 0 4px;
    font-family: 'Lato', sans-serif;
    line-height: 100%;
    letter-spacing: 0%;
}

.breadcrumb-current {
    color: #00ABC8;
    font-weight: 700;
    font-style: bold;
    font-family: 'Lato', sans-serif;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Título principal */
.todos-destinos-title {
    margin-bottom: 2rem;
}

.todos-destinos-title h2 {
    color: #00ABC8;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 100%;
    letter-spacing: 0%;
}

/* ========================================
   VISTA NACIONAL - Grilla de Cards con Imágenes
   ======================================== */
.destinos-nacionales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Para desktop: máximo 4 columnas */
@media (min-width: 1200px) {
    .destinos-nacionales-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Para tablet grande: 3 columnas */
@media (min-width: 900px) and (max-width: 1199px) {
    .destinos-nacionales-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Para tablet: 2 columnas */
@media (min-width: 600px) and (max-width: 899px) {
    .destinos-nacionales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.destino-nacional-item {
    position: relative;
    background: #2c3e50;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.destino-nacional-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(0,0,0,0.25);
}

/* Overlay oscuro para mejorar legibilidad del texto */
.destino-nacional-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.60) 100%);
    z-index: 1;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-item:hover::before {
    background: linear-gradient(180deg,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.75) 100%);
}

.destino-nacional-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-badge {
    background: #1B365D;
    color: white;
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    letter-spacing: 0.01em;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-content {
    margin-top: auto;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-content h4 {
    margin: 0 0 2px 0;
    color: white;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Encode Sans', sans-serif;
    line-height: 1.2;
    word-wrap: break-word;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-precio {
    color: white;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-precio b {
    font-weight: 800;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.destino-nacional-item:hover .destino-nacional-arrow {
    transform: scale(1.1) translateX(2px);
}

.destino-nacional-item:hover .destino-nacional-arrow > .fa-light {
    font-size: 1.8rem; 
    color: #00abc8;
    background: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-item:hover .destino-nacional-precio,
.destino-nacional-item:hover .destino-nacional-precio b {
    color: #00abc8;
}

/* ========================================
   VISTA INTERNACIONAL - Cards con Acordeones
   ======================================== */
.destinos-internacionales-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Para mobile: gap más pequeño */
@media (max-width: 767px) {
    .destinos-internacionales-accordion {
        gap: 1rem;
    }
}

.accordion-pais {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 1217px;
    margin: 0 auto;
    border: none;
    outline: none;
}

.accordion-pais:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

/* Header del país como card horizontal con imagen limitada */
.accordion-header {
    position: relative;
    background: #F2F2F2;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 75px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background-size: cover !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    box-shadow: none;
    outline: none;
}

/* Overlay con transición de imagen a gris */
.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 15%,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(242, 242, 242, 0) 25%,
        rgba(242, 242, 242, 1) 30%
    );
    z-index: 1;
}

.accordion-header-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    padding: 0 1.5rem;
    color: white;
}

.accordion-pais-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    flex-direction: row;
}

.accordion-pais-nombre {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.accordion-pais-hacia {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-right: 0.5rem;
}



.accordion-pais-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-pais-badge {
    background: #1B365D;
    color: white;
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    letter-spacing: 0.01em;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-precio-desde {
    color: #00abc8;
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
}

.accordion-toggle {
    background: transparent;
    border: none;
    color: #00abc8;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.accordion-header:hover .accordion-toggle {
    color: #00abc8;
}

/* Hover que solo pinta el texto del país */
.accordion-header:hover .accordion-pais-nombre {
    color: #00abc8;
}

/* Contenido del acordeón */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #F2F2F2;
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    outline: none;
}

.accordion-content.expanded {
    max-height: 800px;
}

/* Cuando el acordeón está expandido, ocultar "Hacia" y la imagen */
.accordion-pais.expanded .accordion-pais-hacia {
    display: none;
}

.accordion-pais.expanded .accordion-header {
    background-image: none !important;
    background-color: #F2F2F2 !important;
}

.accordion-pais.expanded .accordion-header::before {
    display: none;
}

.accordion-pais.expanded .accordion-pais-nombre {
    color: #1B365D !important;
    text-shadow: none;
}

/* Estilos específicos para moneda peruana SOLO cuando está expandido */
.accordion-pais.expanded .accordion-precio-desde.moneda-peruana {
    bottom: -7px;
    position: relative;
}

/* Grid de ciudades dentro del acordeón */
.accordion-destinos-lista {
    padding: 10px 15px 15px 8px;
    background-color: #F2F2F2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    border: none;
    outline: none;
}

/* Para desktop: 4 columnas de ciudades */
@media (min-width: 1200px) {
    .accordion-destinos-lista {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Para tablet grande: 3 columnas de ciudades */
@media (min-width: 900px) and (max-width: 1199px) {
    .accordion-destinos-lista {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Para tablet: 2 columnas de ciudades */
@media (min-width: 600px) and (max-width: 899px) {
    .accordion-destinos-lista {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Para mobile: 1 columna de ciudades */
@media (max-width: 599px) {
    .accordion-destinos-lista {
        grid-template-columns: 1fr;
        padding: 0.75rem 1rem 1rem 1rem;
    }
}

/* Cada ciudad como card con imagen */
.destino-internacional-item {
    position: relative;
    background: #2c3e50;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    font-weight: bold;
}

.destino-internacional-item:hover {
    transform: translateY(-4px) scale(1.02);
  
}

/* Overlay con difuminado para ciudades */
.destino-internacional-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.60) 100%);
    z-index: 1;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-item:hover::before {
    background: linear-gradient(180deg,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.75) 100%);
}

.destino-internacional-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-badge {
    background: #1B365D;
    color: white;
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    letter-spacing: 0.01em;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-content {
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-info h5 {
    margin: 0 0 2px 0;
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Encode Sans', sans-serif;
    word-wrap: break-word;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-precio {
    color: white;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin: 0;
    word-wrap: break-word;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-precio b {
    font-weight: 800;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-fecha {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.destino-internacional-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.destino-internacional-item:hover .destino-internacional-arrow {
    transform: scale(1.1) translateX(2px);
}

.destino-internacional-item:hover .destino-internacional-arrow > .fa-light {
    font-size: 1.8rem; 
    color: #00abc8;
    background: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-internacional-item:hover .destino-internacional-precio,
.destino-internacional-item:hover .destino-internacional-precio b {
    color: #00abc8;
}

/* ========================================
   ESTADOS DE CARGA
   ======================================== */
.loading-destinos {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: #f9f9f9;
    min-width: 100%;
    min-height: 200px;
}

.loading-destinos::before {
    content: "No se encontraron resultados";
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #004080;
}



/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 768px) {
    .todos-destinos-header {
        text-align: center;
        padding-bottom: 1.5rem;
    }
    
    .breadcrumb-container {
        justify-content: center;
        font-size: 13px;
    }
    
    .todos-destinos-title h2 {
        font-size: 1.75rem;
    }
    
    .destinos-nacionales-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .destino-nacional-item {
        min-height: 150px;
        padding: 1rem;
    }
    
    .destino-nacional-content h4 {
        font-size: 1.4rem;
    }
    
    .destino-nacional-precio {
        font-size: 1.125rem;
    }
    
    .destino-nacional-arrow {
        right: 8px;
        bottom: 8px;
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
    }
    
    .accordion-header {
        height: 65px;
    }
    
    .accordion-header-info {
        padding: 0 1.25rem;
    }
    
    .accordion-pais-nombre {
        font-size: 1.25rem;
    }
    
    .accordion-pais-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .accordion-precio-desde {
        font-size: 1rem;
    }
    
    .destino-internacional-item {
        min-height: 150px;
        padding: 1rem;
    }
    
    .destino-internacional-info h5 {
        font-size: 1.4rem;
    }
    
    .destino-internacional-arrow {
        right: 8px;
        bottom: 8px;
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .todos-destinos-section {
        padding: 1rem 0;
    }
    
    .todos-destinos-title h2 {
        font-size: 1.5rem;
    }
    
    .destinos-nacionales-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .destino-nacional-item {
        min-height: 150px;
        padding: 1rem;
    }
    
    .destino-nacional-content h4 {
        font-size: 1.05rem;
    }
    
    .destino-nacional-precio {
        font-size: 1rem;
    }
    
    .destino-nacional-arrow {
        right: 8px;
        bottom: 8px;
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
    }
    
    .destino-nacional-badge {
        padding: 3px 12px;
        font-size: 0.85rem;
    }
    
    .accordion-header {
        height: 65px;
        background-position: center !important;
        position: relative;
        display: flex;
        align-items: flex-end;
    }
    
    /* Para mobile: imagen ocupa todo el ancho sin transición a gris */
    .accordion-header::before {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.2) 80%,
            rgba(0, 0, 0, 0) 100%
        );
    }
    
    .accordion-header-info {
        padding: 0 1rem;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        height: 100%;
        position: relative;
        justify-content: space-between;
        padding-bottom: 8px;
    }
    
    .accordion-pais-left {
        display: flex;
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
        height: auto;
        justify-content: flex-start;
        width: auto;
        flex: 1;
        padding-bottom: 3px;
    }
    
    .accordion-pais-nombre {
        font-size: 1rem;
        margin: 0;
        color: white;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
        order: 2;
        margin-top: 0;
        line-height: 1.2;
        word-wrap: break-word;
    }
    .accordion-pais-hacia {
        font-size: 0.9rem;
        margin: 0;
        color: white;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
        order: 1;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .accordion-pais-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        margin: 0;
        position: absolute;
        top: 0.5rem;
        left: 1rem;
        order: 1;
        transition: opacity 0.3s ease;
        background: rgba(27, 54, 93, 0.9);
        backdrop-filter: blur(4px);
        margin-bottom: 0.75rem;
    }
    
    /* Ocultar el badge cuando el acordeón está expandido */
    .accordion-pais.expanded .accordion-pais-badge {
        opacity: 0;
        pointer-events: none;
    }
    .accordion-pais.expanded  .accordion-header {
        height: 45px;
    }
    
    /* Quitar padding-bottom cuando está expandido */
    .accordion-pais.expanded .accordion-pais-left {
        padding-bottom: 0;
    }
    
    .accordion-pais-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        bottom: 0;
        right: 0;
        max-width: none;
        min-height: auto;
    }
    
    .accordion-precio-desde {
        font-size: 0.85rem;
        color: white;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
        line-height: 1.2;
        word-wrap: break-word;
        display: flex;
        align-items: baseline;
        min-height: auto;
        white-space: nowrap;
    }
    
    /* Cuando el acordeón está expandido en mobile, cambiar color del precio */
    .accordion-pais.expanded .accordion-precio-desde {
        color: #00abc8 !important;
        text-shadow: none;
    }
    
    /* Mejorar visibilidad del botón toggle cuando está expandido */
    .accordion-pais.expanded .accordion-toggle {
        background: transparent;
        border: none;
        color: #00abc8;
        box-shadow: none;
        width: auto;
        height: auto;
    }
    
    /* Eliminar separador automático - se pondrá en el texto */
    .accordion-precio-desde::before {
        content: "";
        margin-right: 0;
    }
    
    .accordion-toggle {
        font-size: 0.8rem;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        width: 24px;
        height: 24px;
        border: 2px solid rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        margin-left: 0.5rem;
    }
    
    .destino-internacional-item {
        min-height: 150px;
        padding: 1rem;
    }
    
    .destino-internacional-info h5 {
        font-size: 1.05rem;
    }
    
    .destino-internacional-arrow {
        right: 8px;
        bottom: 8px;
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
    }
    
    .breadcrumb-container {
        font-size: 12px;
    }
}

/* Estados de hover mejorados para desktop */
@media (min-width: 769px) {
    .destino-nacional-item:hover {
        transform: translateY(-6px) scale(1.03);
      
    }
    
    .accordion-pais:hover {
    
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    
    .destino-internacional-item:hover {
        transform: translateY(-6px) scale(1.03);

    }
}

/* Animaciones suaves */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destino-nacional-item,
.accordion-pais {
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destino-nacional-item:nth-child(n+1) { animation-delay: 0.1s; }
.destino-nacional-item:nth-child(n+2) { animation-delay: 0.2s; }
.destino-nacional-item:nth-child(n+3) { animation-delay: 0.3s; } 

.accordion-pais:nth-child(n+1) { animation-delay: 0.1s; }
.accordion-pais:nth-child(n+2) { animation-delay: 0.2s; }
.accordion-pais:nth-child(n+3) { animation-delay: 0.3s; }

/* Tamaños específicos por moneda */
.precio-pen {
    font-size: 14px;
}

.precio-usd {
    font-size: 20px;
}
