@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    min-height: calc(100vh - 60px);
    /* ajuste 60px para a altura real do footer */

}


:root {
    /*cores */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #66bbb0;
    --secondary-color: #0f968a;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;
    --text-color: #a24c5b;
    --text-neon: #2dfcea;
    --text-rosa-pastel: #df848d;
    --text-rosa-pastel01: #f1dcdf;
    --text-verde-pastel: #c6f3ef;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weigth-normal: 400;
    --font-weigth-medium: 500;
    --font-weigth-semibold: 600;
    --font-weigth-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;

}

html {
    scroll-behavior: smooth;
}

/* Estilos para todo o site */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.whatsapp-icon i {
    font-size: 30px;
    /* aumenta o ícone diretamente */
    color: #25D366;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover i {
    transform: scale(1.2);
}

.whatsapp-icon {
    background-color: var(--text-color);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    margin-top: 30px;
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* Estilos Navbar */

header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-color);
}

.logo-destaque {
    position: relative;
    top: 10px;
    /* distância do topo da tela */
    left: 30px;
    /* distância da esquerda */
    width: 120px;
    /* tamanho da logo */
    height: auto;
    /* mantém proporção */
    z-index: 10;
    /* garante que fique acima de outros elementos */

}

header .navbar {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    color: var(--text-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weigth-semibold);

}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--text-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--text-neon);
    background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/* Menu/modelos */
.menu-section {
    color: var(--text-color);
    background: #f1dcdf;
    padding: 50px 0 100px;
    overflow: visible;
}

.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}

.menu-section .menu-list .menu-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);

}

.menu-section .menu-list .menu-item .menu-image {
    max-width: 83%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: contain;
    display: block; /* evita problemas com inline */
    width: 100%; /* garante que a imagem se ajuste ao contêiner */
    height: auto;
    border-radius: 12px;
    object-fit: cover; /* preenche o contêiner sem distorcer */
    overflow: hidden; /* evita que a imagem ultrapasse os limites */
}

.menu-section .menu-list .menu-item .name {
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weigth-semibold);
}

.menu-section .menu-list .menu-item .text {
    font-size: var(--font-size-m);
}

.menu-section .menu-list .menu-item {
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}

.menu-section .menu-list .menu-item:hover {
    transform: scale(1.3);
}

.tamanhos {
    display: flex;
    gap: 4px;
    margin: 6px 0;
    flex-wrap: wrap;
}

.tamanho-box {
    padding: 4px 6px;
    border: 2px solid #333;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.tamanho-box:hover {
    background-color: #f1dcdf;
    cursor: default;
}




/* Ajustes de layout para imagens lado a lado */
.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.menu-section .menu-list .menu-item {
    flex-basis: calc(33.333% - 40px);
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.menu-section .menu-list .menu-item:hover {
    transform: none;
}

/* Footer section styling */
.footer-section {
    padding: 20px 0;
    background: var(--dark-color);
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--white-color);
    transition: 0.2s ease;
}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
    color: var(--secondary-color);
}

.footer-section .policy-text .separator {
    margin: 0 5px;
    color: var(--white-color);
}

.dev-info {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.logo-dev {
    height: 80px;
    width: auto;
    border-radius: 8px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}


.open-modal {
    cursor: pointer;
}


.modal-content {
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


.zoom-img {
    width: 100%;
    height: auto;
    transition: transform 0.1s ease;
    transform-origin: center center;
    cursor: zoom-in;
}


.close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content:hover {
    transform: scale(1.8);
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.modal-content {
    width: 100%;
    max-width: 800px;
    transition: transform 0.1s ease;
    transform-origin: center center;
    cursor: zoom-in;
}

/* Responsive media query code for max width 1024px */
@media screen and (max-width: 1024px) {
    .menu-section .menu-list {
        gap: 60px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 3 - 60px);
    }

}


/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        color: var(--white-color);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 120px;
        background: var(--primary-color);
        transition: left 0.2s ease;
        z-index: 15;

    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;

    }

    .navbar .nav-menu .nav-link {
        color: var(--text-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .descricao),
    .colecao-section .colecao-details,
    .contact-section .contact-form {
        max-width: 100%;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .colecao-section .section-content {
        gap: 70px;
        flex-direction: column-reverse;
    }

    .colecao-section .colecao-image-wrapper .colecao-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }


    .menu-section .menu-list {
        gap: 30px;
    }

    .menu-section .menu-list .menu-item {
        width: calc(100% / 2 - 30px);
    }

    .menu-section .menu-list .menu-item .menu-image {
        max-width: 200px;
    }

    .gallery-section .gallery-list {
        gap: 30px;
    }

    .gallery-section .gallery-list .gallery-item {
        width: calc(100% / 2 - 30px);
    }

    .contact-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
    }
}

/* Responsive media query code for max width 640px */
@media screen and (max-width: 640px) {
    .menu-section .menu-list {
        gap: 60px;
    }

    .menu-section .menu-list .menu-item,
    .gallery-section .gallery-list .gallery-item {
        width: 100%;
    }

    .testimonials-section .slider-wrapper {
        margin: 0 0 30px;
    }

    .testimonials-section .swiper-slide-button {
        display: none;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .menu-section .menu-list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .menu-section .menu-list .menu-item {
        flex-basis: calc(50% - 30px);
        /* 2 itens por linha */
    }

    /* 🔧 Ajustes para telas pequenas */
@media (max-width: 768px) {
  .menu-section {
    padding: 30px 0 60px;
  }

  .menu-section .menu-list {
    gap: 20px;
    justify-content: center;
  }

  .menu-section .menu-list .menu-item {
    flex-basis: calc(50% - 20px);
    transform: none; /* remove zoom no hover */
  }

  .section-title {
    font-size: 1.2rem;
    padding: 40px 0 60px;
  }

  .tamanho-box {
    font-size: 0.8rem;
    padding: 3px 5px;
  }
}

@media (max-width: 480px) {
  .menu-section .menu-list .menu-item {
    flex-basis: 100%;
  }

  .section-title {
    font-size: 1rem;
    padding: 30px 0 40px;
  }

  .tamanho-box {
    font-size: 0.75rem;
    padding: 2px 4px;
  }
}

/* 🔒 Garantir que paddings e bordas não quebrem layout */
* {
  box-sizing: border-box;
}


}