* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    position: relative;
    min-height: 100vh;
    color: #fff;
    background-image: url('/image/jersi.com.br_app_financeiro.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 70% escurecimento */
    z-index: -1;
}

header {
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    z-index: 1;
    position: relative;
}

.hero {
    text-align: center;
    margin: 50px 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.whatsapp-button:hover {
    background-color: #F3BA0E;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0;
    gap: 20px;
}

.card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #F3BA0E;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
}
/* Estilo para o texto amarelo */
.yellow {
    color: #F3BA0E;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

}

@media (max-width: 480px) {
    .logo {
        width: 150px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
   
}

/* Estilo Aplicativos */
.aplicativos {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    margin-bottom: 40px;
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    gap: 50px;
}

.aplicativos h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.aplicativos h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.aplicativos p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

.aplicativos .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.aplicativos .text-content {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.aplicativos .image-content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.aplicativos .image-content img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .aplicativos .content {
        flex-direction: column;
        text-align: center;
    }

    .aplicativos .text-content,
    .aplicativos .image-content {
        max-width: 100%;
        padding: 10px;
    }
    .aplicativos h2 {
        font-size: 2rem;
    }
    
    .aplicativos h3 {
        font-size: 1.5rem;
    }
    
    .aplicativos p {
        font-size: 1rem;
    }
}

.diferenciais {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.diferenciais-content {
    max-width: 800px;
    margin: 0 auto;
}

.diferenciais h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.diferenciais-list {
    list-style-type: none;
}

.diferenciais-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.diferenciais-list i {
    color: #F3BA0E;
    margin-right: 10px;
    font-size: 1.3rem;
}
@media (max-width: 768px) {
    .diferenciais-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {    
    .diferenciais {
        padding: 20px;
    }
}

/* Estilo CTA */
.cta-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 80px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefits {
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.cta-benefits p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.cta-benefits i {
    color: #4CAF50;
    margin-right: 15px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cta-variations {
    margin: 30px auto;
    height: 60px;
    position: relative;
    max-width: 700px;
}

.variation {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: #F3BA0E;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.variation.active {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    min-width: 250px;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.4rem;
}

.cta-button:hover {
    background-color: #F3BA0E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-benefits p {
        font-size: 1rem;
    }
    
    .variation {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-container {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-variations {
        height: 80px;
    }
    
    .variation {
        font-size: 1rem;
    }
}

/* Estilo para a seção de copyright */
.copyright {
    flex: 0 0 100%;
    /* Ocupa 100% da largura */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 30px 0;
   
}

.copyright p {
    margin: 5px 40px;
    color: #fff;
    font-size: 1.1em;
}

.copyright i.fa-heart {
    color: #F3BA0E;
    /* Cor do ícone de coração */
}

.copyright a {
    color: #F3BA0E;
    /* Cor do link */
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
    /* Adiciona sublinhado ao passar o mouse */
}