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

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    --secondary: #9333EA;
    --accent: #6366F1;
    --brand-gradient: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-700: #374151;
    --black: #111827;
    --success: #10B981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-700);
    background-color: var(--gray-50);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    font-weight: 600;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    z-index: 100;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    height: 36px;
    width: auto;
    display: block;
}

.logo-text {
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.navbar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: var(--primary);
    padding: 4px 8px;
    line-height: 1;
}

.lang-toggle {
    background: var(--gray-100);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.lang-toggle:hover {
    background: var(--gray-200);
}

.btn-primary-navbar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-navbar:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        border-top: 1px solid var(--gray-100);
    }

    .navbar-menu.open {
        display: flex;
    }

    .navbar-menu .nav-link {
        padding: 14px 24px;
        border-bottom: 1px solid var(--gray-100);
    }

    .navbar-menu .nav-link:last-child {
        border-bottom: none;
    }

    .navbar {
        position: sticky;
    }

    .navbar-container {
        padding: 12px 16px;
        position: relative;
    }

    .navbar-right .btn-primary-navbar {
        display: none;
    }

    .lang-toggle {
        display: none;
    }

    .logo-text {
        font-size: 14px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--brand-gradient);
    color: var(--white);
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--white);
}

.hero p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Variante para fundos escuros/coloridos (hero antigo) */
.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-card {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-card:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
}

.btn-quote {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    grid-column: 1 / -1;
}

.btn-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.3);
}

.btn-cta {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 18px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 24px;
}

.btn-cta:hover {
    background: var(--gray-100);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px 0;
    font-size: 13px;
    color: var(--gray-400);
}

.breadcrumb a { color: var(--gray-700); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 6px; color: var(--gray-300); }
.breadcrumb .current { color: var(--gray-400); }

/* ===== SECTIONS ===== */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    section {
        padding: 50px 16px;
    }

    section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 14px;
    }

    section h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.subtitle {
    text-align: center;
    color: var(--gray-700);
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 18px;
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 20px;
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 16px;
    font-size: 14px;
}

/* ===== QUICK QUOTE ===== */
.quick-quote {
    background: var(--brand-gradient);
    color: var(--white);
}

.quick-quote h2 {
    color: var(--white);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: var(--white);
    color: var(--gray-700);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ===== DESTINATIONS ===== */
.destinations {
    background: var(--gray-50);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.destination-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.dest-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: var(--brand-gradient);
}

.destination-card h3 {
    padding: 16px;
    text-align: center;
    margin: 0;
    color: var(--black);
}

/* ===== STATS ===== */
.stats {
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding: 60px 24px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--gray-700);
    font-weight: 500;
}

/* ===== SUPPORT ===== */
.support {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 16px;
    padding: 60px 40px;
}

.support h2 {
    color: var(--primary);
}

.support-subtitle {
    text-align: center;
    color: var(--gray-700);
    margin-bottom: 32px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checkmark {
    color: var(--success);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.feature p {
    color: var(--gray-700);
    font-weight: 500;
}

.support a {
    display: block;
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FDCB6E;
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.author-location {
    font-size: 13px;
    color: var(--gray-700);
    margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--brand-gradient);
    color: var(--white);
    text-align: center;
    border-radius: 16px;
    padding: 50px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 32px;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 40px 20px;
    }

    .final-cta h2 {
        font-size: 26px;
    }
}

.contact-info {
    margin-top: 24px;
    font-size: 16px;
}

.contact-info p {
    margin: 8px 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 48px 20px 24px;
}

.footer-logo {
    height: 72px;
    width: auto;
    display: block;
    margin: 0 auto 36px;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 60px;
        margin-bottom: 28px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 16px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .footer-bottom {
        padding: 24px 16px 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 14px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
        padding: 0 14px;
    }

    .footer-section h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-section a,
    .footer-section p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-bottom {
        padding: 16px 14px 0;
        font-size: 11px;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 32px;
    padding: 0 20px;
    text-align: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section a {
    display: block;
    color: var(--gray-300);
    margin-bottom: 10px;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 20px 0;
    border-top: 1px solid var(--gray-700);
    font-size: 13px;
    color: var(--gray-400);
}

.footer-bottom p {
    margin: 4px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section {
        padding: 40px 16px;
    }

    section h2 {
        font-size: 28px;
    }

    .hero {
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .btn-quote {
        grid-column: 1;
    }

    .navbar-container {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp svg { width: 32px; height: 32px; fill: var(--white); }

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* ===== HERO MINIMALISTA ===== */
.hero-minimal {
    background: var(--white);
    color: var(--black);
    padding: 80px 20px;
    text-align: left;
}

.hero-minimal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-minimal h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.hero-minimal p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-minimal-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-minimal-visual {
    height: 350px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    overflow: hidden;
}

.hero-minimal-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero-minimal {
        padding: 60px 16px;
    }

    .hero-minimal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-minimal h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-minimal p {
        font-size: 15px;
    }

    .hero-minimal-visual {
        height: 280px;
        font-size: 80px;
    }

    .hero-minimal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-minimal-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-700);
}

.trust-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-bar span::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

/* ===== SERVICE CARD LG ===== */
.service-card-lg {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-lg:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.service-card-lg .service-icon {
    font-size: 60px;
    margin-bottom: 16px;
}

/* ===== IMAGENS DE CARDS ===== */
.card-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    display: block;
}

.dest-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    display: block;
}

.service-card-lg h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--black);
}

.service-card-lg p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== STATS DARK ===== */
.stats-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-dark .stat-item h3 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 8px;
}

.stats-dark .stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .stats-dark {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 50px 16px;
    }

    .stats-dark .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats-dark {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 14px;
    }

    .stats-dark .stat-item h3 {
        font-size: 32px;
    }
}
