* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Open Sans', sans-serif;

    line-height: 1.6;

    color: #1a1a1a;

    background-color: #ffffff;

}



h1, h2, h3, h4, h5, h6 {

    font-family: 'Montserrat', sans-serif;

    font-weight: 700;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 1rem;

}



/* Hero Section - Ajustado para ficar igual ao React */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    color: white;

}



/* Background com overlay - igual ao React */

.hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://www.mwtransfer.com.br/lp/img/sao_joao.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: 1;

}



/* Gradiente adicional para melhor contraste - igual ao React */

.hero::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 50%, rgba(255, 107, 0, 0.2) 100%);

    z-index: 2;

}



.hero-content {

    position: relative;

    z-index: 10;

    text-align: center;

    max-width: 1024px;

    margin: 0 auto;

    animation: fadeInUp 0.8s ease-out;

}



.hero h1 {

    font-family: 'Montserrat', sans-serif;

    font-size: 3rem;

    font-weight: 700;

    margin-bottom: 1.5rem;

    line-height: 1.2;

    animation: fadeInUp 0.8s ease-out;

}



.hero .highlight {

    display: block;

    color: #ff6b00;

}



.hero p {

    font-size: 1.25rem;

    margin-bottom: 2rem;

    color: #e5e7eb;

    max-width: 768px;

    margin-left: auto;

    margin-right: auto;

    line-height: 1.6;

    animation: fadeInUp 0.8s ease-out 0.2s both;

}



.hero p span {

    display: block;

    margin-top: 0.5rem;

}



.btn {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    padding: 1.5rem 2rem;

    background-color: #25D366;

    color: white;

    text-decoration: none;

    border-radius: 9999px;

    font-weight: 600;

    font-size: 1.125rem;

    transition: all 0.3s ease;

    border: none;

    cursor: pointer;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    animation: fadeInUp 0.8s ease-out 0.4s both, pulse-soft 2s ease-in-out infinite;

}



.btn:hover {

    background-color: #128C7E;

    transform: scale(1.05);

    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);

}



.btn:active {

    transform: scale(0.98);

}



/* Elemento decorativo - igual ao React */

.scroll-indicator {

    position: absolute;

    bottom: 2.5rem;

    left: 50%;

    transform: translateX(-50%);

    animation: bounce 2s infinite;

    z-index: 10;

}



.scroll-indicator-inner {

    width: 1.5rem;

    height: 2.5rem;

    border: 2px solid white;

    border-radius: 9999px;

    display: flex;

    justify-content: center;

}



.scroll-indicator-dot {

    width: 0.25rem;

    height: 0.75rem;

    background: white;

    border-radius: 9999px;

    margin-top: 0.5rem;

    animation: pulse 2s infinite;

}



/* Services Section */

.services {

    padding: 5rem 0;

    background: linear-gradient(to bottom right, #f9fafb, #ffffff);

}



.section-header {

    text-align: center;

    margin-bottom: 4rem;

    animation: fadeIn 0.6s ease-out;

}



.section-header h2 {

    font-size: 2.5rem;

    color: #1a1a1a;

    margin-bottom: 1rem;

}



.section-header p {

    font-size: 1.125rem;

    color: #6b7280;

    max-width: 32rem;

    margin: 0 auto;

}



.services-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.5rem;

}



@media (min-width: 768px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (min-width: 1024px) {

    .services-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}



.service-card {

    background: white;

    border-radius: 0.75rem;

    overflow: hidden;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    transition: all 0.5s ease;

    opacity: 0;

    transform: translateY(20px);

    animation: fadeInUp 0.6s ease-out forwards;

}



.service-card:hover {

    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    transform: translateY(-0.5rem);

}



.service-image {

    height: 10rem;

    overflow: hidden;

    position: relative;

}



.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}



.service-card:hover .service-image img {

    transform: scale(1.1);

}



.service-image::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);

    opacity: 0;

    transition: opacity 0.3s ease;

}



.service-card:hover .service-image::after {

    opacity: 1;

}



.service-icon {

    position: absolute;

    top: 0.75rem;

    left: 0.75rem;

    background: rgba(255, 255, 255, 0.9);

    padding: 0.5rem;

    border-radius: 50%;

    color: #ff6b00;

    width: 40px;

    height: 40px;

}



.service-content {

    padding: 1rem;

    text-align: center;

}



.service-content h3 {

    font-size: 1.125rem;

    color: #1a1a1a;

    margin-bottom: 0.5rem;

}



.service-content p {

    color: #6b7280;

    margin-bottom: 1rem;

    font-size: 0.875rem;

    line-height: 1.6;

}



.service-btn {

    width: 100%;

    background-color: #25D366;

    color: white;

    font-weight: 600;

    border-radius: 9999px;

    transition: all 0.3s ease;

    font-size: 0.875rem;

    padding: 0.5rem;

    justify-content: center;

}



.service-btn:hover {

    background-color: #128C7E;

    transform: scale(1.05);

}



/* Testimonials Section */

.testimonials {

    padding: 5rem 0;

    background-color: #FFF3EB;

}



.testimonials-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.5rem;

}



@media (min-width: 768px) {

    .testimonials-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (min-width: 1024px) {

    .testimonials-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}



.testimonial-card {

    background: white;

    padding: 1.5rem;

    border-radius: 0.75rem;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    opacity: 0;

    transform: translateY(20px);

    animation: fadeInUp 0.6s ease-out forwards;

}



.testimonial-header {

    display: flex;

    align-items: center;

    margin-bottom: 0.75rem;

}



.stars {

    color: #fbbf24;

    margin-bottom: 0.5rem;

    font-size: 0.875rem;

}



.testimonial-card h4 {

    font-weight: 600;

    color: #1a1a1a;

}



.testimonial-card p {

    color: #6b7280;

    font-size: 0.875rem;

    line-height: 1.6;

}



/* CTA Section */

.cta {

    background: linear-gradient(135deg, #ff6b00 0%, #e55a00 100%);

    color: white;

    padding: 5rem 0;

    text-align: center;

    position: relative;

    overflow: hidden;

}



.cta::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;

    opacity: 0.4;

    z-index: 1;

}



.cta-content {

    position: relative;

    z-index: 2;

}



.cta h2 {

    font-size: 2rem;

    margin-bottom: 1rem;

}



.cta p {

    font-size: 1.125rem;

    margin-bottom: 2rem;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}



/* Footer - Corrigido para ficar igual ao React */

.footer {

    background-color: #1a1a1a;

    color: white;

    padding: 3rem 0;

    text-align: center;

}



.footer h3 {

    font-family: 'Montserrat', sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    margin-bottom: 1rem;

    color: white;

    max-width: 42rem;

    margin: 0 auto 1rem auto;

}



.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    justify-content: center;

    align-items: center;

    color: #9ca3af;

    margin-bottom: 1.5rem;

}



@media (min-width: 640px) {

    .footer-contact {

        flex-direction: row;

        gap: 2rem;

    }

}



.footer-contact .contact-item {

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.footer-divider {

    border-top: 1px solid #374151;

    padding-top: 1.5rem;

    font-size: 0.875rem;

    color: #9ca3af;

}



/* WhatsApp Float */

.whatsapp-float {

    position: fixed;

    bottom: 1.25rem;

    right: 1.25rem;

    background-color: #25D366;

    color: white;

    width: 3.5rem;

    height: 3.5rem;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    z-index: 50;

    transition: all 0.3s ease;

    text-decoration: none;

    animation: float 3s ease-in-out infinite;

}



.whatsapp-float:hover {

    background-color: #128C7E;

    transform: scale(1.1);

}



/* Animations */

@keyframes fadeIn {

    from { opacity: 0; }

    to { opacity: 1; }

}



@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes bounce {

    0%, 20%, 53%, 80%, 100% {

        transform: translateX(-50%) translateY(0px);

    }

    40%, 43% {

        transform: translateX(-50%) translateY(-10px);

    }

    70% {

        transform: translateX(-50%) translateY(-5px);

    }

    90% {

        transform: translateX(-50%) translateY(-2px);

    }

}



@keyframes float {

    0%, 100% { transform: translateY(0px); }

    50% { transform: translateY(-10px); }

}



@keyframes pulse {

    0%, 100% { opacity: 1; }

    50% { opacity: 0.5; }

}



@keyframes pulse-soft {

    0%, 100% { transform: scale(1); }

    50% { transform: scale(1.05); }

}



/* Responsive */

@media (max-width: 768px) {

    .hero h1 {

        font-size: 2rem;

    }



    .hero p {

        font-size: 1rem;

    }



    .section-header h2 {

        font-size: 2rem;

    }



    .cta h2 {

        font-size: 1.5rem;

    }

}



/* Animation delays for staggered effect */

.service-card:nth-child(1) { animation-delay: 0s; }

.service-card:nth-child(2) { animation-delay: 0.1s; }

.service-card:nth-child(3) { animation-delay: 0.2s; }

.service-card:nth-child(4) { animation-delay: 0.3s; }

.service-card:nth-child(5) { animation-delay: 0.4s; }

.service-card:nth-child(6) { animation-delay: 0.5s; }

.service-card:nth-child(7) { animation-delay: 0.6s; }

.service-card:nth-child(8) { animation-delay: 0.7s; }

.service-card:nth-child(9) { animation-delay: 0.8s; }

.service-card:nth-child(10) { animation-delay: 0.9s; }

.service-card:nth-child(11) { animation-delay: 1s; }



.testimonial-card:nth-child(1) { animation-delay: 0s; }

.testimonial-card:nth-child(2) { animation-delay: 0.2s; }

.testimonial-card:nth-child(3) { animation-delay: 0.4s; }