.front-hero {
    position: relative;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    height: 70vh;
    padding: 40px 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(16, 24, 40, 0.78) 0%,
        rgba(16, 24, 40, 0.48) 48%,
        rgba(16, 24, 40, 0.24) 100%
    );
    z-index: 1;
    height: 70vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    bottom: 20%;
}

.hero-content-box {
    display: block;
}

.hero-main-row {
    display: grid;
    grid-template-columns: minmax(0, 700px) auto;
    align-items: center;
    gap: 48px;
}
.hero-certificated {
    display: flex;
    align-items: center;  
    margin-top: 40px;     
}

.hero-certificated img {
    max-width: 180px;  
    width: 100%;           
    height: auto;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.12); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-main-row h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 6.8vw, 70px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.button-start-planning {
    display: flex;
    justify-content: flex-end;
}

.button-start-planning a {
        padding: 8px 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--pa-gold);
        border-radius: 5px;
        color: var(--pa-base);
        font-size: 15px;
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-start-planning a:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

@media (max-width: 900px) {
    .front-hero {
        min-height: calc(100vh - 82px);
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(16, 24, 40, 0.78) 0%, rgba(16, 24, 40, 0.48) 48%, rgba(16, 24, 40, 0.24) 100%);
        z-index: 1;
        height: calc(100vh - 82px);
    }
    .hero-content-box {
        padding: 90px 0 56px;
    }

    .hero-main-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .button-start-planning {
        justify-content: flex-start;
    }

    .button-start-planning a {
        min-width: 0;
        width: 100%;
    }
    
}
@media (max-height: 800px) {
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        bottom: 10%;
    }
}
                        


/* =========================
   Why Peru Agency Section
========================== */
.why-peru-agency {
    background-color: var(--pa-light);
    text-align: center;
    padding: 40px;
}
.why-peru-agency .container {
    margin: 0 auto;
}
.why-peru-agency .section-subtitle {
    color: var(--pa-terracotta);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(32px, 4vw, 35px);
    color: var(--pa-dark);
    margin-bottom: 15px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--pa-base);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-general);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}


.feature-title {
    font-size: 1.1rem;
    color: var(--pa-secundary);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--pa-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.reviews-tripadvisor-section {
    text-align: center;
    padding: 40px 20px;
}


.reviews-header p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--pa-gray);
    line-height: 1.6;
}
.certificates-section {
    padding: 40px 20px;
    background-color: var(--pa-principal); 
    color: #fff;
}

.certificates-swiper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.certificates-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.certificates-swiper .swiper-slide {
    flex-shrink: 0;       /* evita que las slides se compriman */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.pa-certified-heading {
    max-width: 1350px;
    margin: 0 auto;
    font-size: 20px;
    color: var(--pa-secundary);
    padding: 0 0 20px;
}
.certificates-swiper img {
    max-width: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.certificates-swiper img:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .certificates-swiper img {
        max-width: 100px;
    }
}

/* =========================
   Tour Card - Luxury Design
========================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.tour-card {
    position: relative;
    background-color: var(--pa-dark);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* Imagen principal */
.tour-image {
    width: 100%;
    object-fit: cover;
    position: relative;
}

/* Overlay precio */
.tour-price-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: var(--pa-gold);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Contenido de la card */
.tour-card .tour-content {
    padding: 16px;
    color: var(--pa-light);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card .tour-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 15px 0;
    padding: 5px 15px;
    color: var(--pa-light);
}

.tour-card .tour-details {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--pa-gold);
    margin-bottom: 12px;
}

.tour-card .tour-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-card .btn-explore {
    margin-top: auto;
    text-decoration: none;
    font-weight: 700;
    color: var(--pa-light);
    border-bottom: 2px solid var(--pa-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.tour-card .btn-explore:hover {
    color: var(--pa-gold);
    border-color: var(--pa-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .tours-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 768px) {
    .tours-grid { grid-template-columns: 1fr; }

    .tour-title { font-size: 1rem; }
}

.tour-card .tour-price {
    display: block;
    text-align: center;
    border-top: 1px solid #ffffff29;
    border-bottom: 1px solid #ffffff29;
    padding: 10px;
    margin: 10px 30px;
}
.tour-card .tour-price span {
    color: var(--pa-gold);
    font-size: 15px;
    font-weight: 700;
}

.tours-slider-container {
    margin: 0 auto;
}
.pa-section-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.section-p {
    text-align: center;
}
section.tours-slider-section-b {
    padding: 40px;
}
/* BotÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n categorÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­a */
.tours-category-btn {
    text-align: center;
    margin:40px;
    
}

.tours-category-btn .btn-category {
    display: inline-block;
    padding: 12px 28px;
    background: var(--pa-gold);
    color: #000;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgb(0 0 0 / 26%);
}

.tours-category-btn .btn-category:hover {
    background: var(--pa-terracotta);
    color: #fff;
}


.hotels-description {
    font-size: 1rem;
    color: var(--pa-dark);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
}
.hotel-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.hotel-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.hotel-name {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 12px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    transition: background 0.3s ease, border-top 0.3s ease;
}

.hotel-card:hover .hotel-name {
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--pa-secundary);
}

/* Enlace opcional */
.hotel-link {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    font-weight: 700;
    color: var(--pa-gold);
    transition: color 0.3s ease;
}

.hotel-link:hover {
    color: var(--pa-terracotta);
}

.hotels-swiper {
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
    padding-bottom: 35px;
}

.hotels-swiper .swiper-slide {
    height: auto;
}

.hotels-swiper-pagination {
    bottom: 0 !important;
}
section.hotels-section {
    background: #f1f1f1;
    padding: 40px;
}
/* =========================
   supported / Supported Swiper
   Igual que certificados
========================== */
.supported-section {
    padding: 40px 20px;
    background-color: var(--pa-light);
    max-width: 1000px;
    margin: 0 auto;
}

.supported-swiper {
    width: 100%;
}

.supported-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.supported-swiper .swiper-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.supported-swiper img {
    max-width: 130px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.supported-swiper img:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .supported-swiper img {
        max-width: 100px;
    }
}



/* =========================
   CTA Section - Lujo
========================== */
.cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--pa-principal), var(--pa-dark)); 
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
       box-shadow: inset 0 4px 0 var(--pa-gold); 
}

.cta-title {
    font-size: clamp(18px, 4vw, 35px);
    color: var(--pa-light);
}


/* Optional: responsive padding */
@media (max-width: 1024px) {
    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 15px;
    }
    .cta-title {
        font-size: clamp(22px, 6vw, 36px);
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: clamp(18px, 7vw, 28px);
    }
}