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

body {
    font-family: 'Roboto', sans-serif;
    background: #fff; 
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 60%; 
    height: 100%;
    background-color: #abffe34a; 
    transform-origin: top right;
    transform: skewY(15deg) translateX(-10%) rotate(15deg) scale(1.5);
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo img {
    object-fit: cover;
    width: 200px;
    height: 90px;
}

.app-download {
    text-align: right;
}

.app-download p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.store-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #006241;
    font-weight: 500;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #434544; /* Changed to white for better contrast with green background */
}

.highlight {
    color: #006241;
    font-weight: 700;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #434544; ; /* Changed to light color for better contrast with green background */
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.background-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* About Section Styles */
.about-section {
    background-color: #006241;
    color: white;
    position: relative;
    z-index: 2;
}

.about-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 0;
}

.mockup-container {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-right: 40px;
}

.mobile-mockup {
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    position: absolute;
    left: -100px;
    
    transform: rotate(348deg);
    top: 0;
}

.about-content {
    flex: 1;
    padding-left: 20px;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 700;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color:#004d33;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #004d33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.testimonials-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.testimonials-text {
    flex: 1;
    padding-right: 20px;
}

.testimonials-text h2 {
    font-size: 2.8rem;
    color: #006241;
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonials-text h3 {
    font-size: 1.8rem;
    color: #434544;
    margin-bottom: 20px;
    font-weight: 600;
}

.testimonials-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #434544;
    margin-bottom: 25px;
}

.testimonials-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.people-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Download App Section */
.download-section {
    background-color: #006241;
    position: relative;
    overflow: hidden;
    color: white;
}

.download-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.download-text {
    flex: 1;
    padding-right: 20px;
}

.download-text h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 700;
}

.download-text h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 600;
}

.download-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-store-button img, .play-store-button img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-button:hover img, .play-store-button:hover img {
    transform: translateY(-5px);
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features-section {
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #006241;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #006241;
    margin-bottom: 15px;
}

.feature-card p {
    color: #434544;
    line-height: 1.5;
}


@media (max-width: 992px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .about-content h2,
    .testimonials-text h2,
    .download-text h2 {
        font-size: 2.4rem;
    }
    
    .about-content h3,
    .testimonials-text h3,
    .download-text h3 {
        font-size: 1.6rem;
    }
    
    .mockup-container {
        padding-right: 20px;
    }
    
    .mobile-mockup {
        max-width: 450px;
        left: -50px;
    }
    
    .footer-content {
        gap: 20px;
    }
}

/* Dispositivos móveis */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .app-download {
        text-align: center;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-text {
        order: 1;
        padding: 0 15px;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-text p {
        margin: 0 auto 20px;
        font-size: 0.9rem;
    }
    
    /* Mobile styles for About section */
    .about-section {
        padding: 40px 0;
    }
    
    .about-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .mockup-container {
        margin-bottom: 30px;
        padding-right: 0;
        position: relative;
        height: 300px;
        overflow: hidden;
        width: 100%;
    }
    
    .mobile-mockup {
        max-width: 380px;
        left: 50%;
        transform: translateX(-50%) rotate(348deg);
        top: 0;
        position: relative;
    }
    
    .about-content {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Testimonials section mobile styles */
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    
    .testimonials-text {
        padding-right: 0;
        padding: 0 15px;
    }
    
    .testimonials-text h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-text h3 {
        font-size: 1.5rem;
    }
    
    .people-image {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    /* Download section mobile styles */
    .download-section {
        padding: 40px 0;
    }
    
    .download-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    
    .download-text {
        padding: 0 15px;
    }
    
    .download-text h2 {
        font-size: 2.2rem;
    }
    
    .download-text h3 {
        font-size: 1.5rem;
    }
    
    .download-text p {
        margin-bottom: 20px;
    }
    
    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .app-store-button img, 
    .play-store-button img {
        height: 40px;
    }
    
    /* Footer mobile styles */
    .footer {
        padding: 30px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-company {
        align-items: center;
    }
    
    .footer-logo {
        width: 150px;
        height: auto;
        margin-bottom: 15px;
        object-fit: contain;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .footer-contact {
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .contact-email {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .whatsapp-button {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-text .badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .about-content h2,
    .testimonials-text h2,
    .download-text h2,
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content h3,
    .testimonials-text h3,
    .download-text h3 {
        font-size: 1.3rem;
    }
    
    .mobile-mockup {
        max-width: 300px;
    }
    
    .mockup-container {
        height: 250px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer-logo {
        width: 130px;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #f2f2f2;
    padding: 40px 0;
    border-top: 3px solid #006241;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    object-fit: cover;
    width: 200px;
    height: 90px;
}

.footer-legal {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact {
    max-width: 350px;
}

.footer-contact h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-email {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.email-icon {
    font-size: 1.5rem;
}

.contact-email p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
}

.contact-email a {
    color: #006241;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-button {
    display: inline-block;
    background-color: #66cc91;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-button:hover {
    background-color: #57bd82;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-company {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-email {
        justify-content: center;
    }
}