/* ============================================
   REALIZA BRASIL TOUR 2026 - ROUTE PAGE STYLES
   ============================================ */

/* === ROUTE HERO === */
.route-hero {
    position: relative;
    min-height: 80vh;
    margin-top: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.route-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.route-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(74, 94, 42, 0.6) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.route-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 80px 24px;
}

.route-hero-content .hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    background: rgba(253, 172, 18, 0.12);
    border: 1px solid rgba(253, 172, 18, 0.25);
    padding: 8px 20px;
    border-radius: 60px;
    margin-bottom: 1.5rem;
}

.route-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.route-hero-title span {
    color: var(--gold);
}

.route-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.route-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.price-badge svg { opacity: 0.7; }

/* Floating decorative particles for route hero */
.route-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.route-hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(253, 172, 18, 0.1);
    animation: routeFloat 20s ease-in-out infinite;
}

.p1 { width: 200px; height: 200px; top: -50px; left: -30px; }
.p2 { width: 150px; height: 150px; bottom: -30px; right: -40px; animation-delay: -5s; }
.p3 { width: 100px; height: 100px; top: 40%; left: 20%; animation-delay: -10s; }
.p4 { width: 80px; height: 80px; top: 20%; right: 15%; animation-delay: -3s; }
.p5 { width: 120px; height: 120px; bottom: 20%; left: 5%; animation-delay: -7s; }
.p6 { width: 60px; height: 60px; top: 60%; right: 25%; animation-delay: -12s; }

@keyframes routeFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 0.8; }
}

/* === ITINERARY SECTION === */
.itinerary {
    padding: 10vh 0;
    background: var(--white);
}

.itinerary .section-title {
    margin-bottom: 0.5rem;
}

.itinerary .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.itinerary .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.itinerary .section-subtitle {
    text-align: center;
    color: var(--zinc-500);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.itinerary-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--zinc-200);
    transition: var(--transition);
}

.itinerary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: var(--green);
}

.itinerary-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.itinerary-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.itinerary-card:hover .itinerary-card-image img {
    transform: scale(1.05);
}

.itinerary-number {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
}

.itinerary-date-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.itinerary-card-body {
    padding: 16px 18px;
}

.itinerary-city {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.itinerary-state {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.itinerary-state svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.itinerary-desc {
    font-size: 0.85rem;
    color: var(--zinc-500);
    line-height: 1.6;
}

/* === WHAT'S INCLUDED SECTION === */
.included {
    padding: 10vh 0;
    background: var(--zinc-50);
}

.included .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.included .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.included .section-title {
    margin-bottom: 0.5rem;
}

.included .section-subtitle {
    text-align: center;
    color: var(--zinc-500);
    font-size: 1rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.included-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--zinc-200);
    transition: var(--transition);
}

.included-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.included-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(253, 172, 18, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.included-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.included-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
}

.included-card p {
    font-size: 0.92rem;
    color: var(--zinc-500);
    line-height: 1.65;
}

/* === TESTIMONIAL / QUOTE SECTION === */
.testimonial {
    position: relative;
    padding: 12vh 0;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 94, 42, 0.9),
        rgba(0, 0, 0, 0.85)
    );
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(253, 172, 18, 0.15);
    margin-bottom: 1.5rem;
}

.testimonial-quote-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    opacity: 0.5;
    margin: 0 auto;
}

.testimonial-attribution {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.testimonial-attribution strong {
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

/* === PRICING SECTION === */
.pricing {
    padding: 10vh 0;
    background: var(--white);
}

.pricing .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    border: 3px solid var(--green);
    padding: 50px 40px;
    text-align: center;
}

.pricing-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.3rem;
    color: var(--zinc-400);
    font-weight: 600;
}

.pricing-note {
    font-size: 0.88rem;
    color: var(--zinc-500);
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 14px 20px;
    background: var(--zinc-50);
    border-radius: 12px;
}

.pricing-note svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    color: var(--gold);
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--zinc-400);
    transition: var(--transition);
}

.back-link:hover {
    color: var(--green);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* === RESPONSIVE - ROUTE PAGES === */
@media (max-width: 1200px) {
    .itinerary-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .route-hero-title { font-size: 3rem; }
    .itinerary-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-text { font-size: 1.3rem; }
}

@media (max-width: 768px) {
    .route-hero { min-height: auto; padding: 40px 0; }
    .route-hero-content { padding: 60px 24px; }
    .route-hero-title { font-size: 2.4rem; }
    .route-hero-description { font-size: 0.95rem; }
    .route-hero-actions { flex-direction: column; gap: 14px; }
    .price-badge { font-size: 1rem; padding: 10px 20px; }
    .route-hero-particles { display: none; }

    .itinerary-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .included-grid { grid-template-columns: 1fr; }
    .included-card { padding: 30px 24px; }
    .testimonial-text { font-size: 1.15rem; }
    .pricing-card { padding: 36px 24px; }
    .pricing-amount { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .route-hero-title { font-size: 2rem; }
    .itinerary-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .pricing-amount { font-size: 2rem; }
    .testimonial-text { font-size: 1rem; }
}

/* === STAGGER ANIMATIONS === */
.itinerary-grid .itinerary-card:nth-child(1).fade-in-up { transition-delay: 0s; }
.itinerary-grid .itinerary-card:nth-child(2).fade-in-up { transition-delay: 0.08s; }
.itinerary-grid .itinerary-card:nth-child(3).fade-in-up { transition-delay: 0.16s; }
.itinerary-grid .itinerary-card:nth-child(4).fade-in-up { transition-delay: 0.24s; }
.itinerary-grid .itinerary-card:nth-child(5).fade-in-up { transition-delay: 0.32s; }
.itinerary-grid .itinerary-card:nth-child(6).fade-in-up { transition-delay: 0.4s; }
.itinerary-grid .itinerary-card:nth-child(7).fade-in-up { transition-delay: 0.48s; }
.itinerary-grid .itinerary-card:nth-child(8).fade-in-up { transition-delay: 0.56s; }
.itinerary-grid .itinerary-card:nth-child(9).fade-in-up { transition-delay: 0.64s; }
.included-grid .included-card:nth-child(2).fade-in-up { transition-delay: 0.1s; }
.included-grid .included-card:nth-child(3).fade-in-up { transition-delay: 0.2s; }
