/* Base & Variables */
:root {
    /* Brand Palette */
    --color-primary-dark: #002B4D;
    /* Deep Navy from logo */
    --color-primary: #004080;
    /* Slightly lighter navy */
    --color-accent: #FFA500;
    /* Orange/Mustard */
    --color-secondary: #3B82F6;
    /* Sky Blue */

    /* Neutrals */
    --color-bg: #F0F4F8;
    --color-surface: #FFFFFF;
    --color-text-main: #1E293B;
    --color-text-muted: #64748B;
    --color-light: #F8FAFC;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Decorations */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.globe-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-secondary), transparent 70%);
}

.globe-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-primary), transparent 70%);
    opacity: 0.4;
}

.globe-3 {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--color-accent), transparent 70%);
    opacity: 0.2;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.glass-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-normal);
}

.logo-container img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-primary);
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary) !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: rgba(0, 51, 102, 0.05);
}

.w-100 {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

.highlight {
    color: var(--color-secondary);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 165, 0, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glass Card & Visuals */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
}

.floating-logo {
    width: 60%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Services */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.glass-panel {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-normal);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    margin-bottom: 80px;
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
}

.quote-info {
    background: var(--color-primary-dark);
    color: white;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.quote-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.quote-info h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.quote-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.method span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}

.steps-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.step-dot.active {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.step-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    min-width: 20px;
}

.step span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-form {
    padding: 48px;
    background: white;
}

.quote-form h3 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: #f8fafc;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

/* Footer */
.main-footer {
    background: var(--color-primary-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}

.main-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
    }

    .quote-container {
        grid-template-columns: 1fr;
    }

    .quote-info {
        padding: 32px;
    }

    .quote-form {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Pricing Plans Section */
.plans-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    padding: 40px;
    transition: all 0.4s ease;
    overflow: visible;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.featured-plan {
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge i {
    font-size: 1rem;
}

.plan-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
    min-height: 48px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f5f9;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 8px;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1;
    margin: 0 4px;
}

.plan-price .period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 12px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-features li i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.plan-btn:active {
    transform: translateY(0);
}

/* Responsiveness for Plans */
/* Estilo para badge "MAIS POPULAR" */
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

/* Texto "Ideal para" no header */
.plan-ideal {
    margin: 8px 0 0;
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Nota informativa dos planos */
.plans-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--color-secondary);
    border-radius: 8px;
}

.plans-note p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plans-note i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .featured-plan,
    .plan-card.featured {
        order: -1;
    }

    .popular-badge {
        right: 50%;
        transform: translateX(50%);
    }
}