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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.page-wrapper {
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* Ensure no horizontal overflow on mobile */
@media (max-width: 768px) {
    .page-wrapper {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .hero {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cabin Sketch", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

p{
    font-family: "Onest", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
}

/* Improve text readability on mobile */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        word-spacing: -0.05em;
    }
    
    p {
        line-height: 1.7;
        word-spacing: 0.05em;
    }
    
    /* Ensure minimum font sizes for accessibility */
    body {
        font-size: 16px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .btn {
        font-size: 16px;
    }
    
    /* Improve touch targets for mobile */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .whatsapp-btn {
        min-height: 44px;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        justify-content: center;
        align-items: center;
    }
    
    /* Improve scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.293);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2E7D32;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.5s ease; /* ALTERADO */
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2E7D32;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E7D32;
    transition: width 0.5s ease; /* ALTERADO */
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Estilos para o Dropdown */
.nav-item {
    position: relative;
}

.nav-item.dropdown > a {
    position: relative;
}

.nav-item.dropdown .fa-caret-down {
    margin-left: 5px;
    
    transition: transform 0.5s ease; /* ALTERADO */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 0.5rem 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 180px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0); /* Remove o deslocamento para baixo */
    /* Anima apenas a opacidade para evitar o 'salto' */
    transition: opacity 0.4s ease, visibility 0.4s ease; 
}

.nav-item:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .fa-caret-down {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #2E7D32;
}

.associado-card h3 a{
    text-decoration: none;
    color: #333;
    font-weight: 400;
}

.associado-card h3 a:hover{
    color: #50bd56;
}

/* Hero Section */
.hero {
    height: 100vh;
    
    background-image: url('../images/f127b1ea-f73d-4b24-94e9-8c48ade5f2d5.webp'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* Faz a imagem cobrir toda a seção */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}
.hero-background{
    background-color: #0000005b;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
}
.hero-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: "Cabin Sketch", sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #FF8F00;
    color: white;
    border-color: #FF8F00;
}

.btn-primary:hover {
    background: transparent;
    color: #FF8F00;
    border-color: #FF8F00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 143, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 4.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background: #f8f9fa;
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-text h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

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

.image-placeholder {
    width: 450px; /* Ocupa 100% do espaço do seu container */
    max-width: 600px; /* Mas não passa de 400px em telas grandes */
    height: 300px;
    background: linear-gradient(135deg, #2E7D32, #1976D2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    
    text-align: center;
    margin: 0 auto; /* Garante centralização caso o container seja maior */
}

.image-placeholder :hover{
    transform: scale(1.05);
}

.image-placeholder img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 20px;;
    
}

/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32, #1976D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.servico-icon i {
    font-size: 2rem;
    color: white;
}

.servico-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.servico-card p {
    color: #666;
    line-height: 1.6;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contato-info h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contato-info > p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contato-item i {
    font-size: 1.5rem;
    color: #2E7D32;
    margin-top: 0.2rem;
}

.contato-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.contato-item p {
    color: #666;
}

.cta-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    margin-top: 40px;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #2E7D32 0%, #1976D2 100%);
    background-size: 1600px 500px;
    background-position: top;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Associados Section */
.associados-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    color: #2E7D32;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.associados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.associado-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.associado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.associado-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    margin-bottom: 1rem;
}

.associado-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.associado-card-link h3 {
    transition: color 0.3s ease;
}

.associado-card:hover .associado-card-link h3 {
    color: #2E7D32;
}

.associado-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2E7D32, #1976D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.associado-avatar i {
    font-size: 2.5rem;
    color: white;
}

.associado-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.associado-card .phone {
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
    text-align: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.1rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.galeria {
    padding: 5rem 0;
    background: white;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.galeria-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.galeria-cta {
    text-align: center;
}

/* Galeria Completa */
.galeria-completa {
    padding: 5rem 0;
    background: #f8f9fa;
}

.galeria-filtros {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filtro-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #666;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
    transform: translateY(-2px);
}

.galeria-grid-completa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.galeria-item-completa {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.galeria-item-completa:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galeria-item-completa img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item-completa:hover img {
    transform: scale(1.05);
}

.galeria-info {
    padding: 1.5rem;
    position: relative;
}

.galeria-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.galeria-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.galeria-tag {
    background: linear-gradient(135deg, #2E7D32, #1976D2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Depoimentos */
.galeria-depoimentos {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.galeria-depoimentos h3 {
    text-align: center;
    color: #2E7D32;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2E7D32;
}

.depoimento-texto p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.depoimento-autor strong {
    color: #2E7D32;
    display: block;
    margin-bottom: 0.2rem;
}

.depoimento-autor span {
    color: #666;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E7D32 0%, #1976D2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}


/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E7D32 0%, #1976D2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #2E7D32;
}

.footer-section h4 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2E7D32;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #2E7D32;
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Image optimization for mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize background images for mobile */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
    }
    
    .page-header {
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    /* Animação removida - elementos aparecem imediatamente */
}

/* Responsive Design */

/* Tablet and small desktop */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .sobre-content {
        gap: 2rem;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
}

/* Mobile and tablet */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
        font-size: 1.1rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Estilos Responsivos para o Dropdown */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: rgba(240, 240, 240, 0.8);
        backdrop-filter: blur(5px);
        padding-left: 1.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        width: 100%;
        margin-top: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .nav-item:hover > .dropdown-menu {
        display: none;
    }

    .nav-item.dropdown-open > .dropdown-menu {
        display: block;
    }
    
    .nav-item.dropdown-open .fa-caret-down {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding: 0;
        margin: 0;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Sections */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Sobre Section */
    .sobre {
        padding: 3rem 0;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .sobre-text {
        text-align: center;
    }
    
    .sobre-text h3 {
        font-size: 1.3rem;
    }
    
    .sobre-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 350px;
        height: 200px;
    }

    /* Serviços Section */
    .servicos {
        padding: 3rem 0;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .servico-card {
        padding: 1.5rem;
    }
    
    .servico-card h3 {
        font-size: 1.2rem;
    }
    
    .servico-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .servico-card .btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Galeria Section */
    .galeria {
        padding: 3rem 0;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .galeria-item img {
        height: 200px;
    }
    
    .galeria-cta {
        padding: 0 1rem;
    }
    
    .galeria-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Contato Section */
    .contato {
        padding: 3rem 0;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contato-info h3 {
        font-size: 1.5rem;
    }
    
    .contato-item {
        margin-bottom: 1.2rem;
    }
    
    .contato-item i {
        font-size: 1.3rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-card .btn {
        width: 100%;
        justify-content: center;
    }

    /* Page Header */
    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Associados Section */
    .associados-section {
        padding: 3rem 0;
    }
    
    .section-intro {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .section-intro p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .associados-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .associado-card {
        padding: 1.5rem;
    }
    
    .associado-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .associado-card h3 a {
        font-size: 1.1rem;
    }
    
    .associado-card .phone {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .contact-info {
        margin-top: 1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        color: #666;
        font-style: italic;
    }

    /* Galeria Completa */
    .galeria-completa {
        padding: 3rem 0;
    }
    
    .galeria-filtros {
        padding: 0 1rem;
        margin-bottom: 2rem;
        gap: 0.5rem;
    }
    
    .filtro-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .galeria-grid-completa {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .galeria-item-completa img {
        height: 220px;
    }
    
    .galeria-info {
        padding: 1rem;
    }
    
    .galeria-info h3 {
        font-size: 1.1rem;
    }
    
    .galeria-info p {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-section h4 {
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo img {
        width: 60px;
        padding-right: 8px;
    }

    /* Hero Section */
    .hero {
        padding: 0;
        margin: 0;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }

    /* Sections */
    .section-header {
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    /* Sobre Section */
    .sobre {
        padding: 2rem 0;
    }
    
    .sobre-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .sobre-text h3 {
        font-size: 1.2rem;
    }
    
    .sobre-text p {
        font-size: 0.9rem;
    }
    
    .features {
        gap: 0.8rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .feature h4 {
        font-size: 1rem;
    }
    
    .feature p {
        font-size: 0.8rem;
    }
    
    .image-placeholder {
        height: 180px;
    }

    /* Serviços Section */
    .servicos {
        padding: 2rem 0;
    }
    
    .servicos-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .servico-card {
        padding: 1.2rem;
    }
    
    .servico-icon {
        width: 60px;
        height: 60px;
    }
    
    .servico-icon i {
        font-size: 1.5rem;
    }
    
    .servico-card h3 {
        font-size: 1.1rem;
    }
    
    .servico-card p {
        font-size: 0.85rem;
    }
    
    .servico-card .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }

    /* Galeria Section */
    .galeria {
        padding: 2rem 0;
    }
    
    .galeria-grid {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .galeria-item img {
        height: 180px;
    }
    
    .galeria-cta {
        padding: 0 0.5rem;
    }
    
    .galeria-cta .btn {
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contato Section */
    .contato {
        padding: 2rem 0;
    }
    
    .contato-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .contato-info h3 {
        font-size: 1.3rem;
    }
    
    .contato-info > p {
        font-size: 0.9rem;
    }
    
    .contato-item {
        margin-bottom: 1rem;
    }
    
    .contato-item i {
        font-size: 1.2rem;
    }
    
    .contato-item h4 {
        font-size: 1rem;
    }
    
    .contato-item p {
        font-size: 0.85rem;
    }
    
    .cta-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-card h3 {
        font-size: 1.2rem;
    }
    
    .cta-card p {
        font-size: 0.9rem;
    }
    
    .cta-card .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Page Header */
    .page-header {
        padding: 5rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    /* Associados Section */
    .associados-section {
        padding: 2rem 0;
    }
    
    .section-intro {
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-intro h2 {
        font-size: 1.8rem;
    }
    
    .section-intro p {
        font-size: 0.9rem;
    }
    
    .associados-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .associado-card {
        padding: 1.2rem;
    }
    
    .associado-avatar {
        width: 80px;
        height: 80px;
    }
    
    .associado-avatar i {
        font-size: 2rem;
    }
    
    .associado-card h3 {
        font-size: 1rem;
    }
    
    .associado-card h3 a {
        font-size: 1rem;
    }
    
    .associado-card .phone {
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
    }

    /* Galeria Completa */
    .galeria-completa {
        padding: 2rem 0;
    }
    
    .galeria-filtros {
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
        gap: 0.3rem;
    }
    
    .filtro-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .galeria-grid-completa {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .galeria-item-completa img {
        height: 200px;
    }
    
    .galeria-info {
        padding: 0.8rem;
    }
    
    .galeria-info h3 {
        font-size: 1rem;
    }
    
    .galeria-info p {
        font-size: 0.85rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-content {
        padding: 0 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .cta-buttons .btn {
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-logo i {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.2rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-section i {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}