/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
header {
    background: linear-gradient(135deg, #007bff, #00c4b4);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffeb3b;
}

/* Seção Hero */
.hero {
    background: url('hero-bg.jpg') center/cover no-repeat; /* Substitua por uma imagem ou gradiente */
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(40, 167, 69, 0.8)), url('hero-bg.jpg');
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h2 span {
    color: #ffeb3b;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-shadow: #000 1px 1px 2px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Seção de Números */
.stats {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.stats.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.stats h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #007bff;
}

.stat-item p {
    font-size: 1rem;
}

/* Seção de Screenshots */
.screenshots {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.screenshots.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.screenshots h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

.screenshot-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.screenshot-grid img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.screenshot-grid img:hover {
    transform: scale(1.05);
}

/* Seção de Depoimentos */
.testimonials {
    padding: 80px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.testimonials.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-item i {
    font-size: 2rem;
    color: #28a745;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-item p {
    font-style: italic;
    margin: 20px 0 10px;
}

.testimonial-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #007bff;
}

/* Seção de Contato */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff, #00c4b4);
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.contact.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.contact h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Rodapé */
footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
    text-shadow: #000 0px 0px 1px;
}

footer a:hover {
    text-decoration: underline;
}

.logo-content{
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .stats-grid, .screenshot-grid, .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }

    .stat-item, .testimonial-item {
        width: 100%;
        max-width: 350px;
    }

    .screenshot-grid img {
        width: 200px;
    }
}