/* Reset e configuraÃ§Ãµes bÃ¡sicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* CabeÃ§alho Superior */
.top-header {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.top-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
}

.logo {
    flex-grow: 1; /* Permite que a logo ocupe espaÃ§o */
    text-align: center; /* Centraliza a logo */
}

.logo img {
    height: 35px; /* Reduzindo o tamanho da logo */
    width: auto;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap; /* Permite que os itens de contato quebrem a linha */
    justify-content: flex-end; /* Alinha Ã  direita */
}

.contact-info span {
    display: flex;
    flex-direction: column; /* Quebra de linha para o texto */
    align-items: center; /* Centraliza o Ã­cone e o texto */
    gap: 5px; /* EspaÃ§amento menor entre Ã­cone e texto */
    transition: color 0.3s ease;
    padding: 5px 10px; /* Adiciona padding para a Ã¡rea de hover */
    border-radius: 5px; /* Borda arredondada para o hover */
}

.contact-info span:hover {
    color: #E31937;
    background-color: #f0f0f0; /* Cor de fundo no hover */
}

/* Menu Principal */
.main-nav {
    background: #E31937;
    padding: 0;
    position: sticky;
    top: 60px;
    z-index: 999;
}

.main-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Adicionado para posicionar o botÃ£o hamburger */
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav .nav-list li {
    position: relative;
}

.main-nav .nav-list li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-nav .nav-list li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F5F5F5;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav .nav-list li a:hover {
    background: #F5F5F5;
    color: #E31937;
}

.main-nav .nav-list li:first-child a {
    background: #666;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Hero Banner */
.hero-banner {
    background: url("../assets/images/construction-bg.jpg") center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-family: 'Montserrat', sans-serif;
}

.hero-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Hero Banner 2*/
.hero-banner2 {
    background: url("../assets/images/construction-bg.jpg") center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.hero-banner2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.hero-banner2 .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
}

.hero-banner2 h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-family: 'Montserrat', sans-serif;
}

.hero-banner2 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFC107;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,193,7,0.4);
}

/* SeÃ§Ã£o de Destaque - Parceira Ideal */
.highlight-section {
    background: #f5f5f5;
    padding: 80px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.highlight-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.highlight-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: #333333;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.card:hover {
    transform: scale(1.03) translateY(-5px);
    background: #444444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* SeÃ§Ã£o NOSSOS PROJETOS */
.projects-section {
    background: #ffffff;
    padding: 80px 0;
}

.projects-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.projects-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.projects-section .card {
    background: #E31937;
    color: white;
}

.projects-section .card:hover {
    background: #B71C1C;
}

.btn-view-more {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background: #E31937;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: #B71C1C;
    transform: translateY(-2px);
}

/* RodapÃ© */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Novo RodapÃ© */
.new-footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #E31937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #B71C1C;
    transform: scale(1.1);
}

.footer-social a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

/* AnimaÃ§Ãµes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .logo img {
        height: 30px; /* Ajuste para telas menores */
    }
    .contact-info {
        gap: 10px;
        font-size: 11px;
        justify-content: center; /* Centraliza no tablet */
    }
    .contact-info span {
        align-items: flex-start; /* Alinha o texto Ã  esquerda */
    }
    .main-nav .nav-list li a {
        padding: 15px 15px;
    }
}

@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center; /* Centraliza os itens de contato no mobile */
    }
    
    .main-nav .container {
        flex-direction: row; /* Volta para linha para o menu hamburger */
        justify-content: space-between;
        position: relative; /* Adicionado para posicionar o botÃ£o hamburger */
    }
    
    .main-nav .nav-list {
        display: none; /* Esconde o menu por padrÃ£o no mobile */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #E31937;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transition: all 0.3s ease-in-out; /* Adicionado para transiÃ§Ã£o suave */
    }
    
    .main-nav .nav-list.mobile-open {
        display: flex;
        height: auto; /* Garante que o menu se expanda */
        opacity: 1; /* Garante que o menu seja visÃ­vel */
        visibility: visible; /* Garante que o menu seja visÃ­vel */
    }
    
    .main-nav .nav-list li {
        width: 100%;
    }
    
    .main-nav .nav-list li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-banner {
        background-attachment: scroll;
        min-height: 60vh;
        text-align: center;
        padding-bottom: 50px; /* EspaÃ§amento para o botÃ£o */
    }
    
    .hero-banner h1 {
        font-size: 2.2rem;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }
    
    .highlight-section h2, .projects-section h2 {
        font-size: 2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-icons {
        width: 100%; /* Ocupa a largura total */
        justify-content: center; /* Centraliza os Ã­cones */
        margin-top: 15px; /* EspaÃ§amento acima dos Ã­cones */
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .btn-portfolio, .btn-view-more {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .card {
        padding: 25px 15px;
    }
}

/* Estilos para o botÃ£o hamburger */
.mobile-toggle {
    display: none; /* Escondido por padrÃ£o em desktop */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block; /* Exibe o botÃ£o hamburger no mobile */
    }
    .main-nav .nav-list {
        display: none; /* Esconde o menu por padrÃ£o no mobile */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #E31937;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        opacity: 0; /* Inicia invisÃ­vel */
        visibility: hidden; /* Inicia invisÃ­vel */
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* TransiÃ§Ã£o para visibilidade */
    }
    .main-nav .nav-list.mobile-open {
        display: flex;
        opacity: 1; /* Torna visÃ­vel */
        visibility: visible; /* Torna visÃ­vel */
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .main-nav .nav-list li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav .social-icons {
        display: none; /* Esconde os Ã­cones sociais no menu principal em mobile */
    }
}

.main-nav .social-icons.mobile-visible {
    display: flex; /* Exibe os Ã­cones sociais no mobile quando o menu estÃ¡ aberto */
    justify-content: center; /* Centraliza os Ã­cones */
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.main-nav .social-icons {
    display: flex; /* Garante que os Ã­cones sociais sejam exibidos no desktop */
    gap: 15px;
}

.main-nav .social-icons.mobile-visible {
    display: flex; /* Exibe os Ã­cones sociais no mobile quando o menu estÃ¡ aberto */
    justify-content: center; /* Centraliza os Ã­cones */
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.main-nav .social-icons {
    display: flex; /* Garante que os Ã­cones sociais sejam exibidos no desktop */
    gap: 15px;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

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

.mobile-toggle.active .hamburger-icon:nth-child(2) {
    opacity: 0;
}

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












/* Responsividade para o novo rodapÃ© */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .new-footer {
        padding: 40px 0 15px;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
    
    .footer-social a img {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}


/* Estilos para o menu mobile responsivo */
@media (max-width: 768px) {
    /* Ocultar cabeÃ§alho superior no mobile */
    .top-header {
        display: none !important;
    }
    
    /* ConfiguraÃ§Ãµes do menu principal mobile */
    .main-nav {
        background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%) !important;
        padding: 15px 0 !important;
        position: relative !important;
        z-index: 1000 !important;
    }
    
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
        position: relative !important;
    }
    
    /* Logo mobile - visÃ­vel */
    .mobile-logo {
        display: block !important;
        flex: 1 !important;
    }
    
    .mobile-logo img {
        height: 40px !important;
        width: auto !important;
    }
    
    /* Ãcones sociais mobile - posicionados Ã  direita */
    .mobile-social-icons {
        display: flex !important;
        gap: 15px !important;
        margin-right: 15px !important;
    }
    
    .mobile-social-icons a {
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 50% !important;
        padding: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-social-icons a:hover {
        background: rgba(255, 255, 255, 0.3) !important;
        transform: scale(1.1) !important;
    }
    
    .mobile-social-icons img {
        width: 20px !important;
        height: 20px !important;
        filter: brightness(0) invert(1) !important;
    }
    
    /* BotÃ£o hamburger */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 40px !important;
        height: 40px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 1001 !important;
    }
    
    .hamburger-icon {
        width: 25px !important;
        height: 3px !important;
        background: white !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
    }
    
    /* AnimaÃ§Ã£o do botÃ£o hamburger quando ativo */
    .mobile-toggle.active .hamburger-icon:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    
    .mobile-toggle.active .hamburger-icon:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-toggle.active .hamburger-icon:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
    
    /* Ocultar menu desktop no mobile */
    .nav-list,
    .social-icons {
        display: none !important;
    }
    
    /* Menu mobile overlay */
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%) !important;
        z-index: 9999 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        padding-top: 80px !important;
        margin: 0 !important;
        border: none !important;
        outline: none !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .mobile-menu-overlay.active {
        transform: translateX(0) !important;
    }
    
    /* Lista de navegaÃ§Ã£o mobile */
    .mobile-nav-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        padding: 40px 20px !important;
    }
    
    .mobile-nav-list li {
        width: 100% !important;
        text-align: center !important;
    }
    
    .mobile-nav-list a {
        color: white !important;
        text-decoration: none !important;
        font-size: 24px !important;
        font-weight: 600 !important;
        padding: 15px 20px !important;
        display: block !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        border: 2px solid transparent !important;
    }
    
    .mobile-nav-list a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        transform: translateY(-2px) !important;
    }
    
    /* Ajustar espaÃ§amento da seÃ§Ã£o hero */
    .hero-banner {
        margin-top: 0 !important;
        padding-top: 40px !important;
    }
    
    .hero-banner h1 {
        margin-top: 40px !important;
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
}

/* Ocultar elementos mobile no desktop */
@media (min-width: 769px) {
    .mobile-logo,
    .mobile-social-icons,
    .mobile-toggle,
    .mobile-menu-overlay {
        display: none !important;
    }
}

.main-nav .nav-list {
    margin: 0 auto;
    width: fit-content; /* Garante que ocupe apenas o espaço necessário */
}

/* Correções para mobile - esconder faixa branca superior */
@media (max-width: 768px) {
    .top-header {
        display: none !important;
    }
    
    /* Ajustar posição do menu principal no mobile */
    .main-nav {
        top: 0 !important;
        position: fixed !important;
    }
}


/* Estilos para a página de serviços */
.services-section {
    background: #ffffff;
    padding: 80px 0;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.services-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E31937;
}

.service-content p {
    line-height: 1.6;
    color: #666;
    font-size: 1rem;
}

.services-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.services-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
}

/* Responsividade para serviços */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .services-cta {
        margin: 40px 10px 0;
        padding: 40px 20px;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-image {
        height: 200px;
    }
}


/* Estilos para a página de galeria */
.gallery-section {
    background: #ffffff;
    padding: 80px 0;
}

.gallery-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.gallery-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

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

.album-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.album-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(227, 25, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-card:hover .album-image img {
    transform: scale(1.05);
}

.view-album {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-info {
    padding: 25px;
}

.album-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #E31937;
}

.album-info p {
    line-height: 1.6;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.album-date {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.album-date span {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.gallery-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
}

/* Responsividade para galeria */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .album-card {
        margin: 0 10px;
    }
    
    .gallery-section h2 {
        font-size: 2rem;
    }
    
    .gallery-cta {
        margin: 40px 10px 0;
        padding: 40px 20px;
    }
    
    .gallery-cta h3 {
        font-size: 1.5rem;
    }
    
    .album-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .album-info {
        padding: 20px;
    }
    
    .album-info h3 {
        font-size: 1.2rem;
    }
    
    .album-image {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Estilos p/* Cabeçalho do álbum */
.album-header {
    background: #f8f9fa;
    padding: 80px 0 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #E31937;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    background: rgba(227, 25, 55, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.breadcrumb a:hover {
    color: #B71C1C;
}

.album-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.album-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.album-meta {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    color: #999;
}

.photo-count {
    font-weight: 600;
    color: #E31937;
}

/* Galeria de fotos */
.photo-gallery {
    padding: 60px 0;
    background: #ffffff;
}

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

.photo-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

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

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(227, 25, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    padding: 10px;
}

.close-btn:hover {
    color: #E31937;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Call to action do álbum */
.album-cta {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.album-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.album-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividade para álbum */
@media (max-width: 768px) {
    .album-header {
        padding: 100px 0 30px 0;
    }
    
    .breadcrumb {
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .breadcrumb a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .album-header h1 {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .album-header p {
        padding: 0 15px;
        font-size: 1rem;
    }
    
    .album-meta {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .photo-gallery {
        padding: 40px 0;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .nav-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .prev-btn {
        left: -60px;
    }
    
    .next-btn {
        right: -60px;
    }
    
    .close-btn {
        top: -30px;
        font-size: 1.5rem;
    }
    
    .lightbox-counter {
        bottom: -30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .album-header h1 {
        font-size: 1.8rem;
    }
    
    .nav-btn {
        position: fixed;
        top: 50%;
        font-size: 1.2rem;
        padding: 8px 12px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .close-btn {
        position: fixed;
        top: 20px;
        right: 20px;
    }
}


/* Estilo para links nos álbuns */
.view-album {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-album:hover {
    color: #FFC107;
}


/* Estilos para a página de contato */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-section > p,
.contact-form-section > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Informações de contato */
.contact-items {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #E31937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    font-size: 1rem;
    color: #E31937;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details span {
    font-size: 0.9rem;
    color: #666;
}

/* Redes sociais */
.contact-social h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E31937;
    color: white;
}

.social-link img {
    width: 20px;
    height: 20px;
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

/* Formulário de contato */
.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.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: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox customizado */
.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #E31937;
    border-color: #E31937;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Botão de envio */
.btn-submit {
    width: 100%;
    background: #E31937;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: #B71C1C;
    transform: translateY(-2px);
}

/* Mensagens de erro e sucesso */
.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
}

.success-message {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

.success-message h3 {
    margin-bottom: 10px;
    color: #2e7d32;
}

/* Seção de localização */
.location-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.location-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.location-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.location-info ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.location-info ul li::before {
    content: "✓";
    color: #E31937;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.location-hours {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #E31937;
}

.location-hours h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-hours p {
    margin-bottom: 8px;
    color: #666;
}

.location-hours em {
    color: #E31937;
    font-weight: 600;
}

.map-placeholder {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed #e0e0e0;
}

.map-placeholder img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-placeholder h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 20px;
}

.btn-map {
    display: inline-block;
    background: #E31937;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: #B71C1C;
    transform: translateY(-2px);
}

/* Responsividade para contato */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 20px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
        box-sizing: border-box;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 0;
        max-width: 100%;
    }
    
    .location-section {
        padding: 40px 0;
    }
    
    .location-section h2 {
        font-size: 1.7rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .contact-item {
        padding: 15px;
        margin: 0 15px 15px 15px;
        flex-direction: row;
        text-align: left;
        gap: 15px;
        max-width: calc(100% - 30px);
        box-sizing: border-box;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .contact-icon img {
        width: 22px;
        height: 22px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .contact-details span {
        font-size: 0.8rem;
    }
    
    .hero-banner {
        padding: 100px 0 60px 0;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-banner p {
        font-size: 1rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
        display: block;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
        border-radius: 6px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .btn-submit {
        padding: 14px 30px;
        font-size: 1rem;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .location-hours {
        margin: 0 15px;
        padding: 20px;
        max-width: calc(100% - 30px);
        box-sizing: border-box;
    }
    
    .map-placeholder {
        margin: 0 15px;
        padding: 30px 20px;
        max-width: calc(100% - 30px);
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 15px 0;
    }
    
    .location-section {
        padding: 30px 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px 10px;
        margin: 0 10px 15px 10px;
        max-width: calc(100% - 20px);
    }
    
    .contact-form {
        padding: 15px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .location-content {
        margin: 0 10px;
    }
    
    .hero-banner {
        padding: 80px 0 50px 0;
    }
    
    .hero-banner h1 {
        font-size: 1.7rem;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    
    .hero-banner p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .location-section h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .location-section > .container > p {
        padding: 0 10px;
        text-align: center;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .location-hours {
        padding: 15px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .map-placeholder {
        padding: 25px 15px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .location-info ul li {
        font-size: 0.85rem;
    }
    
    .contact-details h3 {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-details span {
        font-size: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon img {
        width: 20px;
        height: 20px;
    }
}


/* Garantir que o menu mobile ocupe toda a largura */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .mobile-menu-overlay {
        min-width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .main-nav {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 10px !important;
    }
    
    .main-nav .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Botão X para fechar o menu */
    .mobile-close-btn {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        background: none !important;
        border: none !important;
        color: white !important;
        font-size: 2rem !important;
        cursor: pointer !important;
        z-index: 10000 !important;
        padding: 10px !important;
        line-height: 1 !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-close-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: scale(1.1) !important;
    }
}

.clientes-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.clientes-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.clientes-section h2 {
   font-size: 2.5rem;
  color: #d11f2a;
  margin-bottom: 10px;
}

.clientes-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.clientes-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.clientes-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 40px;
  padding: 20px 10px;
  scrollbar-width: none;
}
.clientes-slider::-webkit-scrollbar {
  display: none;
}

.clientes-slider img {
  height: 60px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.clientes-slider img:hover {
  transform: scale(1.1);
}

.clientes-arrow {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: #d11f2a; /* cor vermelha do site */
  padding: 10px;
  z-index: 1;
  transition: transform 0.2s;
}
.clientes-arrow:hover {
  transform: scale(1.2);
}

