:root {
    --color-navy: #1F2336;
    --color-navy-dark: #121526;
    --color-yellow: #F7C116;
    --color-green: #25D366;
    --color-green-hover: #1ebd5a;
    --color-white: #FFFFFF;
    --color-bg-light: #F7F4F1;
    --color-text-dark: #333333;
    --color-text-muted: #666666;
    --color-border: #E0E0E0;

    --font-heading: 'Merriweather', serif;
    --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background-color: var(--color-bg-light); color: var(--color-text-dark); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-yellow { color: var(--color-yellow); }
.text-green { color: var(--color-green); }
.mt-4 { margin-top: 2rem; }
.bg-light { background-color: var(--color-white); }
.dark-navy { background-color: var(--color-navy); }
.max-width-p { max-width: 800px; margin: 0 auto 20px auto; }

/* Typo */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-navy); }
h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; font-weight: 700; }
h2 { font-size: 2.2rem; line-height: 1.3; margin-bottom: 20px; }
p { font-size: 1.1rem; color: var(--color-text-muted); font-weight: 400; }

/* Navbar - AGORA ESCURA CONFORME PEDIDO */
.navbar { background: var(--color-navy-dark); padding: 15px 0; border-bottom: 2px solid var(--color-yellow); }
.logo { max-height: 50px; }

/* Lang */
.lang-switcher { position: fixed; top: 15px; right: 20px; display: flex; gap: 8px; z-index: 2000; }
.lang-btn { background: var(--color-white); border: 1px solid var(--color-border); padding: 5px 12px; border-radius: 4px; cursor: pointer; font-weight: 500; font-family: var(--font-body); }
.lang-btn.active { background: var(--color-yellow); color: var(--color-navy-dark); border-color: var(--color-yellow); }

/* Buttons */
.btn { display: inline-block; padding: 15px 35px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.15rem; transition: 0.3s; border: none; cursor: pointer; }
.btn-green { background: var(--color-green); color: var(--color-white); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-green:hover { background: var(--color-green-hover); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--color-navy); border: 2px solid var(--color-navy); display: inline-block; padding: 10px 20px; font-size: 1rem; margin-top: 15px; width: 100%; border-radius: 6px; text-align: center; }
.btn-outline:hover { background: var(--color-navy); color: var(--color-white); }


/* Hover Play Overlay for Services Images */
.service-img-overlay { position: absolute; top:0; left:0; right:0; bottom:0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; border-radius: 8px; cursor: pointer; }
.service-img-container:hover .service-img-overlay { opacity: 1; }
.service-img-overlay i { font-size: 4rem; color: var(--color-white); text-shadow: 0 4px 15px rgba(0,0,0,0.3); }

/* Hero */
.hero-section {
    position: relative; padding: 120px 0 80px 0; min-height: 90vh; display: flex; align-items: center; background-size: cover; background-position: center 10%; background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(31, 35, 54, 0.95) 0%, rgba(31, 35, 54, 0.6) 100%); z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-text-box { max-width: 700px; }
.hero-text-box h1 { color: var(--color-white); }
.hero-text-box p { color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; font-size: 1.2rem; }

/* Trust */
.trust-section { padding: 80px 0; background: var(--color-bg-light); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 15px; font-size: 1.1rem; color: var(--color-navy); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.trust-image img { width: 100%; max-width: 400px; border-radius: 10px; display: block; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Services */
.services-section { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; justify-items: center; }
.service-card { padding: 0; border-radius: 8px; border: none; transition: 0.3s; position: relative; width: 100%; max-width: 250px; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-5px); }
.service-img-container { position: relative; width: 100%; height: auto; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.service-img-container img { width: 100%; display: block; object-fit: cover; }

/* Bars */
.yellow-bar { background: var(--color-yellow); padding: 20px; }
.yellow-bar h3 { color: var(--color-navy); font-size: 1.8rem; margin: 0; font-family: var(--font-heading); }

/* Success */
.success-section { padding: 80px 0; }
.success-section h2 { color: var(--color-white); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.testimonial-card iframe { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); background-color: #000; width: 100%; max-width: 220px; margin: 0 auto; display: block; aspect-ratio: 9/16; }

/* Second CTA */
.second-cta-section { padding: 80px 0; background: var(--color-bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 30px auto; }
.feature-box { background: var(--color-navy); padding: 20px; border-radius: 8px; color: var(--color-white); }
.feature-box p { color: var(--color-white); margin: 0; font-weight: 500; margin-top: 10px; }
.feature-box i { font-size: 2rem; }

/* Footer Form */
.footer-form-section {
    position: relative; padding: 100px 0 60px 0; min-height: 40vh; background: url('../assets/img/footer_liberty.png') no-repeat center center/cover;
}
.footer-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(18, 21, 38, 0.85); z-index: 1; }
.footer-content { position: relative; z-index: 2; }
.footer-content h2 {color: var(--color-white);}
.footer-content p {color: rgba(255, 255, 255, 0.8);}
.footer-legal p { font-size: 0.85rem; margin-bottom: 5px; color: rgba(255,255,255,0.5);}

/* Video Modal Styles */
.modal { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.modal-content { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16/9; background: #000; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.modal-content iframe { position: absolute; top:0; left:0; width: 100%; height: 100%; border: none; border-radius: 8px; }
.close-modal { position: absolute; top: -40px; right: 0; color: #fff; font-size: 30px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--color-yellow); }

/* Authors & Social */
.trust-badges { margin-top: 30px; display: flex; gap: 15px; flex-wrap: wrap; }
.trust-badges a { display: inline-flex; align-items: center; gap: 10px; background: var(--color-white); padding: 10px 15px; border-radius: 6px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-decoration: none; color: var(--color-navy); font-weight: 600; font-size: 0.95rem; border: 1px solid var(--color-border); transition: 0.3s; }
.trust-badges a i { font-size: 1.5rem; }
.trust-badges a:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.spotify-badge { color: #1DB954 !important; }
.abrasci-badge { color: #003366 !important; }

/* Map Section */
.map-section { padding: 80px 0; background: var(--color-white); }
.map-container { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }
.map-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) {
    .map-addresses { grid-template-columns: 1fr; }
}
.map-card { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 8px; padding: 20px; display: flex; align-items: flex-start; gap: 15px; }
.map-card i { color: var(--color-yellow); font-size: 1.5rem; margin-top: 5px; }
.map-card h4 { font-size: 1.1rem; margin-bottom: 5px; }
.map-card p { font-size: 0.95rem; margin-bottom: 15px; }
.map-card .btn-outline { margin-top: 0; width: auto; padding: 8px 15px; font-size: 0.9rem; }
.map-embed { width: 100%; height: 220px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid var(--color-border); }

/* Visa Pages Specifics */
.visa-hero { min-height: 60vh; padding: 120px 0 60px 0; background-color: var(--color-navy-dark); position: relative; display: flex; align-items: center; background-size: cover; background-position: center 10%; background-repeat: no-repeat; }
.visa-hero::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(135deg, rgba(31,35,54,0.95) 0%, rgba(31,35,54,0.7) 100%); z-index: 1; }
.visa-content-section { padding: 60px 0; }
.visa-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
@media (max-width: 900px) { .visa-grid { grid-template-columns: 1fr; } }
.visa-card { background: var(--color-white); padding: 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 30px; }
.visa-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--color-navy); }
.visa-card h3 i { color: var(--color-yellow); }
.visa-list { list-style: none; }
.visa-list li { margin-bottom: 15px; padding-left: 25px; position: relative; }
.visa-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--color-green); }

/* Document Cards */
.doc-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
.doc-card { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 8px; transition: 0.3s; text-decoration: none; color: var(--color-text-dark); }
.doc-card:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-color: var(--color-navy); }
.doc-card-info { display: flex; align-items: center; gap: 15px; }
.doc-card-info i { font-size: 1.8rem; color: #e74c3c; } /* PDF Red */
.doc-card-info div p { margin: 0; font-weight: 600; color: var(--color-navy); line-height: 1.2; }
.doc-card-info div span { font-size: 0.85rem; color: var(--color-text-muted); }
.doc-download-btn { background: var(--color-navy); color: #fff; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Social Icons */
.social-icons { margin-top: 20px; display: flex; justify-content: center; gap: 15px; }
.social-icons a { color: rgba(255,255,255,0.7); font-size: 1.5rem; transition: 0.3s; }
.social-icons a:hover { color: var(--color-white); transform: translateY(-2px); }



/* Media Section */
.news-section { padding: 80px 0; background-color: var(--color-white); }
.news-container { max-width: 900px; margin: 40px auto; text-align: center; }
/* Offices & Maps */
.offices-section { padding: 80px 0; background-color: var(--color-bg-light); border-top: 1px solid var(--color-border); }
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.office-card { background: var(--color-white); padding: 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.office-img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 20px; }
.map-frame { width: 100%; height: 160px; border: none; border-radius: 10px; margin-top: 15px; }

/* Media Badge */
.media-badge { color: #f39c12 !important; }

/* Image Modal Styles */
.modal-image-container { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; overflow: auto; }
.zoomable-img { max-width: 90%; max-height: 85vh; border-radius: 8px; transition: transform 0.3s ease, cursor 0.3s; cursor: zoom-in; box-shadow: 0 10px 40px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.2); }
.zoomable-img.zoomed { transform: scale(1.8); cursor: zoom-out; }

/* Navigation */
.btn-back { display: inline-flex; align-items: center; gap: 8px; color: var(--color-white); text-decoration: none; font-weight: 500; font-size: 0.95rem; background: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 20px; transition: 0.3s; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.btn-back:hover { background: var(--color-yellow); color: var(--color-navy); border-color: var(--color-yellow); }

@media (max-width: 768px) {
    .trust-grid, .features-grid, .offices-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-section { padding: 100px 0 60px 0; text-align: center; }
    .zoomable-img.zoomed { transform: scale(1.2); }
}
