/* Header Styles *//* Swiper Carousel Styles */
.carusell {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.5s ease;
}

.swiper-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-text .btn {
    background: #ff6b35;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.slide-text .btn:hover {
    background: #fff;
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.5);
    border-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carusell {
        height: 400px;
    }
    
    .slide-text h2 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .slide-text .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .carusell {
        height: 350px;
    }
    
    .slide-text h2 {
        font-size: 1.5rem;
    }
    
    .slide-text p {
        font-size: 0.9rem;
    }
    
    .slide-text .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
.cabecera {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Franja Superior (Barra Blanca) */
.franja-superior {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

.branding {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    color: #e74c3c;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-link {
    font-size: 0.875rem;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: #e74c3c;
}

.language-selector select {
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: #6c757d;
    padding: 0;
    cursor: pointer;
}

.language-selector select:focus {
    outline: none;
    box-shadow: none;
}

/* Franja Inferior (Menú Principal) */
.franja-inferior {
    background-color: #2c3e50;
    padding: 0;
}

.navbar {
    padding: 0;
    background: transparent;
}

.navbar-nav {
    gap: 30px;
}

.nav-link {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 0 !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e74c3c !important;
}

.nav-link.active {
    color: #e74c3c !important;
}

/* Dropdown Styles */
.dropdown-menu {
    background-color: #2c3e50;
    border: none;
    border-radius: 4px;
    margin-top: 5px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    /* Fix for lagging dropdown */
    transform-origin: top center;
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
    will-change: transform, opacity;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    transition: background-color 0.15s ease;
}

.dropdown-item:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

/* Ensure dropdown toggle works properly */
.dropdown-toggle {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle::after {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    content: "▼";
    font-size: 0.7rem;
    color: #ffffff;
    transition: transform 0.15s ease;
    pointer-events: none;
}

.dropdown-toggle.show::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Fix for pointer blocking */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 991px) {
    .franja-superior {
        padding: 10px 0;
    }
    
    .branding {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .header-actions {
        justify-content: center;
        gap: 15px;
    }
    
    .header-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .navbar-nav {
        gap: 0;
        text-align: center;
    }
    
    .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
        background-color: rgba(44, 62, 80, 0.95);
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.25rem;
    }
    
    .header-links {
        gap: 8px;
    }
    
    .header-link {
        font-size: 0.8rem;
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 12px 0 !important;
    }
}

/* Hover Effects */
.nav-link:hover {
    transform: translateY(-2px);
}

.dropdown-toggle:hover {
    color: #e74c3c !important;
}

/* Additional Styling for Better Visual Hierarchy */
.franja-superior .container-fluid {
    max-width: 1200px;
}

.franja-inferior .container-fluid {
    max-width: 1200px;
}

/* MasInfo Styles */
.masinfo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6c757d;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.orange-icon {
    color: #e67e22;
    font-size: 0.9rem;
}

/* Responsive adjustments for masinfo */
@media (max-width: 991px) {
    .masinfo {
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }
    
    .info-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .masinfo {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    
    .info-item {
        font-size: 0.75rem;
    }
}

/* Smooth transitions */
.cabecera {
    transition: all 0.3s ease;
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    /* background-color: #25D366 !important; WhatsApp green */
    color: #25D366 !important;
    border: none;
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E !important; /* Darker WhatsApp green */
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.btn-whatsapp i {
    font-size: 1.1rem;
    color: #25D366 !important;
}

/* Enquire Now Button Styles */
.btn-enquire {
    background-color: #FF6B35 !important; /* Strong orange */
    color: white !important;
    border: none;
    
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enquire:hover {
    background-color: #E55A2B !important; /* Darker orange */
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

/* Responsive adjustments for buttons */
@media (max-width: 991px) {
    .btn-whatsapp, .btn-enquire {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .btn-whatsapp, .btn-enquire {
        padding: 8px 14px;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }
    
    .masinfo {
        flex-direction: column;
        align-items: flex-end;
    }
}

/* Carousel Styles */
.carusell {
    background-color: #f8f9fa;
}

.swiper-container {
    max-height: 750px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 750px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: #007bff;
    border-color: #007bff;
}

/* Ensure proper spacing on all devices */
body {
    padding-top: 120px; /* Account for fixed header */
}

/* Inkayni Peru Tours Styles */
.colUnoSobrenosotros {
    background-color: #ffffff;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Subtítulo - Tipografía script elegante */
.subtitle {
    font-family: 'Dancing Script', cursive, 'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', 'Comic Sans MS', cursive;
    font-size: 1.5rem;
    color: #F2B705; /* Amarillo dorado */
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Título principal - Tipografía sans-serif moderna */
.main-title {
    font-family: 'Poppins', 'Montserrat', 'Inter', sans-serif;
    font-size: 2.5rem;
    color: #2B2B2B; /* Gris oscuro */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Línea decorativa */
.decorative-line {
    width: 80px;
    height: 4px;
    background-color: #F2B705; /* Amarillo dorado */
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

/* Párrafo descriptivo */
.description {
    font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #6B6B6B; /* Gris medio */
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.description strong {
    color: #2B2B2B; /* Gris oscuro para énfasis */
    font-weight: 700;
}

/* Botón CTA */
.btn-cta {
    display: inline-block;
    background-color: #F2B705; /* Amarillo dorado */
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    font-family: 'Poppins', 'Montserrat', 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 8px; /* Bordes redondeados */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.btn-cta:hover {
    background-color: #F4B400; /* Amarillo dorado más intenso */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 183, 5, 0.4);
    text-decoration: none;
}

/* Rating de Tripadvisor */
.tripadvisor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.rating-icon {
    font-size: 2rem;
    color: #00AF87; /* Verde Tripadvisor */
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-score {
    font-family: 'Poppins', 'Montserrat', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2B2B2B;
}

.rating-out-of {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6B6B6B;
    font-weight: 500;
}

.rating-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6B6B6B;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ColDosSobrenosotros - Espacio para imagen o contenido adicional */
.colDosSobrenosotros {
    
    
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    
}

.sub-main-title {
    font-family: 'Poppins', 'Montserrat', 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #2B2B2B;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-image img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .colUnoSobrenosotros, .colDosSobrenosotros {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .colUnoSobrenosotros, .colDosSobrenosotros {
        padding: 30px 15px;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .tripadvisor-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .rating-text {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .colUnoSobrenosotros, .colDosSobrenosotros {
        padding: 25px 10px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
.decorative-line {
    width: 60px;
    height: 3px;
}

/* Card Body Styles for Camino del Inca */
.card-body {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 24px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Título principal */
.card-body .main-title {
    font-family: 'Montserrat', 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #5A5F45;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Fila de información */
.info-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 22px;
    color: #E76F2E;
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

/* Separador */
.separator {
    height: 1px;
    background-color: #DADADA;
    border-top: 1px dashed #DADADA;
    width: 100%;
}

/* Descripción */
.card-body .description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #7A7A7A;
    line-height: 1.6;
    margin: 0;
}

/* Precio */
.price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #E76F2E;
}

.price-main {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #E76F2E;
    margin: 0;
}

.price-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333333;
}

/* Botón CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #E6E6E6;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 8px;
}

.cta-button:hover {
    background-color: #DADADA;
    transform: translateY(-1px);
}

.btn-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
}

.arrow-icon {
    font-size: 18px;
    color: #E76F2E;
}

/* Responsive Design for Card */
@media (max-width: 768px) {
    .card-body {
        padding: 20px;
    }
    
    .card-body .main-title {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .info-row {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-main {
        font-size: 36px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 16px;
    }
    
    .card-body .main-title {
        font-size: 20px;
    }
    
    .info-row {
        gap: 15px;
    }
    
    .price-main {
        font-size: 32px;
    }
    
    .icon {
        font-size: 20px;
    }
    
    .info-text {
        font-size: 15px;
    }
}

/* Camino del Inca Card Styles */
.micard {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 24px;
    border: none;
}

/* Encabezado */
.card-header-section {
    margin-bottom: 16px;
}

.card-title {
    font-family: 'Montserrat', 'Roboto', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #D35400; /* Naranja vibrante */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

/* Fila de Información */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-orange {
    color: #D35400; /* Naranja vibrante */
    font-size: 18px;
}

.info-text {
    font-family: 'Montserrat', 'Roboto', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #333333; /* Gris oscuro/Negro */
    margin: 0;
}

.info-text-orange {
    color: #D35400; /* Naranja vibrante */
}

/* Separador */
.separator {
    height: 1px;
    background-color: transparent;
    border-top: 1px dashed #DADADA; /* Línea punteada gris claro */
    width: 100%;
    margin: 16px 0;
}

/* Cuerpo de Texto */
.card-body-text {
    margin-bottom: 20px;
}

.card-body-text p {
    font-family: 'Montserrat', 'Roboto', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #7A7A7A; /* Gris medio */
    line-height: 1.8; /* Interlineado amplio */
    margin: 0;
    text-align: justify;
}

/* Sección de Precio */
.price-section {
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-family: 'Montserrat', 'Roboto', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #D35400; /* Naranja vibrante */
}

.price-amount {
    font-family: 'Montserrat', 'Roboto', 'Inter', sans-serif;
    font-weight: 800; /* Extra Bold */
    font-size: 48px; /* Aprox. 48pt */
    color: #D35400; /* Naranja vibrante */
    line-height: 1;
}

.price-per-person {
    font-family: 'Montserrat', 'Roboto', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333333; /* Negro */
    margin-left: auto; /* Alineado a la derecha */
}

/* Pie de Tarjeta */
.card-footer {
    background-color: #F5F5F5; /* Gris muy claro */
    padding: 14px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    font-family: 'Montserrat', 'Roboto', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #D35400; /* Naranja vibrante */
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: #D35400;
    margin: 0;
}

.footer-arrow {
    color: #D35400; /* Naranja vibrante */
    font-size: 16px;
    font-weight: 700;
}

/* Responsive Design for Camino del Inca Card */
@media (max-width: 768px) {
    .micard {
        padding: 20px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-per-person {
        margin-left: 8px;
        margin-top: 4px;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .micard {
        padding: 16px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .info-text {
        font-size: 13px;
    }
    
    .card-body-text p {
        font-size: 13px;
    }
}
}