
/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2a70aa 0%, #368bd1 33%, #1d91de 66%, #0e5280 100%);
    min-height: 100vh;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Navigation */
.navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.nav-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.icon {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem;
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contacts .contact-item {
    color: #2a70aa;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    animation: fadeIn 0.6s ease-out;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    display: block;
    background: linear-gradient(to bottom, #ffffff, #8cccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.emoji {
    font-size: 1.5rem;
}

.hero-subtitle p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 64rem;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}


.card-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #2a70aa;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 25%;
    left: 10%;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: 0s;
}

.element-2 {
    bottom: 25%;
    right: 10%;
    width: 4rem;
    height: 4rem;
    background: rgba(251, 191, 36, 0.2);
    animation-delay: 3s;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    display: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Partners Section */
.partners {
    padding: 5rem 0;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.partners-header h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.partners-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.brand {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.brand:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #2a70aa;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    text-align: center;
}

.footer-column h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-icon {
    font-size: 1.25rem;
}

.footer-contacts,
.footer-info,
.footer-address {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.footer-contacts .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-info p,
.footer-address p {
    margin-bottom: 0.5rem;
}

.footer-info p:first-child {
    margin-bottom: 1rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-contacts {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }
    
    .hero {
        padding: 2rem 1rem;
        min-height: calc(100vh - 4rem);
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 20rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3 {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .element-1,
    .element-2 {
        display: block;
    }
    
    .footer-column:first-child {
        text-align: left;
    }
    
    .footer-column:first-child h3 {
        justify-content: flex-start;
    }
    
    .footer-column:last-child {
        text-align: right;
    }
    
    .footer-column:last-child h3 {
        justify-content: flex-end;
    }
}

/* Utilities */
.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


svg.lucide.lucide-users.w-8.h-8.text-yellow-400.mb-3.mx-auto {
    width: auto;
    height: 36px;
    color: #ffd600;
}

svg.lucide.lucide-trending-up.w-8.h-8.text-green-400.mb-3.mx-auto {
    color: #04ff19;
    font-size: 17px;
    height: 36px;
    width: auto;
}