* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #272829;
    --cor-secundaria: #5a5a5a;
    --cor-destaque: #f59e0b;
    --cor-texto: #1f2937;
    --cor-fundo: #f9fafb;
    --cor-borda: #e5e7eb;
    --sombra: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gooey-primary: #f59e0b;
    --gooey-secondary: #272829;
    --gooey-text: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    line-height: 1.6;
    padding-top: 280px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -280px;
    padding-top: 280px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomBackground 25s ease-in-out infinite;
}

@keyframes zoomBackground {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 40, 41, 0.4) 0%, rgba(90, 90, 90, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: var(--cor-destaque);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.filtros-section {
    background-color: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--cor-borda);
    animation: slideInSection 0.6s ease;
}

.projetos-section {
    padding: 60px 0;
    background-color: var(--cor-fundo);
    animation: slideInSection 0.6s ease;
}

.contato-section {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid var(--cor-borda);
    animation: slideInSection 0.6s ease;
}

@keyframes slideInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filtros-section h2,
.projetos-section h2,
.contato-section h2 {
    margin-bottom: 40px;
    font-size: 28px;
    color: var(--cor-primaria);
    position: relative;
    padding-bottom: 15px;
}

.filtros-section h2::after,
.projetos-section h2::after,
.contato-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--cor-destaque);
    border-radius: 2px;
}

.filtros-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.filtro-grupo {
    display: flex;
    flex-direction: column;
}

.filtro-grupo label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cor-primaria);
}

.filtro-grupo input,
.filtro-grupo select {
    padding: 12px;
    border: 1px solid var(--cor-borda);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.filtro-grupo input:focus,
.filtro-grupo select:focus {
    outline: none;
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-filtro {
    background-color: var(--cor-primaria);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-filtro:hover {
    background-color: #1e40af;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.projeto-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: fadeInCard 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.projeto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projeto-imagem {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-primaria) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(185, 185, 185);
    font-size: 14px;
    text-align: center;
    padding: 10px;
    overflow: hidden;
}

.imagem-projeto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.3s ease;
}

.projeto-card:hover .imagem-projeto {
    transform: scale(1.05);
}

.projeto-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.projeto-titulo {
    font-size: 20px;
    font-weight: bold;
    color: var(--cor-primaria);
    margin-bottom: 10px;
}

.projeto-tipo {
    display: inline-block;
    background-color: var(--cor-destaque);
    color: rgb(255, 255, 255);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.projeto-detalhes {
    font-size: 14px;
    color: #505257;
    margin-bottom: 15px;
}

.projeto-detalhes p {
    margin-bottom: 8px;
}

.projeto-preco-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projeto-preco-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.projeto-preco {
    font-size: 24px;
    font-weight: bold;
    color: var(--cor-destaque);
}

.btn-detalhes {
    width: 100%;
    background-color: var(--cor-secundaria);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-detalhes:hover {
    background-color: #4b4b4b;
}

.contato-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--cor-fundo);
    border-radius: 12px;
    box-shadow: var(--sombra);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--cor-borda);
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contato-foto-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contato-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato-info-card h3 {
    color: var(--cor-primaria);
    font-size: 28px;
    margin-bottom: 5px;
}

.contato-cargo {
    color: var(--cor-destaque);
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contato-descricao {
    color: var(--cor-secundaria);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.contato-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.btn-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease, filter 0.3s ease;
}

.btn-contato:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-instagram:hover {
    filter: brightness(1.1);
}

.btn-email {
    background-color: var(--cor-primaria);
}

.btn-email:hover {
    background-color: #1e40af;
}

.footer {
    background-color: var(--cor-primaria);
    color: white;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--cor-primaria);
}

.modal-detalhes h2 {
    color: var(--cor-primaria);
    margin-bottom: 20px;
    font-size: 24px;
}

.modal-detalhes p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.modal-detalhes strong {
    color: var(--cor-primaria);
}

.modal-imagens-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.modal-imagem-item {
    overflow: hidden;
    border-radius: 8px;
}

.modal-imagem {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.modal-imagem:hover {
    transform: scale(1.05);
}

.info-principal {
    background-color: var(--cor-fundo);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-principal p {
    margin-bottom: 10px;
}

.localizacao-info {
    background-color: #f0f4ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--cor-secundaria);
}

.localizacao-info p {
    margin-bottom: 12px;
}

.btn-maps {
    display: inline-block;
    background-color: var(--cor-secundaria);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-maps:hover {
    background-color: #1e40af;
}

.diferencial-info {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--cor-destaque);
}

.botoes-documentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding: 20px;
    background-color: var(--cor-fundo);
    border-radius: 8px;
}

.btn-documento {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background-color: var(--cor-primaria);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-documento:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.btn-documento.btn-video {
    background-color: #dc2626;
}

.btn-documento.btn-video:hover {
    background-color: #b91c1c;
}

.contato-info {
    background-color: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.contato-info p {
    margin-bottom: 10px;
}

.contato-info a {
    color: var(--cor-secundaria);
    text-decoration: none;
    font-weight: 600;
}

.contato-info a:hover {
    text-decoration: underline;
}

.modal-detalhes h3 {
    color: var(--cor-primaria);
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 18px;
}

.modal-detalhes ul {
    list-style: none;
    padding-left: 0;
}

.modal-detalhes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.modal-detalhes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cor-destaque);
    font-weight: bold;
}

.header-gooey {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 15px 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.header-gooey.scrolled {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.logo-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-wrapper-menu {
    cursor: pointer;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.logo-wrapper-menu:hover {
    transform: scale(1.05);
}

.logo-menu {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.menu {
    filter: url('#shadowed-goo');
    position: relative;
    width: 100px;
    height: 380px;
    margin: 0 auto;
    padding-top: 10px;
    padding-left: 50px;
    box-sizing: border-box;
    font-size: 20px;
    text-align: left;
    pointer-events: none;
}

.menu-open {
    display: none;
}

.menu-open-button {
    background: var(--gooey-primary);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    position: absolute;
    top: 10px;
    color: var(--gooey-text);
    text-align: center;
    line-height: 50px;
    transform: translate3d(0, 0, 0) scale(1.1, 1.1);
    transition: transform 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    pointer-events: auto;
}

.menu-open-button:hover {
    transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.menu-open:checked + .menu-open-button {
    transition-timing-function: linear;
    transition-duration: 200ms;
    transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.hamburger {
    width: 16px;
    height: 2px;
    background: var(--gooey-text);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -1px;
    transition: transform 200ms;
}

.hamburger-1 {
    transform: translate3d(0, -6px, 0);
}

.hamburger-2 {
    transform: translate3d(0, 0, 0);
}

.hamburger-3 {
    transform: translate3d(0, 6px, 0);
}

.menu-open:checked + .menu-open-button .hamburger-1 {
    transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-open:checked + .menu-open-button .hamburger-2 {
    transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menu-open:checked + .menu-open-button .hamburger-3 {
    transform: translate3d(0, 0, 0) rotate(-45deg);
}

.menu-item {
    background: var(--gooey-primary);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    position: absolute;
    top: 10px;
    color: var(--gooey-text);
    text-align: center;
    line-height: 50px;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    pointer-events: auto;
}

.menu-item:hover {
    background: var(--gooey-secondary);
    color: var(--gooey-primary);
    transform: scale(1.1);
}

.menu-item i {
    font-size: 18px;
}

.menu-open:checked ~ .menu-item {
    transition-timing-function: cubic-bezier(0.935, 0.000, 0.340, 1.330);
}

.menu-open:checked ~ .menu-item:nth-child(3) {
    transition-duration: 160ms;
    transform: translate3d(0px, 65px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(4) {
    transition-duration: 240ms;
    transform: translate3d(0px, 130px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(5) {
    transition-duration: 320ms;
    transform: translate3d(0px, 195px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(6) {
    transition-duration: 400ms;
    transform: translate3d(0px, 260px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(7) {
    transition-duration: 480ms;
    transform: translate3d(0px, 325px, 0);
}

.tabelao-section {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid var(--cor-borda);
    text-align: center;
}

.tabelao-section h2 {
    margin-bottom: 40px;
    font-size: 28px;
    color: var(--cor-primaria);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.tabelao-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--cor-destaque);
    border-radius: 2px;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--sombra);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-img {
    min-width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-img:hover {
    transform: scale(1.02);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(39, 40, 41, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--cor-destaque);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.modal-imagem-ampliada {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.mapa-section {
    padding: 60px 0;
    background-color: rgb(233, 232, 232);
    border-top: 1px solid var(--cor-borda);
    text-align: center;
}

.mapa-section h2 {
    margin-bottom: 40px;
    font-size: 28px;
    color: var(--cor-primaria);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.mapa-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--cor-destaque);
    border-radius: 2px;
}

.mapa-container {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--sombra);
    z-index: 1;
}

.yp-search-section {
    background: #272829;
    padding: 2rem 0;
    border-bottom: 1px solid var(--cor-borda);
}

.yp-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.yp-search-input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3.5rem;
    font-size: 1.1rem;
    background: #fff;
    border: 2px solid var(--cor-destaque);
    border-radius: 50px;
    color: #272829;
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.yp-search-input:focus {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.yp-search-icon {
    position: absolute;
    left: 1.2rem;
    font-size: 1.2rem;
    color: var(--cor-destaque);
    pointer-events: none;
}

/* ============================================
   MOBILE - 768px
   ============================================ */
@media (max-width: 768px) {

    body {
        padding-top: 180px;
    }

    .hero {
        margin-top: -180px;
        padding-top: 180px;
    }

    .hero-content h2 {
        font-size: 26px;
        padding: 0 15px;
    }

    .hero-content p {
        font-size: 15px;
        padding: 0 15px;
    }

    /* Cards em coluna única, imagem menor */
    .projetos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 4px;
    }

    .projeto-imagem {
        height: 160px;
    }

    .projeto-info {
        padding: 14px;
    }

    .projeto-titulo {
        font-size: 17px;
    }

    .projeto-preco {
        font-size: 20px;
    }

    /* Filtros empilhados */
    .filtros-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-filtro {
        width: 100%;
        padding: 14px;
    }

    /* Modal ocupa tela toda no mobile */
    .modal-content {
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
        padding: 20px 16px;
    }

    .modal-imagens-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .modal-imagem {
        height: 180px;
    }

    /* Espaço pro botão X não sobrepor o título */
    .modal-detalhes h2 {
        font-size: 20px;
        padding-right: 30px;
    }

    /* Botões de documentos em 2 colunas */
    .botoes-documentos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .btn-documento {
        font-size: 12px;
        padding: 10px 8px;
    }

    /* Contato */
    .contato-card {
        padding: 24px 16px;
    }

    .contato-foto-container {
        width: 110px;
        height: 110px;
    }

    /* Mapa menor */
    .mapa-container {
        height: 320px;
    }

    /* Carousel */
    .carousel-btn {
        padding: 10px 14px;
        font-size: 18px;
    }

    /* Seções com menos padding */
    .filtros-section,
    .projetos-section,
    .contato-section,
    .tabelao-section,
    .mapa-section {
        padding: 36px 0;
    }

    .filtros-section h2,
    .projetos-section h2,
    .contato-section h2,
    .tabelao-section h2,
    .mapa-section h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    /* Evita zoom automático no iOS ao focar no input */
    .yp-search-input {
        font-size: 16px;
        padding: 1rem 1rem 1rem 3rem;
    }
}

/* ============================================
   MOBILE PEQUENO - 480px
   ============================================ */
@media (max-width: 480px) {

    body {
        padding-top: 160px;
    }

    .hero {
        margin-top: -160px;
        padding-top: 160px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Botões de documentos em coluna única nos menores */
    .botoes-documentos {
        grid-template-columns: 1fr;
    }

    .projeto-tipo {
        font-size: 11px;
    }

    .contato-info-card h3 {
        font-size: 22px;
    }

    .contato-cargo {
        font-size: 13px;
    }

    .btn-contato {
        font-size: 14px;
        padding: 13px 16px;
    }
}

/* ═══════════════════════════════════════════════════════
   animations.css — You Parcerias
   Inclua no <head> de index.html e projeto.html
   ═══════════════════════════════════════════════════════ */

/* ── 1. ESTADO INICIAL DOS ELEMENTOS ANIMADOS ────────── */

[data-anim] {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-anim="fade-up"]    { transform: translateY(48px); }
[data-anim="fade-down"]  { transform: translateY(-32px); }
[data-anim="fade-left"]  { transform: translateX(-48px); }
[data-anim="fade-right"] { transform: translateX(48px); }
[data-anim="zoom-in"]    { transform: scale(0.88); }
[data-anim="zoom-out"]   { transform: scale(1.08); }
[data-anim="tilt-left"]  { transform: translateX(-40px) rotate(-3deg); }
[data-anim="tilt-right"] { transform: translateX(40px) rotate(3deg); }
[data-anim="flip-up"]    { transform: perspective(600px) rotateX(18deg) translateY(40px); }

/* ── 2. ESTADO VISÍVEL (classe adicionada pelo JS) ────── */

[data-anim].anim-visible {
    opacity: 1;
    transform: none;
}

/* ── 3. DELAYS ESCALONADOS ──────────────────────────── */

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }


/* ═══════════════════════════════════════════════════════
   ANIMAÇÕES — index.html
   ═══════════════════════════════════════════════════════ */

/* ── HERO: linha dourada que cresce embaixo do título ── */
.hero-content h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--cor-destaque, #f59e0b);
    border-radius: 2px;
    margin: 18px auto 0;
    animation: lineGrow 1.2s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lineGrow {
    to { width: 80px; }
}

/* ── HERO: texto entra suavemente ── */
.hero-content {
    animation: heroFloat 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFloat {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO: botão pulsando ── */
.btn-primary {
    animation: pulseGlow 3s 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(245,158,11,0.3); }
    50%       { box-shadow: 0 4px 30px rgba(245,158,11,0.65); }
}


/* ════════════════════════════════════════════════════════
   CARDS — slideshow de imagens no hover
   ════════════════════════════════════════════════════════ */

/* O container da imagem precisa de overflow hidden (já tem) */
.projeto-card {
    position: relative;
}

/* Wrapper interno das imagens do slideshow */
.card-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Cada slide dentro do card */
.card-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

/* Slide ativo */
.card-slide.ativo {
    opacity: 1;
    z-index: 1;
}

/* Zoom suave na imagem ativa */
.card-slide.ativo img {
    transform: scale(1.06);
}

/* Indicadores de slide (pontinhos) */
.card-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.projeto-card:hover .card-dots {
    opacity: 1;
}

.card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.3s, transform 0.3s;
}

.card-dot.ativo {
    background: #f59e0b;
    transform: scale(1.3);
}

/* Overlay escuro suave no hover para o texto ficar legível */
.projeto-imagem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(39,40,41,0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 2;
}

.projeto-card:hover .projeto-imagem::after {
    opacity: 1;
}

/* Borda dourada sutil no hover — SEM fundo branco */
.projeto-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease,
                border-color 0.3s ease !important;
    border: 2px solid transparent;
}

.projeto-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
    border-color: rgba(245, 158, 11, 0.45) !important;
    /* garante que o fundo NÃO muda */
    background-color: white !important;
}

/* Remove os ::before e ::after que causavam o branco */
.projeto-card::before,
.projeto-card::after {
    display: none !important;
}

/* Garante que .projeto-imagem seja relative para o overlay */
.projeto-imagem {
    position: relative;
}


/* ── SEÇÕES: linha decorativa anima ao entrar ── */
.filtros-section h2::after,
.projetos-section h2::after,
.contato-section h2::after,
.tabelao-section h2::after,
.mapa-section h2::after {
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.filtros-section.section-visible h2::after,
.projetos-section.section-visible h2::after,
.contato-section.section-visible h2::after,
.tabelao-section.section-visible h2::after,
.mapa-section.section-visible h2::after {
    transform: scaleX(1);
}

/* ── CONTATO CARD ── */
.contato-foto-container {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.contato-card:hover .contato-foto-container {
    transform: scale(1.06) rotate(2deg);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* ── BOTÕES DE CONTATO ── */
.btn-contato .fa {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-contato:hover .fa {
    transform: scale(1.3) rotate(-8deg);
}

/* ── FILTROS ── */
.filtro-grupo input,
.filtro-grupo select {
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.filtro-grupo input:focus,
.filtro-grupo select:focus {
    transform: translateY(-2px);
    border-color: var(--cor-destaque, #f59e0b) !important;
    box-shadow: 0 4px 16px rgba(245,158,11,0.18) !important;
}

/* ── SEARCH BAR ── */
.yp-search-input {
    transition: box-shadow 0.4s, transform 0.3s, border-color 0.3s !important;
}

.yp-search-input:focus {
    transform: scaleX(1.02) translateY(-2px) !important;
}

/* ── MENU ── */
.menu-item {
    transition: transform ease-out 200ms, background-color 0.25s, color 0.25s !important;
}


/* ═══════════════════════════════════════════════════════
   ANIMAÇÕES — projeto.html
   ═══════════════════════════════════════════════════════ */

.amenidade-item {
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.28s, background 0.28s, box-shadow 0.28s !important;
}

.amenidade-item:hover::before {
    animation: checkBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkBounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.6); }
    100% { transform: scale(1); }
}

.btn-doc {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.25s, border-color 0.25s,
                color 0.25s, box-shadow 0.3s !important;
}

.btn-doc:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 24px rgba(39,40,41,0.18) !important;
}

.sidebar-card {
    animation: sidebarReveal 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sidebarReveal {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.preco-valor {
    animation: priceIn 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes priceIn {
    from { opacity: 0; transform: translateY(16px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.thumb {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.3s, opacity 0.3s !important;
}

.thumb:hover { transform: scale(1.15); }

.hero-nav {
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.3s !important;
}

.hero-nav:hover {
    transform: translateY(-50%) scale(1.12) !important;
}

.hero-titulo {
    animation: heroTitleIn 1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(30px); letter-spacing: -0.05em; }
    to   { opacity: 1; transform: translateY(0);    letter-spacing: inherit; }
}

.hero-badge {
    animation: badgeIn 0.6s 0.05s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes badgeIn {
    from { opacity: 0; transform: translateY(10px) scale(0.85); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-local {
    animation: heroTitleIn 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn-voltar .fa {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-voltar:hover .fa {
    transform: translateX(-5px);
}


/* ═══════════════════════════════════════════════════════
   PROGRESS BAR DE SCROLL
   ═══════════════════════════════════════════════════════ */

#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(245,158,11,0.6);
}


/* ═══════════════════════════════════════════════════════
   BOTÃO VOLTAR AO TOPO
   ═══════════════════════════════════════════════════════ */

#btn-topo {
    position: fixed;
    bottom: 36px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--cor-primaria, #272829);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    pointer-events: none;
}

#btn-topo.visivel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#btn-topo:hover {
    background: var(--cor-destaque, #f59e0b);
    color: var(--cor-primaria, #272829);
    transform: translateY(-4px) scale(1.08);
}

#btn-topo:active {
    transform: scale(0.93);
}


/* ═══════════════════════════════════════════════════════
   REDUCE MOTION
   ═══════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    [data-anim], [data-anim].anim-visible,
    .hero-content, .hero-titulo, .hero-badge, .hero-local,
    .sidebar-card, .preco-valor, .btn-primary,
    .hero-content h2::after,
    .card-slide, .card-slide img {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
