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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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



/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header-bottom {
    text-align: center;
    padding: 10px 0 20px;
    border-top: 1px solid #eee;
}

.company-info h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 5px;
}

.cnpj {
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
}

.legal-name {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(44, 62, 80, 0.85));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c0392b;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Contact Info Section */
.contact-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-info h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 24px;
    color: #3498db;
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: white;
}

.map-section h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

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

.service-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card li {
    padding: 5px 0;
    color: #666;
}

.service-card li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 60px;
    background-color: #3498db;
    color: white;
    border-radius: 10px;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: white;
    color: #3498db;
}

.cta-section .btn-primary:hover {
    background-color: #ecf0f1;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-form-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-checkbox {
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.form-checkbox label {
    display: inline;
    font-size: 14px;
}

.form-checkbox a {
    color: #3498db;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.recaptcha-text {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

.recaptcha-text a {
    color: #3498db;
    text-decoration: none;
}

.recaptcha-text a:hover {
    text-decoration: underline;
}

/* Terms and Policy Sections */
.terms-section,
.cookie-policy-section {
    padding: 80px 0;
    background-color: white;
}

.terms-section h2,
.cookie-policy-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.last-update {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.terms-content,
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h3,
.policy-content h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

.terms-content h4,
.policy-content h4 {
    font-size: 20px;
    margin: 20px 0 10px 0;
    color: #34495e;
}

.terms-content ul,
.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-content li,
.policy-content li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #bdc3c7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 15px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: white;
}

.btn-cookie.accept:hover {
    background-color: #229954;
}

.btn-cookie.reject {
    background-color: #e74c3c;
    color: white;
}

.btn-cookie.reject:hover {
    background-color: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float i {
        margin-top: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .features,
    .services-section,
    .contact-form-section,
    .terms-section,
    .cookie-policy-section {
        padding: 60px 0;
    }
}