:root {
    --primary-color: #2B2B2B;    /* Azul escuro/cinza escuro */
    --secondary-color: #F26B3C;  /* Laranja */
    --text-color: #333;
    --light-bg: #f5f6fa;
    --dark-blue: #1a1a1a;       /* Versão mais escura do azul para o footer */
    --orange-hover: #e85a2a;    /* Tom mais escuro do laranja para hover */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles - Versão Moderna */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3rem;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover .nav-line,
.nav-link.active .nav-line {
    width: 100%;
}

.nav-cta {
    margin-left: 1rem;
}

.nav-cta .cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-cta .cta-button i {
    font-size: 1.2rem;
}

.nav-cta .cta-button:hover {
    background: #25D366;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Scroll Effect */
.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-cta {
        margin: 1rem 0 0 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }

    .logo img {
        height: 45px;
    }
}

/* Hero Section - Versão Elegante */
.hero {
    height: 100vh;
    position: relative;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 107, 60, 0.3);
}

.hero-cta i {
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 107, 60, 0.4);
}

.hero-cta:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.services-grid.hidden {
    display: none;
}

.services-button {
    text-align: center;
    margin-top: 3rem;
}

.ver-mais-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.ver-mais-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.ver-mais-btn.active {
    background: var(--primary-color);
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section - Nova versão */
.contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    min-height: 100vh; /* Garante que a seção ocupe toda a altura da tela */
    display: flex;
    flex-direction: column;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    flex: 1; /* Permite que o wrapper cresça para preencher o espaço */
}

.contact-info {
    padding: 4rem;
    background: var(--primary-color);
    color: white;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item p {
    opacity: 0.8;
    line-height: 1.6;
}

.social-media {
    margin-top: 3rem;
}

.social-media h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.contact-form-wrapper {
    padding: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: border-color 0.3s;
    font-size: 1rem;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

#contact-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#contact-form button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

#contact-form button i {
    font-size: 1.2rem;
}

/* Footer - Nova versão */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 5% 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 65px;
    width: auto;
}

.footer h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.footer ul li i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--secondary-color);
}

.footer-bottom img {
    height: 20px;
    width: auto;
}

/* Responsive adjustments for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo img {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 5% 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom p {
        flex-wrap: wrap;
    }

    .footer-logo img {
        height: 50px;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: white;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.about-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.since {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text > p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.feature-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    line-height: 1.5;
}

.about-stats {
    position: relative;
}

.stats-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments for About section */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 5%;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .feature {
        gap: 1rem;
    }

    .stats-numbers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }
}

/* Responsive adjustments for Contact section */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 3rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 3rem;
    }
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .contact-info {
        border-radius: 20px 20px 0 0;
    }
    
    .contact-form-wrapper {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-description {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .social-media {
        margin-top: 2rem;
        text-align: center;
    }
    
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icon {
        width: 100%;
        justify-content: center;
        padding: 0.5rem;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    #contact-form input,
    #contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    #contact-form button {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .turnstile-wrapper {
        transform: scale(0.9);
        margin: 1rem 0;
    }
}

@media (max-width: 375px) {
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .social-icon {
        font-size: 0.9rem;
    }
    
    #contact-form button {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-logo img {
        height: 45px;
    }
}

/* Partners Section */
.partners {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partners-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.partner-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }

    .partner-item {
        padding: 1.5rem;
    }

    .partner-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .partner-item img {
        max-height: 50px;
    }
}

/* Map Styles - Atualizado */
.map-container {
    max-width: 1400px;
    width: 100%;
    margin: 4rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 450px; /* Altura fixa para o mapa */
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ajuste responsivo para o mapa */
@media (max-width: 768px) {
    .map-container {
        margin-top: 2rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 8rem 5% 5rem;
    background: var(--light-bg);
    min-height: 100vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content {
    color: var(--text-color);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-section ul li:before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.contact-info-policy {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info-policy p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-policy i {
    color: var(--secondary-color);
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 6rem 1rem 3rem;
    }

    .privacy-container {
        padding: 2rem;
    }

    .privacy-policy h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Turnstile Styles */
.turnstile-wrapper {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

#submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonials-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFD700;
    margin-right: 0.2rem;
}

.testimonial-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Breakpoints Responsivos */
/* Desktop Primeiro (1400px e acima já está definido como padrão) */

/* Desktop Médio */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .services-grid,
    .testimonials-grid {
        gap: 1.5rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 3%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .about-features {
        gap: 1.5rem;
    }

    .stats-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .map-container {
        height: 300px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-numbers {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .logo img {
        height: 40px;
    }
    
    .footer-logo img {
        height: 45px;
    }
}

/* Ajustes para altura da tela */
@media (max-height: 700px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    html {
        font-size: 18px;
    }
}

/* Ajustes para orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .nav-links.active {
        padding: 1rem;
        overflow-y: auto;
    }

    .hero-content {
        padding: 4rem 1rem;
    }
}

/* Formalization Section */
.formalization {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
}

.formalization-container {
    max-width: 1400px;
    margin: 0 auto;
}

.formalization h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.formalization-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.formalization-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.formalization-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.formalization-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.formalization-cta .cta-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .formalization {
        padding: 3rem 1rem;
    }

    .formalization h2 {
        font-size: 2rem;
    }

    .formalization-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .formalization-cta {
        padding: 1.5rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float i {
    margin-top: 2px;
}

.whatsapp-float .whatsapp-text {
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba57;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
} 