/* ===== ESTILOS GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec {
    padding: 80px 0;
}

.pad {
    padding: 80px 0;
}

.alt {
    background-color: #f9f9f9;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #8e6841;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 40px;
    background-color: rgba(255, 255, 255, 0.98);
}

.contlog {
    display: flex;
    align-items: center;
}

.logo, .logoverm {
    height: 150px;
    transition: all 0.3s ease;
}

.logoverm {
    display: none;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8e6841;
    transition: width 0.3s ease;
}

.menu a:hover:after, .menu a.active:after {
    width: 100%;
}

.menu a:hover, .menu a.active {
    color: #8e6841;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 70vh;
    display: flex;
    margin-top: 185px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    color: white;
    position: relative;
 padding:100px;
}

.hero-eventos {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/eventos/eventos (1).JPG') no-repeat center center/cover;
}

.hero-orcamento {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/nani-e-lucas-147.jpg') no-repeat center center/cover;
}

.hero-estrutura {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/estrutura/t33 (2).jpg') no-repeat center center/cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    background-color: #8e6841;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #8e6841;
}

.btn-hero:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-hero-outline {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background-color: white;
    color: #333;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-down span {
    margin-bottom: 5px;
    font-size: 14px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #8e6841;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== EVENTOS GRID ===== */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.evento-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.evento-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.evento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-card:hover .evento-image img {
    transform: scale(1.1);
}

.evento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.evento-overlay h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0;
}

.evento-content {
    padding: 30px;
}

.evento-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.evento-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8e6841;
    font-size: 0.9rem;
}

.detail-item i {
    font-size: 1.1rem;
}

/* ===== FORMULÁRIOS ORÇAMENTO ===== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8e6841;
    box-shadow: 0 0 0 3px rgba(142, 104, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== MAPA ===== */
.mapa-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mapa-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    background-color: #8e6841;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #8e6841;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background-color: #735732;
    border-color: #735732;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-eventos {
    width: 100%;
    margin-top: 10px;
}

.btn-form {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
}

/* ===== TEXTO EXPANDÍVEL ===== */
.texto-explicativo {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    border-left: 4px solid #8e6841;
}

.texto-explicativo p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.texto-explicativo.show {
    display: block;
}

/* ===== GALERIA ===== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.galeria-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay p {
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* ===== ESTRUTURA - SALÕES ===== */
.salao-section {
    margin-bottom: 80px;
    padding: 60px 0;
}

.salao-section.alt {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 60px 40px;
}

.salao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.salao-text {
    text-align: left;
}

.salao-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.salao-main-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.salao-main-media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.salao-main-media img:hover {
    transform: scale(1.02);
}

.salao-main-media video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.area-gallery {
    margin-top: 50px;
}

.area-gallery h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Galeria específica para estrutura */
.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.estrutura-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estrutura-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.estrutura-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.estrutura-item:hover img {
    transform: scale(1.1);
}

.estrutura-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item .galeria-overlay {
    background: rgba(142, 104, 65, 0.8);
}

/* ===== CTA EVENTOS ===== */
.cta-eventos {
    background: linear-gradient(135deg, #8e6841, #735732);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: white;
    font-size: 1.3rem;
}

.logofot {
    height: 150px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #8e6841;
}

.footer-section.links {
    display: flex;
    flex-direction: column;
}

.footer-section.links a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section.links a:hover {
    color: #8e6841;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background-color: #8e6841;
}

.footer-cta {
    margin-top: 20px;
}

.footer-cta p {
    margin-bottom: 15px;
    color: #ccc;
}

.btn-footer {
    display: inline-block;
    background-color: #8e6841;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-footer:hover {
    background-color: #735732;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* ===== MENU MOBILE ===== */
.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu-content {
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.mobile-menu-content a {
    text-decoration: none;
    color: #333;
    font-size: 1.8rem;
    padding: 15px 30px;
    margin: 10px 0;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    padding: 10px;
    z-index: 2001;
}

.icon-perfil { 
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.mobile-menu-content a:hover, .mobile-menu-content a.active {
    background-color: #8e6841;
    color: white;
}

/* ===== LIGHTBOX CUSTOMIZAÇÃO ===== */
.lightbox-overlay {
    background: rgba(0, 0, 0, 0.9) !important;
}

.lightbox-container {
    background: transparent !important;
}

.lightbox-image {
    border-radius: 10px !important;
}

.lightbox-close {
    color: #8e6841 !important;
}

/* ===== RESPONSIVIDADE MELHORADA ===== */

/* Tablets e telas médias (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .eventos-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .form-container {
        padding: 35px;
        margin: 0 30px;
    }
    
    .salao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .salao-main-media {
        order: -1;
    }
    
    .galeria-grid, .estrutura-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .footer-container {
        gap: 35px;
    }
    .hero{
        margin-top: 185px ;
    }
    .hero p , h1 {
        display: none;
    }
    .scroll-down{
        display: none;
    }
    
}

/* Tablets pequenos (600px - 768px) */
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }
    
    header {
        padding: 15px 25px;
    }
    
    .logo {
        height: 120px;
    }
    
    .hero{
        margin-top: 150px ;
    }
    .hero p , h1 {
        display: none;
    }
    .scroll-down{
        display: none;
    }
    
    .hero {
        height: 60vh;
       
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .evento-card {
        margin: 0 10px;
    }
    
    .galeria-grid, .estrutura-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .form-container {
        padding: 25px;
        margin: 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .logo {
        display: none;
    }
    
    .logoverm {
        display: block;
        height: 120px;
    }
    
    .cta-eventos {
        padding: 50px 30px;
        margin: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .salao-section {
        padding: 50px 0;
        margin-bottom: 60px;
    }
    
    .salao-section.alt {
        padding: 50px 25px;
        margin: 0 20px 60px;
    }
    
    .area-gallery h3 {
        font-size: 1.9rem;
    }
    
    .estrutura-item {
        height: 180px;
    }
    
    .mobile-menu-content a {
        font-size: 1.5rem;
        padding: 12px 25px;
        max-width: 250px;
    }
}

/* Celulares grandes (480px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    header {
        padding: 12px 20px;
    }
    
    .logo, .logoverm {
        height: 100px;
    }
    
    .hero {
        height: 55vh;
        padding-top: 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .divider {
        margin-bottom: 15px;
    }
    
    .evento-content {
        padding: 20px;
    }
    
    .evento-details {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .galeria-grid, .estrutura-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .galeria-item, .estrutura-item {
        height: 160px;
    }
    
    .form-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-form {
        padding: 12px;
        font-size: 1rem;
    }
    
    .cta-eventos {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 1.9rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .salao-section {
        padding: 40px 0;
        margin-bottom: 50px;
    }
    
    .salao-section.alt {
        padding: 40px 20px;
        margin: 0 15px 50px;
    }
    
    .salao-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .salao-main-media img,
    .salao-main-media video {
        height: 250px;
    }
    
    .area-gallery h3 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .footer {
        padding: 50px 0 15px;
    }
    
    .footer-container {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .logofot {
        height: 120px;
    }
    
    .mobile-menu-content a {
        font-size: 1.3rem;
        padding: 10px 20px;
        max-width: 220px;
    }
    .hero{
        margin-top: 120px ;
    }
    .hero p , h1 {
        display: none;
    }
    .scroll-down{
        display: none;
    }
    
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero{
        margin-top: 100px ;
    }
    .hero p , h1 {
        display: none;
    }
    .scroll-down{
        display: none;
    }
    
    header {
        padding: 10px 15px;
    }
    
    .logo, .logoverm {
        height: 80px;
    }
    
    .hero {
        height: 50vh;
        padding-top: 50px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .scroll-down span {
        font-size: 0.8rem;
    }
    
    .sec, .pad {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .eventos-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .evento-card {
        margin: 0 5px;
    }
    
    .evento-image {
        height: 200px;
    }
    
    .evento-content {
        padding: 15px;
    }
    
    .evento-overlay h3 {
        font-size: 1.5rem;
    }
    
    .galeria-grid, .estrutura-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .galeria-item, .estrutura-item {
        height: 200px;
    }
    
    .form-container {
        padding: 15px;
        margin: 0 10px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .mapa-container iframe {
        height: 300px;
    }
    
    .cta-eventos {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .salao-section {
        padding: 30px 0;
        margin-bottom: 40px;
    }
    
    .salao-section.alt {
        padding: 30px 15px;
        margin: 0 10px 40px;
    }
    
    .salao-content {
        gap: 30px;
        margin-top: 30px;
    }
    
    .salao-main-media img,
    .salao-main-media video {
        height: 200px;
    }
    
    .salao-text p {
        font-size: 0.9rem;
    }
    
    .area-gallery h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 40px 0 10px;
    }
    
    .footer-container {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .logofot {
        height: 100px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .mobile-menu-content a {
        font-size: 1.1rem;
        padding: 8px 15px;
        max-width: 200px;
    }
    
    .close-mobile-menu {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .icon-perfil {
        top: 15px;
        left: 15px;
        font-size: 1.2rem;
    }
}

/* Ajustes para telas muito pequenas (até 360px) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .evento-overlay h3 {
        font-size: 1.3rem;
    }
    
    .galeria-item, .estrutura-item {
        height: 180px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-content a {
        font-size: 1rem;
        padding: 6px 12px;
    }
}

/* Ajustes para orientação paisagem em celulares */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding-top: 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        margin-bottom: 20px;
    }
    
    .mobile-menu-content {
        padding: 50px 20px;
        justify-content: flex-start;
    }
    
    .mobile-menu-content a {
        font-size: 1.1rem;
        padding: 8px 15px;
        margin: 5px 0;
    }
}

/* Ajustes para telas muito grandes (acima de 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .eventos-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 50px;
    }
    
    .galeria-grid, .estrutura-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .galeria-item, .estrutura-item {
        height: 280px;
    }
}

/* Impressão */
@media print {
    .menu-icon,
    .scroll-down,
    .btn,
    .social-icons,
    .footer-cta {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .hero {
        background: none !important;
        color: black;
        height: auto;
        padding: 20px 0;
    }
    
    .evento-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}