:root {
    --turquoise: #40E0D0;
    --klein-blue: #1A1A8F;
    --cerulean: #1DA1F2;
    --neon-orange: #FF5C00;
    --deep-blue: #020617;
    --text-white: #ffffff;
    --text-silver: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--deep-blue);
    font-family: var(--font-main);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- CONTROLLED PARALLAX HERO --- */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Full screen Background */
    background: 
        linear-gradient(135deg, rgba(2, 6, 23, 0.85), rgba(30, 58, 138, 0.85)),
        url('hero_paraguay.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 92, 0, 0.15), transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    z-index: 10;
}

/* Disable parallax on mobile if needed, but fixed is usually okay on modern browsers */
@media (max-width: 992px) {
    .hero { background-attachment: scroll; }
}

/* Glow for Hero only */
.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 92, 0, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hero-content {
    flex: 1.2;
}

.badge-vip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--turquoise);
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.highlight-orange {
    color: var(--neon-orange);
    text-shadow: 0 0 30px rgba(255, 92, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-silver);
    margin-bottom: 48px;
    max-width: 550px;
}

/* CTA Buttons - MAX GLOW */
.btn-cta {
    background: var(--neon-orange);
    color: #fff;
    padding: 20px 45px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(255, 92, 0, 0.4);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 92, 0, 0.6);
    filter: brightness(1.1);
}

.neon-pulse { animation: neonPulse 2s infinite ease-in-out; }
@keyframes neonPulse {
    0% { transform: scale(1); box-shadow: 0 15px 40px rgba(255, 92, 0, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 15px 60px rgba(255, 92, 0, 0.7); }
    100% { transform: scale(1); box-shadow: 0 15px 40px rgba(255, 92, 0, 0.4); }
}

/* Flight Path HUD */
.hero-hud {
    flex: 1;
    position: relative;
    height: 500px;
}

.hud-container {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
}

.dotted-line {
    stroke: var(--neon-orange);
    stroke-width: 2;
    stroke-dasharray: 6, 6;
    fill: none;
}

.route-point-anim {
    fill: var(--neon-orange);
    filter: drop-shadow(0 0 12px var(--neon-orange));
}

.hud-text {
    fill: rgba(255,255,255,0.3);
    font-size: 10px;
    font-family: monospace;
}

/* --- STATIC SECTIONS --- */
section:not(.hero) {
    background: var(--deep-blue);
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

/* COMPARISON SECTION */
section.comparison-sec {
    position: relative;
    padding: 60px 0 120px;
    margin-top: 0;
    z-index: 20;
    background: linear-gradient(to bottom, #1a7fd4 60%, var(--deep-blue) 100%);
    border-radius: 0;
}

.comparison-box {
    background: linear-gradient(135deg, #1a1a5a, #020617);
    border: 1px solid #FF5C00;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.comp-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comp-title {
    color: #FF5C00;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.comp-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.flight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 440px;
}

.flight-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.flight-time {
    display: flex;
    flex-direction: column;
}

.flight-time .time {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: flex-start;
}

.flight-time .time small {
    font-size: 0.75rem;
    margin-left: 2px;
    opacity: 0.7;
}

.flight-time .airport {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-top: 2px;
}

.flight-duration {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    height: 30px; /* align with time */
}

.flight-duration .arrow-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}
.flight-duration .arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 6px solid rgba(255, 255, 255, 0.3);
}

.flight-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-align: right;
}

.flight-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.airline-logo {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.airline-info {
    display: flex;
    flex-direction: column;
}

.flight-stops {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.airline-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.comp-action {
    text-align: center;
    margin-top: -24px;
    position: relative;
    z-index: 25;
}

.btn-comp {
    display: inline-block;
    background: #FF5C00;
    color: #fff;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 10px 20px rgba(255, 92, 0, 0.3);
    transition: var(--transition-smooth);
}

.btn-comp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 92, 0, 0.5);
}

/* ASSURANCE SECTION */
.assurance-sec {
    padding: 40px 0 0px !important;
}

.text-green-light { color: #5CB8FF; margin-bottom: 16px; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -1px; }
.text-silver-light { color: var(--text-silver); font-size: 1.05rem; max-width: 550px; margin: 0 auto; line-height: 1.6; }
.mb-60 { margin-bottom: 60px; }
.text-center { text-align: center; }

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card-assurance {
    background: rgba(29, 161, 242, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 44px 36px;
    text-align: center;
    transition: var(--transition-smooth);
}

.card-assurance:hover {
    background: rgba(29, 161, 242, 0.38);
    border-color: rgba(255, 92, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.icon-assure {
    width: 52px;
    height: 52px;
    margin: 0 auto 24px;
    color: var(--neon-orange);
}

.assure-svg {
    width: 100%;
    height: 100%;
}

.card-assurance h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.card-assurance p {
    font-size: 0.9rem;
    color: var(--text-silver);
    line-height: 1.5;
}

/* BOOKING REASON SECTION */
.booking-reason-sec {
    padding: 16px 0 60px !important;
}

.booking-card-large {
    background: rgba(29, 161, 242, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 56px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.booking-list-col {
    flex: 6;
}

.booking-list-col h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #fff;
}

.reason-list {
    list-style: none;
}

.reason-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

.reason-list li::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235CB8FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.booking-action-col {
    flex: 4;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.booking-action-col p {
    font-size: 0.9rem;
    color: var(--text-silver);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 280px;
}

.btn-yellow-solid {
    display: inline-block;
    background: #FF5C00;
    color: #fff;
    font-weight: 800;
    padding: 18px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(255, 92, 0, 0.3);
    text-transform: uppercase;
}

.btn-yellow-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 92, 0, 0.5);
}

/* HOW IT WORKS */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--deep-blue);
    border: 3px solid var(--neon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon-orange);
    box-shadow: 0 0 25px rgba(255, 92, 0, 0.2);
}

/* CERTIFICADO CADASTUR */
.cadastur-sec {
    position: relative;
    z-index: 10;
    padding: 60px 0;
    text-align: center;
}

.cadastur-sec .container {
    max-width: 1000px;
    margin: 0 auto;
}

.cadastur-header { margin-bottom: 40px; }
.cadastur-header h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; letter-spacing: -1px; }
.text-white { color: #fff; }
.text-blue { color: #5CB8FF; }

.cadastur-crop {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(92, 184, 255, 0.4), 0 0 80px rgba(29, 161, 242, 0.2), 0 20px 50px rgba(0,0,0,0.6);
}

.cadastur-img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -26%;
    margin-bottom: -4%;
}

/* EXPERT */
.expert-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(29, 161, 242, 0.28);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    max-width: 1000px;
    margin: 0 auto;
}

.expert-photo-box {
    width: 240px;
    height: 320px;
    background: rgba(255,255,255,0.02);
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INSTAGRAM */
.instagram-cta { text-align: center; }
.btn-instagram {
    display: inline-block;
    margin-top: 30px;
    background: var(--neon-orange);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
}

/* FOOTER */
footer { 
    background: #0E487B; 
    padding: 50px 0 0; 
    border-top: 1px solid rgba(255,255,255,0.1); 
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 50px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5; font-weight: 500; }
.footer-logo-img { height: 120px; width: auto; object-fit: contain; display: block; filter: brightness(0) invert(1); }
.footer-contact h3, .footer-hours h3 { font-size: 1rem; font-weight: 800; color: #FFFFFF; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.9); margin-bottom: 8px; font-weight: 600; }
.footer-hours p { font-size: 0.9rem; color: rgba(255,255,255,0.9); margin-bottom: 6px; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0 0 8px rgba(255,255,255,0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 18px rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding: 80px 24px; }
    .why-grid, .steps-container { grid-template-columns: 1fr; flex-direction: column; gap: 50px; }
    .decision-box { flex-direction: column; padding: 50px; text-align: center; }
    .expert-card { flex-direction: column; text-align: center; padding: 40px; }
}

/* --- BLOG PAGE --- */
.blog-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(14, 72, 123, 0.9));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--neon-orange);
    text-shadow: 0 0 40px rgba(255, 92, 0, 0.3);
    margin-bottom: 24px;
    font-weight: 800;
}

.blog-meta {
    color: var(--text-silver);
    font-size: 1.1rem;
    font-weight: 500;
}

.blog-content {
    background: var(--deep-blue);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 92, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.blog-post-card .img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-post-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-card:hover .img-box img {
    transform: scale(1.1);
}

.blog-post-card .info {
    padding: 32px;
}

.blog-post-card .category {
    color: var(--turquoise);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.blog-post-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-post-card p {
    color: var(--text-silver);
    font-size: 1rem;
    line-height: 1.6;
}

.blog-article {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
}

.blog-article h2 {
    color: var(--turquoise);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 60px 0 24px;
    letter-spacing: -1px;
}

.blog-article h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px;
}

.blog-article p {
    margin-bottom: 24px;
}

.blog-article img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 48px 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.blog-article ul, .blog-article ol {
    margin-bottom: 32px;
    padding-left: 24px;
}

.blog-article li {
    margin-bottom: 12px;
}

.blog-article strong {
    color: #fff;
    font-weight: 700;
}

/* Share Buttons */
.share-box {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-btn {
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-btn.whatsapp { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.share-btn:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); }
