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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Header Top */
.header-top {
    background: #0a1929;
    color: white;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-left::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.header-top-right {
    display: flex;
    gap: 30px;
}

.header-top-right a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.header-top-right a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s;
}

.header-top-right a:hover {
    color: white;
}

.header-top-right a:hover::after {
    width: 100%;
}

/* Header Main */
.header-main {
    background: white;
    padding: 24px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-main-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 68px;
    height: 68px;
    background: #1e5bb8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(30, 91, 184, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    transform: rotate(45deg);
    animation: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 48px rgba(30, 91, 184, 0.4);
}

.logo svg {
    width: 38px;
    height: 38px;
    fill: white;
    position: relative;
    z-index: 1;
}

.logo-text h1 {
    font-size: 26px;
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.btn-entrar {
    background: #1e5bb8;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 91, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-entrar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.5s;
}

.btn-entrar:hover::before {
    left: 100%;
}

.btn-entrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 91, 184, 0.4);
    background: #164a9a;
}

.btn-entrar:active {
    transform: translateY(0);
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-menu li a {
    display: block;
    padding: 20px 28px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #1e5bb8;
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.nav-menu li a:hover {
    color: #1e5bb8;
}

.nav-menu li a:hover::before {
    width: 70%;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-box:focus-within {
    border-color: #1e5bb8;
    box-shadow: 0 4px 16px rgba(30, 91, 184, 0.15);
    transform: translateY(-1px);
}

.search-box input {
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    width: 220px;
    font-weight: 500;
    color: #1a1a1a;
}

.search-box input::placeholder {
    color: #94a3b8;
}

.search-box button {
    background: #1e5bb8;
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background: #164a9a;
}

/* Hero Section */
.hero {
    background: #1e5bb8;
    color: white;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #f8f9fa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
    line-height: 1.25;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
    font-size: 13px;
    opacity: 0.8;
    font-weight: 500;
}

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

/* Services Section */
.services {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-item {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #1e5bb8;
    box-shadow: 0 4px 16px rgba(30, 91, 184, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #1e5bb8;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h3 {
    font-size: 42px;
    font-weight: 800;
    color: #0a1929;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.services-header p {
    font-size: 19px;
    color: #64748b;
    font-weight: 500;
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1e5bb8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(30, 91, 184, 0.15);
    border-color: rgba(30, 91, 184, 0.1);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-badge {
    background: #e3f2fd;
    color: #1e5bb8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
}

.service-icon {
    width: 88px;
    height: 88px;
    background: #e3f2fd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 91, 184, 0.1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #1e5bb8, #2d7dd2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(30, 91, 184, 0.2);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon svg {
    width: 44px;
    height: 44px;
    fill: #1e5bb8;
}

.service-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.btn-saiba-mais {
    color: #1e5bb8;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 15px;
    position: relative;
}

.btn-saiba-mais::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e5bb8;
    transition: width 0.3s;
}

.service-card:hover .btn-saiba-mais {
    gap: 14px;
}

.service-card:hover .btn-saiba-mais::after {
    width: calc(100% - 22px);
}

/* Footer */
footer {
    background: #0a1929;
    color: white;
    padding: 60px 40px 30px;
    margin-top: 100px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4ade80;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-main-content,
    .nav-content,
    .hero-content,
    .services {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero h2 {
        font-size: 40px;
    }

    .hero-stats {
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-main-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li a {
        text-align: center;
    }

    .hero {
        padding: 80px 24px;
        min-height: 400px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .hero h2 {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .services-header h3 {
        font-size: 32px;
    }

    .services-features {
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
    </style>
