/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

.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;
    inset: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .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(0)
    }

    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, .95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    z-index: 1000;
    transition: all .3s ease;
}

header.scrolled {
    padding: 10px 40px;
    background-color: rgba(255, 255, 255, .98);
}

.contlog {
    display: flex;
    align-items: center;
}

.logo,
.logoverm {
    height: 150px;
    transition: all .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 .3s ease;
    position: relative;
}

.menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8e6841;
    transition: width .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{
    margin-top: 190px;
    padding-bottom: 80px;
}
/* ===== HERO GALERIA ===== */
.hero-galeria {
    min-height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url('../img/fazenda/fazenda (60).jpg') no-repeat center/cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-galeria h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .7);
}

.hero-galeria p {
    font-size: 1.1rem;
    margin-bottom: 26px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .6);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero,
.btn-hero-outline {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    border: 2px solid #8e6841;
}

.btn-hero {
    background: #8e6841;
    color: #fff;
}

.btn-hero:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #333;
}

/* ===== SCROLL DOWN ===== */
.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;
}

.divider {
    width: 60px;
    height: 3px;
    background: #8e6841;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== GALERIA GRID ===== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-auto-rows: 180px;
    grid-auto-flow: dense;
    gap: 16px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .08);
    position: relative;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-item.wide {
    grid-column: span 2;
}

.galeria-item.tall {
    grid-row: span 2;
}

/* ===== GALERIA OVERLAY ===== */
.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 .3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay p {
    color: white;
    font-weight: 500;
}

/* ===== 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;
}

.cta-buttons .btn-hero,
.cta-buttons .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: #fff;
    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: 16px;
    color: #fff;
    font-size: 1.2rem;
}

.logofot {
    height: 150px;
    margin-bottom: 12px;
}

.contact-info p {
    margin-bottom: 8px;
    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: 8px;
    transition: color .3s ease;
}

.footer-section.links a:hover {
    color: #8e6841;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background .3s ease;
}

.social-icon:hover {
    background: #8e6841;
}

.footer-cta {
    margin-top: 10px;
}

.footer-cta p {
    margin-bottom: 10px;
    color: #ccc;
}

.btn-footer {
    display: inline-block;
    background: #8e6841;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background .3s ease;
}

.btn-footer:hover {
    background: #735732;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #444;
    color: #999;
    font-size: .92rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ===== 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: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 190px;
}
.mobile-menu-content a {
  text-decoration: none;
  color: #333;
  font-size: 2rem;
  
  

}
.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 30px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.icon-perfil{ 
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    margin: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}


.mobile-menu-content a:hover,
.mobile-menu-content a.active {
    background: #8e6841;
    color: #fff;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

.icon-perfil {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    margin: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.animate-in {
    animation: fadeUp .6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .hero-galeria h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .logo {
        display: none;
    }

    .logoverm {
        display: block;
    }

    .hero-galeria {
        min-height: 48vh;
    }

    .hero-galeria h1 {
        font-size: 2.2rem;
    }

    .hero-galeria p {
        font-size: 1rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 150px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 14px 20px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .galeria-item.wide,
    .galeria-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
/* ===== RESET & BASE ===== */
* {
    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;
    inset: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .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(0)
    }

    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, .95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    z-index: 1000;
    transition: all .3s ease;
}

header.scrolled {
    padding: 10px 40px;
    background-color: rgba(255, 255, 255, .98);
}

.contlog {
    display: flex;
    align-items: center;
}

.logo,
.logoverm {
    height: 150px;
    transition: all .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 .3s ease;
    position: relative;
}

.menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8e6841;
    transition: width .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 GALERIA ===== */
.hero-galeria {
    min-height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url('../img/fazenda/fazenda (60).jpg') no-repeat center/cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-galeria h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .7);
    line-height: 1.2;
}

.hero-galeria p {
    font-size: 1.1rem;
    margin-bottom: 26px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .6);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero,
.btn-hero-outline {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    border: 2px solid #8e6841;
    white-space: nowrap;
}

.btn-hero {
    background: #8e6841;
    color: #fff;
}

.btn-hero:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #333;
}

/* ===== SCROLL DOWN ===== */
.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;
}

.divider {
    width: 60px;
    height: 3px;
    background: #8e6841;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== GALERIA GRID ===== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-auto-rows: 180px;
    grid-auto-flow: dense;
    gap: 16px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-item.wide {
    grid-column: span 2;
}

.galeria-item.tall {
    grid-row: span 2;
}

/* ===== GALERIA OVERLAY ===== */
.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 .3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay p {
    color: white;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* ===== 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;
}

.cta-buttons .btn-hero,
.cta-buttons .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: #fff;
    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: 16px;
    color: #fff;
    font-size: 1.2rem;
}

.logofot {
    height: 150px;
    margin-bottom: 12px;
}

.contact-info p {
    margin-bottom: 8px;
    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: 8px;
    transition: color .3s ease;
}

.footer-section.links a:hover {
    color: #8e6841;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background .3s ease;
}

.social-icon:hover {
    background: #8e6841;
}

.footer-cta {
    margin-top: 10px;
}

.footer-cta p {
    margin-bottom: 10px;
    color: #ccc;
}

.btn-footer {
    display: inline-block;
    background: #8e6841;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background .3s ease;
}

.btn-footer:hover {
    background: #735732;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #444;
    color: #999;
    font-size: .92rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ===== 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: #8e6841;
    color: #fff;
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.animate-in {
    animation: fadeUp .6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVIDADE MELHORADA ===== */

/* Tablets grandes (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero-galeria h1 {
        font-size: 2.8rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        grid-auto-rows: 170px;
    }
}

/* Tablets médios (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    header {
        padding: 15px 30px;
    }
    
    .logo, .logoverm {
        height: 130px;
    }
    
    .hero-galeria {
        min-height: 50vh;
        padding-top: 90px;
    }
    
    .hero-galeria h1 {
        font-size: 2.6rem;
    }
    
    .hero-galeria p {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 160px;
        gap: 14px;
    }
    
    .cta-eventos {
        padding: 50px 35px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* Tablets pequenos (600px - 768px) */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .hero{
        margin-top: 100px;
    }
    .menu-icon {
        display: block;
    }

    header {
        padding: 12px 25px;
    }
    
    .logo {
        display: none;
    }

    .logoverm {
        display: block;
        height: 110px;
    }

    .hero-galeria {
        min-height: 45vh;
        padding-top: 80px;
    }

    .hero-galeria h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .hero-galeria p {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-auto-rows: 140px;
        gap: 12px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-eventos {
        padding: 45px 30px;
        margin: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .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: 10px 20px;
    }
    
    .logoverm {
        height: 90px;
    }
        
    
    .hero-galeria {
        min-height: 40vh;
        padding-top: 70px;
    }
    
    .hero-galeria h1 {
        font-size: 1.9rem;
        margin-bottom: 8px;
    }
    
    .hero-galeria p {
        font-size: 0.95rem;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 8px 20px;
        font-size: 0.9rem;
        width: 200px;
        max-width: 100%;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-down span {
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .divider {
        margin-bottom: 15px;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-auto-rows: 120px;
        gap: 10px;
    }
    
    .galeria-item.wide, .galeria-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .cta-eventos {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 15px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .logofot {
        height: 120px;
    }
}

/* Celulares médios (375px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero{
        margin-top: 98px;
        padding-bottom: 60px;
    }
    
    header {
        padding: 8px 15px;
    }
    
    .logoverm {
        height: 80px;
    }
    
    .hero-galeria {
        min-height: 35vh;
        padding-top: 60px;
    }
    
    .hero-galeria h1 {
        font-size: 1.7rem;
        margin-bottom: 6px;
    }
    
    .hero-galeria p {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 7px 18px;
        font-size: 0.85rem;
        width: 180px;
    }
    
    .scroll-down {
        bottom: 15px;
    }
    
    .scroll-down span {
        font-size: 0.7rem;
    }
    
    .sec, .pad {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 8px;
    }
    
    .cta-eventos {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 40px 0 10px;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .logofot {
        height: 100px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .mobile-menu-content a {
        font-size: 1.3rem;
        padding: 10px 20px;
        max-width: 220px;
    }
}

/* Celulares pequenos (até 375px) */
@media (max-width: 375px) {
    .hero{
        margin-top: 80px;
        padding-bottom: 40px;
    }
    .scroll-down{
        display: none;
    }
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 5px 10px;
    }
    
    .logoverm {
        height: 70px;
    }
    
    .hero-galeria {
        min-height: 30vh;
        padding-top: 50px;
    }
    
    .hero-galeria h1 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .hero-galeria p {
        font-size: 0.85rem;
        margin-bottom: 14px;
        line-height: 1.3;
    }
    
    .btn-hero, .btn-hero-outline {
        padding: 6px 15px;
        font-size: 0.8rem;
        width: 160px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .galeria-grid {
        grid-auto-rows: 180px;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .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 orientação paisagem em celulares */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-galeria {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-galeria h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-galeria p {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn-hero, .btn-hero-outline {
        width: auto;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .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-galeria h1 {
        font-size: 3.5rem;
    }
    
    .hero-galeria p {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-auto-rows: 220px;
        gap: 20px;
    }
}

/* Impressão */
@media print {
    .menu-icon,
    .scroll-down,
    .btn-hero,
    .btn-hero-outline,
    .social-icons,
    .footer-cta {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .hero-galeria {
        background: none !important;
        color: black;
        min-height: auto;
        padding: 20px 0;
    }
    
    .galeria-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
    .cta-eventos {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .mobile-menu-content a {
        font-size: 1.25rem;
    }
}