/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    padding-top: 70px;
}

html {
    scroll-padding-top: 70px;
}

/* Contêiner Geral */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos do Header */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to right, rgba(0, 39, 77, 0.95), rgba(0, 76, 140, 0.95));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 70px; /* Altura fixa definida */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-titles {
    display: flex;
    flex-direction: column;
}

.header-titles h1 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.header-titles h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.nav-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-buttons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-buttons a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1000;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    position: absolute;
    left: 8px;
}

.hamburger-line:nth-child(1) {
    top: 12px;
}

.hamburger-line:nth-child(2) {
    top: 19px;
}

.hamburger-line:nth-child(3) {
    top: 26px;
}

/* Animação para X quando menu está ativo */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-buttons {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 39, 77, 0.95);
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-buttons.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-buttons a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header-titles h1 {
        font-size: 1.1rem;
    }

    .header-titles h3 {
        font-size: 0.8rem;
    }
}


/* Seção Hero */
.hero-section {
    position: relative;
    min-height: 70vh;
    padding-top: 2rem; /* Adiciona um espaço extra no topo da primeira seção */
    background: linear-gradient(135deg, #3a3a3a, #1c1c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

.hero-section:hover .hero-overlay {
    animation: subtleMove 10s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
    padding: 2rem;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.15;
    }
}

@keyframes subtleMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.hero-title-container {
    position: relative;
    height: auto;
    min-height: 4rem;
    margin-bottom: 6rem;
    overflow: visible;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-container {
        min-height: 3rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        position: relative;
    }
    
    .hero-title-container {
        min-height: auto;
        height: auto;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* Ajuste adicional para telas muito pequenas */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

#hero-title-1 {
    opacity: 1;
    transform: translateY(0);
}

.fade-out {
    opacity: 0 !important;
    transform: translateY(-20px) !important;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.download-btn {
    text-decoration: none;
    background: linear-gradient(to right, #00274d, #004c8c);
    color: #ffffff; /* Mudando a cor do texto para branco */
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 39, 77, 0.4);
    opacity: 0.9;
}

.hero-cta a:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 39, 77, 0.3);
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-cta a:hover .btn-icon {
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: nowrap;
    width: 100%;
}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background-color 0.3s ease;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 1rem;
    color: #ffffff;
    white-space: nowrap;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;  /* Aumentado o padding lateral */
    }

    .feature {
        width: 100%;
        padding: 1.25rem;   /* Aumentado o padding interno */
        margin: 0.5rem 0;
        min-height: 80px;   /* Garantir altura mínima */
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.12);  /* Levemente mais visível */
    }

    .feature-icon {
        font-size: 2.5rem;  /* Aumentado o tamanho do ícone */
        margin-right: 1rem; /* Espaço entre ícone e texto */
        min-width: 45px;    /* Largura mínima para alinhamento */
    }

    .feature span {
        font-size: 1.2rem;  /* Aumentado o tamanho da fonte */
        font-weight: 500;   /* Deixando o texto um pouco mais forte */
        color: #ffffff;
        text-align: left;
        line-height: 1.3;   /* Melhor espaçamento entre linhas */
    }

    /* Ajustes específicos para o card em destaque */
    .feature.featured {
        padding: 1.5rem;    /* Padding ainda maior para o card destacado */
        background: linear-gradient(135deg, rgba(245, 249, 255, 0.15), rgba(187, 222, 251, 0.15));
    }

    .feature.featured span {
        font-size: 1.3rem;  /* Texto ainda maior para o card destacado */
        font-weight: 600;
    }

    .feature.featured .feature-icon {
        font-size: 2.8rem;  /* Ícone ainda maior para o card destacado */
    }

    /* Remove hover effects em mobile */
    .feature:hover {
        transform: none;
    }
    
    .hero-cta a {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    body {
        padding-top: 70px; /* Mantém o mesmo padding em mobile */
    }
    
    .hero-section {
        min-height: 60vh; /* Reduz um pouco a altura em telas menores */
        padding-top: 1rem; /* Reduz o padding extra em mobile */
    }

    .hero-description {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 380px) {
    .feature {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2.2rem; /* Ligeiramente menor para telas muito pequenas */
    }

    .feature span {
        font-size: 1.1rem; /* Ligeiramente menor para telas muito pequenas */
    }
}


/* Seção de Funcionalidades */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #00274d;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00274d, #004c8c);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00274d 0%, #004c8c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.feature-icon .icon {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #00274d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0;
    overflow: hidden;
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(0);
}

.feature-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-hover li {
    color: #004c8c;
    padding: 8px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 76, 140, 0.1);
}

.feature-hover li:first-child {
    border-top: none;
}

.feature-card:hover .feature-hover,
.feature-card.show-mobile .feature-hover {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in.show-mobile {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .features {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .feature-hover {
        margin-top: 0;
    }
    
    .feature-card.show-mobile {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

.feature.featured {
    background: linear-gradient(135deg, #f5f9ff, #bbdefb);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.feature.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 2s infinite;
    transform: skewX(-20deg);
}

.feature.featured .feature-icon {
    animation: bounce 2s infinite;
}

.feature.featured span {
    font-weight: 700;
    font-size: 1.1em;
    color: #0f5db6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animações */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

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

/* Ajustes responsivos */
@media (max-width: 768px) {
    .feature.featured {
        transform: scale(1.02);
    }
}

/* Seção Como Funciona */
.how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #00274d;
    position: relative;
}

.how-it-works h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00274d, #004c8c);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.steps::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, 
        #004c8c 0%, 
        #004c8c 50%,
        #e0e0e0 50%,
        #e0e0e0 100%
    );
    background-size: 200% 100%;
    animation: progressLine 3s infinite;
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    background: white;
    margin: 0 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step::before {
    content: attr(data-step);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00274d, #004c8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 39, 77, 0.3);
}

.step-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-top: 20px;
}

.step h3 {
    color: #00274d;
    font-size: 1.25rem;
    margin: 15px 0;
    position: relative;
}

.step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00274d, #004c8c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes progressLine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 968px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .steps::before {
        display: none;
    }

    .step {
        width: 100%;
        max-width: 400px;
        margin: 20px 0;
    }

    .step::after {
        content: '';
        position: absolute;
        width: 2px;
        height: 40px;
        background: #004c8c;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }

    .step:last-child::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .step {
        padding: 15px;
    }

    .step::before {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* Seção Chamada para Ação */
.call-to-action {
    background: linear-gradient(135deg, #00274d, #004c8c);
    position: relative;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

/* Grid de fundo animado */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(20, 1fr);
    opacity: 0.07;
    z-index: 1;
}

.grid-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.grid-item.active {
    background: rgba(255, 255, 255, 0.2);
    animation: gridPulse 2s infinite;
}

@keyframes gridPulse {
    0% { background: rgba(255, 255, 255, 0.2); }
    50% { background: rgba(59, 130, 246, 0.3); }
    100% { background: rgba(255, 255, 255, 0.2); }
}

/* Partículas flutuantes */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: float 8s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(-50px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Overlay pattern para dar textura */
.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.call-to-action h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.call-to-action p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #94a3b8;
}

.call-to-action .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.call-to-action .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px; /* Espaço entre o ícone e o texto */
    min-width: 220px; /* Garante largura mínima para o botão */
    justify-content: center;
}

.btn-icon-store {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-store svg {
    width: 24px;
    height: 24px;
}

/* Estilo específico para o botão da App Store */
.btn.app-store {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Estilo específico para o botão da Play Store */
.btn.play-store {
    background: #ffffff;
    color: #00274d;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .call-to-action .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .btn-icon-store svg {
        width: 20px;
        height: 20px;
    }
}

/* Botão App Store */
.call-to-action .btn:first-child {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Botão Google Play */
.call-to-action .btn:last-child {
    background: #ffffff;
    color: #00274d;
}

.call-to-action .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.call-to-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.call-to-action .btn:hover::before {
    left: 100%;
}

.call-to-action .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Animação de fundo */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .call-to-action {
        padding: 60px 0;
    }

    .call-to-action h2 {
        font-size: 2rem;
    }

    .call-to-action p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .call-to-action .buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .call-to-action .btn {
        width: 80%;
        justify-content: center;
    }
}

/* Adicione estes estilos ao seu arquivo styles.css */

.download-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
}

/* Efeito de brilho nas bordas */
.popup-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.popup-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-app {
    color: #4a9eff;
    position: relative;
    z-index: 2;
}

.icon-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: ping 2s infinite;
}

.popup-content h3 {
    color: white;
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, #4a9eff, #8f6aff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.popup-subtitle {
    color: #a0a0a0;
    margin: 0 0 20px;
    text-align: center;
    font-size: 14px;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #808080;
    font-size: 12px;
}

.feature-item svg {
    color: #4a9eff;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4a9eff, #8f6aff);
    animation: progress 4s linear;
}

.popup-footer {
    color: #606060;
    text-align: center;
    font-size: 12px;
    margin: 0;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes ping {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

@keyframes progress {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsividade */
@media (max-width: 480px) {
    .popup-content {
        padding: 20px;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Rodapé */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
}

.contact-info p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .feature-item,
    .step,
    .testimonial-item {
        width: 100%;
        margin: 20px 0;
    }

    .steps {
        flex-direction: column;
    }
}

/* Menu Responsivo */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
    }
    nav.active ul {
        display: flex;
    }
    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }
}

/* Efeito Hover em Links */
nav ul li a:hover {
    color: #ffb400;
    transition: color 0.3s ease;
}

/* Seção Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('banner.jpg');
    background-size: cover;
    background-position: center;
}
.hero h2, .hero p {
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards com Sombras */
.feature-item {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: scale(1.05);
}

/* Animação de Botão */
.btn:hover {
    animation: pulse 0.6s infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Rodapé */
footer {
    background: linear-gradient(135deg, #001529, #002a4d);
    color: #ffffff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Overlay com padrão geométrico */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media a:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.social-media a svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.social-media a:hover svg {
    fill: #002a4d;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    width: 18px;
    height: 18px;
    fill: #0099ff;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 568px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 60px 0 30px;
    }

    .footer-section {
        text-align: center;
        align-items: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Pop-up de "EM BREVE" */

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.close-popup:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.5);
}

.popup-content {
    position: relative; /* Garantir que o botão de fechar se posicione corretamente */
}