:root {
    /* Colors as requested */
    --color-primary: #0A2540; /* Dark Blue */
    --color-accent: #2D9CDB;  /* Light Blue/Cyan */
    --color-white: #FFFFFF;
    --color-light-gray: #F7F9FC;
    --color-text-dark: #1E293B;
    --color-text-medium: #475569;
    --color-border: #E2E8F0;
    
    /* Typography as requested */
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
    
    /* Variables */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 25px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 700; color: var(--color-white); }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.mb-4 { margin-bottom: 2rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-spacing {
    padding: 6rem 0;
}

.bg-white { background-color: var(--color-white); }
.bg-light { background-color: var(--color-light-gray); }
.text-center { text-align: center; }
.text-blue { color: var(--color-accent) !important; text-shadow: 0 0 1px var(--color-accent); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: #2481B5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

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

/* Header */
.header {
    background-color: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.nav a {
    color: var(--color-white);
    margin: 0 1.25rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav a:hover {
    color: var(--color-accent);
}

/* BLOCO 1 - HERO */
.hero {
    background-color: var(--color-primary);
    padding-top: 10rem;
    padding-bottom: 6rem;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(45, 156, 219, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero p {
    color: #e2e8f0;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.center-buttons { justify-content: center; }

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* BLOCO 2 - POSICIONAMENTO */
.posicionamento h2 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 2.25rem;
}
.posicionamento p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* BLOCO 3 - SERVIÇOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(45, 156, 219, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(45, 156, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--color-accent);
}

.card-large {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
}
.feature-list i {
    font-size: 1.25rem;
}

/* BLOCO 4 - PROCESSO */
.highlight-text {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 4rem;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--color-white);
    width: 120px;
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-white);
    border: 2px solid var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition);
    box-shadow: 0 0 0 4px var(--color-white);
}

.step:hover .step-number {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.step h4 {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin: 0;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--color-border);
    position: relative;
    top: 1.75rem;
    z-index: 1;
    margin: 0 -20px;
}

/* BLOCO 5 - SUPORTE */
.suporte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.illustration {
    background: linear-gradient(135deg, rgba(10,37,64,0.05) 0%, rgba(45,156,219,0.1) 100%);
    border-radius: var(--radius-lg);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: var(--color-accent);
    border: 1px dashed rgba(45, 156, 219, 0.3);
}

.bullet-list {
    list-style: none;
    margin: 2rem 0;
}
.bullet-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
}
.bullet-list i {
    font-size: 1.5rem;
}

.suporte-highlight {
    background: rgba(45, 156, 219, 0.05);
    border-left: 4px solid var(--color-accent);
    padding: 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* BLOCO 6 - BENEFÍCIOS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    background-color: var(--color-light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 156, 219, 0.2);
}
.benefit-item i {
    font-size: 1.75rem;
}

/* BLOCO 7 - AUTORIDADE */
.autoridade {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8rem 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(45, 156, 219, 0.1) 0%, transparent 40%);
}

.autoridade h2 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

/* FOOTER */
.footer {
    background-color: #051221;
    color: #94A3B8;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-text {
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 2rem;
}

.footer-brand p {
    max-width: 400px;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}
.footer-links i {
    font-size: 1.25rem;
}
.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.875rem;
}

/* BOTÃO FIXO (WHATSAPP) */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-container, .suporte-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .step-connector {
        width: 2px;
        height: 4rem;
        top: 0;
        margin: 0;
    }
    .autoridade h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-spacing { padding: 4rem 0; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .hero { padding-top: 8rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .card-large { grid-column: span 1; }
    .benefits-grid { grid-template-columns: 1fr; }
    .header .nav { display: none; }
    .header .btn { display: none !important; }
}
