/* ============================================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: #f2ede4;
    font-family: 'Poppins', sans-serif;
    color: #1a2a3a;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    transition: max-width 0.3s ease;
}

/* ============================================================================
   SEÇÕES - CORES E ESPAÇAMENTO
   ============================================================================ */

.about-section,
.gallery-section,
.reviews-section {
    background-color: #f2ede4;
    padding: 40px 0;
}

.full-buffet-section,
.history-section,
.location-section,
.section-carousel {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.section-carousel {
    padding-bottom: 40px;
}

/* ============================================================================
   HEADER - MENU SUPERIOR
   ============================================================================ */

.main-header {
    position: relative;
    background-color: #233f47;
    padding: 10px 0;
    overflow: visible;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

.container-oculta-garfo {
    position: relative;
    width: 100%;
    height: 30px;
    background-color: #f2ede4;
    z-index: 10;
}

.logo-area {
    flex: 0 0 auto;
}

.logo {
    width: 150px;
}

.cta-area {
    position: relative;
    flex: 1;
}

.main-title {
    font-family: 'Zizo', sans-serif;
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
    text-align: center;
}

.subtitle-header {
    color: #7c98a1;
    font-style: italic;
    text-transform: lowercase;
    font-weight: 400;
}

.garfo-area {
    flex: 0 0 auto;
}

.floating-fork {
    width: 180px;
    transform: rotate(10deg);
    margin-bottom: -60px;
}

/* ============================================================================
   SEÇÃO ABOUT - FAMÍLIA E DESCRIÇÃO
   ============================================================================ */

.family-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(35, 63, 71, 0.05);
}

.info-side {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.badge-tradicao {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #7c98a1;
}

.section-title {
    font-family: 'Zizo', sans-serif;
    font-size: 3.2rem;
    color: #233f47;
    line-height: 0.9;
    margin: 0;
}

.highlight {
    color: #233f47;
}

.text-content p {
    max-width: 380px;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    display: flex;
    align-items: center;
}

.btn-compact {
    display: inline-block;
    padding: 12px 25px;
    background-color: #233f47;
    color: #f2ede4;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-compact:hover {
    background-color: #020f22;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 15, 34, 0.2);
}

.image-side {
    flex: 1;
    min-height: 450px;
}

.family-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================================
   SEÇÃO BUFFET - GRID DE IMAGENS
   ============================================================================ */

.buffet-header {
    margin-bottom: 25px;
    text-align: center;
}

.buffet-title {
    font-family: 'Zizo', sans-serif;
    font-size: 3.5rem;
    color: #233f47;
    margin: 0;
    line-height: 0.8;
}

.buffet-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #7c98a1;
    letter-spacing: 5px;
    margin-top: 10px;
}

.buffet-card-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.buffet-grid-frame {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(35, 63, 71, 0.1);
}

.buffet-img-box {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.buffet-img-box img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.buffet-img-box.main {
    grid-row: 1 / span 2;
}

.buffet-img-box:hover img {
    transform: scale(1.08);
}

/* ============================================================================
   SEÇÃO GALERIA - CARDS COM IMAGENS
   ============================================================================ */

.gallery-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.gallery-card {
    display: flex;
    flex-direction: column;
}

.gallery-card.large {
    max-width: 500px;
}

.gallery-card.small {
    max-width: 350px;
}

.gallery-info {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.gallery-info h3 {
    font-family: 'Zizo', sans-serif;
    font-size: 2.2rem;
    color: #233f47;
    margin: 0;
}

.gallery-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #7c98a1;
    margin: 5px 0 0;
}

.gallery-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #233f47;
}

.gallery-image img {
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-info {
    transform: translateX(10px);
}

.gallery-card:hover h3 {
    color: #345e69;
}

.gallery-group-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ============================================================================
   SEÇÃO HISTÓRIA - DONA CIDA E LEGADO
   ============================================================================ */

.title-legacy {
    font-family: 'Zizo', sans-serif;
    font-size: 4rem;
    text-align: center;
    color: #233f47;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.legacy-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.history-intro {
    flex: 0.8;
    position: relative;
    text-align: center;
}

.bg-compass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.bg-compass img {
    width: 100%;
}

.intro-content {
    position: relative;
    z-index: 2;
}

.history-year-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.year-label {
    font-family: 'Zizo', sans-serif;
    font-size: 4.5rem;
    color: #233f47;
    line-height: 1;
    text-transform: uppercase;
}

.year-number {
    font-family: 'Zizo', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    line-height: 1;
    color: #233f47;
}

.history-main-text {
    font-family: "Poppins", sans-serif;
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5a5e;
}

.legacy-layout {
    flex: 1.2;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #233f47;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.legacy-image-wrapper {
    flex: 1;
    position: relative;
}

.cida-img {
    width: 100%;
    border-radius: 20px;
    background-color: #f8f9fa;
}

.name-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background-color: #f8f9fa;
    color: #233f47;
    padding: 10px 20px;
    font-family: 'Zizo', sans-serif;
    font-size: 1.3rem;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.nome-filhos {
    color: #c2baaf;
    font-weight: 600;
}

.legacy-info {
    flex: 1.5;
    color: #ffffff;
}

.legacy-info p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ============================================================================
   SEÇÃO CARROSSEL - ANIMAÇÃO CONTÍNUA
   ============================================================================ */

.carousel {
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
}

.group {
    display: flex;
    gap: 100px;
    padding-right: 100px;
    will-change: transform;
    animation: scrolling 40s linear infinite;
}

.card {
    flex-shrink: 0;
    width: 260px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ============================================================================
   SEÇÃO REVIEWS - COMENTÁRIOS E CTA
   ============================================================================ */

.reviews-section {
    text-align: center;
}

.reviews-header {
    margin-bottom: 40px;
}

.cta-buttons-title {
    font-family: 'Zizo', sans-serif;
    color: #1a2a30;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.reviews-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #666;
    margin-top: -15px;
    font-size: 1.1rem;
}

.widget-container {
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-buttons-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-btn {
    background: linear-gradient(180deg, #233f47 0%, #020f22 100%);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(2, 15, 34, 0.3);
}

.cta-btn .large-text {
    font-family: 'Zizo', sans-serif;
    font-size: 2.4rem;
    line-height: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

/* Estilo específico para a imagem 360 */
.cta-btn .large-text img {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.cta-btn:hover .large-text img {
    transform: scale(1.1);
}

.cta-btn .small-text {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.cta-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 15, 34, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn .small-text,
.cta-btn .large-text,
.cta-btn i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.cta-btn:hover .small-text,
.cta-btn:hover .large-text,
.cta-btn:hover i {
    color: #f2ede4;
}

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

.social-icons i {
    font-size: 2.8rem;
}

.google-logo-img {
    height: 45px;
    margin-top: 10px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.cta-btn:hover .google-logo-img {
    filter: none;
}

/* ============================================================================
   SEÇÃO LOCALIZAÇÃO - MAPA E ESTACIONAMENTO
   ============================================================================ */

.location-container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: stretch;
    justify-content: center;
}

.map-box, .parking-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-title {
    font-family: 'Zizo', sans-serif;
    font-size: 1.8rem;
    color: #233f47;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.location-title span {
    display: block;
    font-size: 1rem;
    color: #7c98a1;
    font-family: 'Poppins', sans-serif;
}

.map-wrapper, .parking-card {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.parking-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.address-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.address-text:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.address-text i {
    color: #7c98a1;
    font-size: 1.2rem;
}

.address-text p {
    font-family: 'Poppins', sans-serif;
    color: #233f47;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ============================================================================
   FOOTER - RODAPÉ
   ============================================================================ */

.main-footer {
    background-color: #233f47;
    color: #f2ede4;
    padding: 15px 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.footer-column.branding {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    flex-shrink: 0;
    width: 150px;
}

.footer-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-branding-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-description {
    margin: 0;
    max-width: 500px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2ede4;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer-social a:hover {
    background: #7c98a1;
    transform: translateY(-3px);
}

.footer-column.contact h3 {
    font-family: 'Zizo', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f2ede4;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.contact-info i {
    color: #f2ede4;
    width: 20px;
}

.footer-bottom {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #ffffff;
}

.d-flex-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Estilização da área do desenvolvedor */
.developer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.developer-info img {
    height: 75px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.developer-info a:hover img {
    transform: scale(1.1);
}

/* ============================================================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================================================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* ============================================================================
   RESPONSIVIDADE - MEDIA QUERIES
   ============================================================================ */

/* Telas Grandes (2K/4K) */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

@media (min-width: 1600px) {
    .container { max-width: 1500px; }
}

@media (min-width: 1920px) {
    .container { max-width: 1650px; }
}

/* Tablets e Laptops Pequenos */
@media (max-width: 1100px) {
    .legacy-container {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    
    .history-intro {
        margin-bottom: 40px;
    }

     .title-legacy {
        font-size: 4.2rem;
        margin-bottom: 20px;;
    }

    .legacy-layout {
        padding: 30px;
    }

    .info-side {
        padding: 40px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .family-card {
        flex-direction: column;
        border-radius: 30px;
        margin: 0 15px;
        overflow: hidden;
    }

    .info-side {
        order: 1;
        padding: 40px 25px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .image-side {
        order: 2;
        width: 100%;
        min-height: 100%;
    }

    .section-title {
        font-size: 2.6rem;
        line-height: 1.1;
    }

    .section-title br {
        display: none;
    }

    .text-content p {
        max-width: 100%;
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .btn-compact {
        width: 100%;
        max-width: 300px;
        padding: 18px 25px;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .family-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

     .title-legacy {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }

    .title-legacy::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #345e69;
        margin: 10px auto 0;
    }

    .year-label {
        font-size: 3.8rem;
    }

    .year-number {
        font-size: 4rem;
    }

    .legacy-layout {
        flex-direction: column;
    }

    .legacy-image-wrapper {
        max-width: 350px;
    }

     .location-container {
        flex-direction: column;
        gap: 40px;
    }

    .map-wrapper,
    .parking-card {
        height: 300px;
        min-height: 300px;
    }

    .parking-card img {
        object-fit: cover;
    }
    
    .address-text p {
        font-size: 0.85rem;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-column.branding {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-wrapper {
        width: 130px;
        margin: 0 auto;
    }

    .footer-description {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-social a {
        width: 52px;
        height: 52px;
    }

    .footer-social i {
        font-size: 32px;
    }

    .footer-column.contact h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .contact-info p {
        justify-content: center;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-bottom {
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 20px;
    }

    .gallery-grid {
        flex-direction: column;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .history-section,
    .full-buffet-section,
    .location-section {
        padding: 50px 0;
    }

    .container-oculta-garfo {
        display: none;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-title {
        font-size: 2rem;
    }

    .floating-fork {
        display: none;
    }

    .family-card {
        flex-direction: column;
        border-radius: 30px;
        margin: 0 15px;
        overflow: hidden;
    }

    .info-side {
        order: 1;
        padding: 40px 25px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .image-side {
        order: 2;
        width: 100%;
        min-height: 100%;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .section-title br {
        display: none;
    }

    .text-content p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }

    .btn-compact {
        width: 100%;
        max-width: 280px;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .family-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .gallery-group-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .gallery-card.small {
        width: 100%;
        max-width: 350px;
        text-align: center;
        background-color: transparent;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gallery-card.large {
        width: auto !important;
        text-align: center;
        background-color: transparent;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gallery-image {
        width: 100%;
        height: 250px;
        min-height: 250px;
        border-radius: 25px;
        overflow: hidden;
        position: relative;
        display: block;
    }

    .gallery-card.large .gallery-image {
        height: auto !important;
        min-height: 350px !important;
        flex-shrink: 0;
    }

    .gallery-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }

    /* Textos e Ajustes Finais */
    .gallery-info {
        margin-bottom: 0;
    }

    .gallery-info h3 {
        margin-bottom: 5px;
        font-size: 1.8rem;
    }

    .gallery-info p {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .gallery-card:hover .gallery-info {
        transform: none;
    }

    .group {
        gap: 40px;
    }

    .card {
        width: 200px;
        height: 200px;
    }

    .year-label {
        font-size: 3.8rem;
    }

    .year-number {
        font-size: 4rem;
    }

    .legacy-layout {
        flex-direction: column;
    }

    .legacy-image-wrapper {
        max-width: 300px;
    }

    .buffet-grid-frame {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

     .location-container {
        flex-direction: column;
        gap: 40px;
    }

    .map-wrapper,
    .parking-card {
        height: 300px;
        min-height: 300px;
    }

    .parking-card img {
        object-fit: cover;
    }
    
    .address-text p {
        font-size: 0.85rem;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-column.branding {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-wrapper {
        width: 130px;
        margin: 0 auto;
    }

    .footer-description {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-social a {
        width: 52px;
        height: 52px;
    }

    .footer-social i {
        font-size: 32px;
    }

    .footer-column.contact h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .contact-info p {
        justify-content: center;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-bottom {
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 20px;
    }

     .d-flex-footer {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .cta-buttons-grid {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
    }

    .cta-btn .small-text {
    font-size: 1.3rem;
    }

    .cta-btn .large-text {
        font-size: 2.6rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 15px;
        right: 15px;
    }
}

/* Celulares Pequenos */
@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
    }

    .legacy-layout {
        gap: 20px;
    }

    .name-badge {
        position: relative;
        left: 0;
        bottom: 0;
        display: inline-block;
    }
}

/* Esconde as estrelas do cabeçalho do widget Trustindex */
.ti-header .ti-stars {
    display: none !important;
}