:root {
    /* Color Palette - Premium Corporate */
    --primary: #0056b3;
    --primary-dark: #003d80;
    --primary-light: #e6f0ff;
    --secondary: #00b4d8;
    --accent: #ffd700;
    --text-main: #1a1a1a;
    --text-muted: #4a4a4a;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 5px 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1100px !important;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo span {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(0, 163, 255, 0.4) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-content {
    flex: 1;
    color: white;
    text-align: left;
    border-left: none; /* Removed the previous border */
    padding-left: 0;
}

.hero h1 {
    color: white !important;
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 550px;
}

.hero-form-container {
    flex: 0 0 400px;
}

.hero-form-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.hero-form-card h3 {
    color: #1e293b;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.hero-form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-card input, 
.hero-form-card select {
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f8fafc;
}

.hero-info-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.info-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 25;
}

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

.btn-cyan {
    background: #00A3FF;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.3);
}

.btn-cyan:hover {
    background: #0088D6;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #1e293b;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-header {
    padding: 10px 25px !important;
    font-size: 0.9rem !important;
}

.btn-whatsapp {
    background: #25d366;
    color: white !important;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Features/Services Card */
.card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card {
    padding: 30px !important;
}

/* Section Headlines */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Logistics Section */
.logistics-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--primary-light);
    padding: 60px;
    border-radius: 30px;
}

.logistics-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.zones-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.zones-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.zones-list li i {
    color: var(--primary);
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.pricing-body {
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.pricing-body p {
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-copy {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
    .floating-header { top: 10px; }
    .header-pill { padding: 5px 20px !important; border-radius: 40px; margin: 0 10px; }
    .nav-links a:not(.btn) { display: none; }
    .logo img { height: 35px; }

    .hero { height: auto; padding: 140px 0 60px; }
    .hero-layout { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content { text-align: center; width: 100%; }
    .hero h1 { font-size: 2.6rem; letter-spacing: -1px; }
    .hero p { font-size: 1.1rem; margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .hero-form-container { width: 100%; flex: none; }
    .hero-form-card { width: 100%; padding: 25px; border-radius: 20px; }
    .hero-info-badges { flex-direction: column; gap: 10px; }
    
    .logistics-box { flex-direction: column; text-align: center; padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .section-padding .btn-whatsapp { 
        padding: 15px 25px !important; 
        font-size: 1rem !important;
        width: 100%;
        justify-content: center;
    }

    .pricing-card.featured { transform: scale(1); margin: 20px 0; }
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    color: white;
    padding: 15px 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.lgpd-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.lgpd-content p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.lgpd-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.btn-sm {
    padding: 8px 25px !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
}

@media (max-width: 768px) {
    .lgpd-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .lgpd-banner {
        padding: 20px 0;
    }
}
