/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #0a0a0a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(144, 238, 144, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.logo-container {
    max-width: 200px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.logo-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(144, 238, 144, 0.3));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2.5rem;
    color: #90ee90;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(144, 238, 144, 0.2);
    font-weight: 800;
}

.subtitle {
    font-size: 1.3rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #90ee90 0%, #70c070 100%);
    color: #0d0d0d;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.25);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(144, 238, 144, 0.35);
    background: linear-gradient(135deg, #a0f0a0 0%, #80d080 100%);
}

/* Trust Bar */
.trust-bar {
    background: #1a1a1a;
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(144, 238, 144, 0.15);
    border-bottom: 1px solid rgba(144, 238, 144, 0.15);
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #90ee90;
    font-weight: 600;
}

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

/* Services Section */
.services {
    padding: 80px 20px;
    background: #0d0d0d;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #90ee90;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(144, 238, 144, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #90ee90;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #90ee90;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(144, 238, 144, 0.3);
}

.service-card h3 {
    color: #90ee90;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 80px 20px;
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    font-size: 3.5rem;
    color: #90ee90;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(144, 238, 144, 0.25));
}

.benefit-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #a0a0a0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #90ee90 0%, #70c070 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    color: #0d0d0d;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    background: #0d0d0d;
    color: #90ee90;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid #0d0d0d;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-phone {
    background: transparent;
    color: #0d0d0d;
    border-color: #0d0d0d;
}

.cta-phone:hover {
    background: #0d0d0d;
    color: #90ee90;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: #0d0d0d;
}

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

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 15px;
    border: 2px solid rgba(144, 238, 144, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #90ee90;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.15);
}

.contact-item-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(144, 238, 144, 0.2));
}

.contact-item h3 {
    color: #90ee90;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-item a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #90ee90;
}

/* Footer */
footer {
    background: #0d0d0d;
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid rgba(144, 238, 144, 0.15);
    color: #a0a0a0;
}

footer p {
    margin: 8px 0;
}

footer strong {
    color: #90ee90;
}

.footer-cnpj {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .cta-primary {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .hero {
        padding: 40px 20px 60px;
    }

    .services, .why-us, .contact, .cta-section {
        padding: 60px 20px;
    }

    .trust-items {
        gap: 25px;
    }

    .trust-item {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}
