main {
    overflow: hidden;
}

/* ==========================
   BOTÃO WHATSAPP FIXO
   ========================== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.2vw;
    right: 1.2vw;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2vw;
    color: rgb(0, 255, 38);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ==========================
   SIDEBAR MENU MOBILE
   ========================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 1001;
}

.sidebar a,
.sidebar button {
    display: block;
    padding: 8px 8px 8px 32px;
    font-size: 25px;
    color: #818181;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar a:hover,
.sidebar button:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* ==========================
   MENU PRINCIPAL
   ========================== */
.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8vw 12vw;
    background-color: #00A8FF;
}

.logo {
    height: 60px;
    margin: 0 3vw;
}

#btns-menu ul {
    display: flex;
    gap: 3vw;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1vw;
}

#btns-menu ul li a {
    color: white;
    text-decoration: none;
}

.social-icons {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2vw;
}

.social-icons a {
    font-size: 2vw;
    color: #fff;
    text-decoration: none;
}

/* ==========================
   CAROUSEL
   ========================== */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    height: 28.4vw;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-inner img {
    width: 100%;
    max-height: 40vw;
    object-fit: cover;
    object-position: top;
}

.carousel-control-prev-icon {
    transform: scale(1.5) translateX(-3vw);
}

.carousel-control-next-icon {
    transform: scale(1.5) translateX(3vw);
}

/* ==========================
   SESSÕES PRINCIPAIS
   ========================== */
.about,
.products,
.clients,
.contact {
    padding: 1vw 15vw;
}

.about h1,
.products h1,
.clients h1,
.contact h1 {
    margin-left: 1vw;
    font-size: 2vw;
    font-weight: 400;
}

hr {
    height: 2px;
    background-color: #000;
}

/* ===== Capa de Entrada ===== */
.modal-backdrop.show {
    backdrop-filter: blur(10px);
}

.entry-modal-content {
    border-radius: 0.6vw;
    padding: 0.8vw;
}

.btn-close {
    margin-left: auto;
}

.modal-header {
    justify-content: center;
}

.modal-title {
    text-align: center;
    font-size: 1.1vw;
}

#entryForm input {
    display: block;
    width: 100%;
    padding: 0.7vw;
    margin-bottom: 1vw;
    border: 1px solid #ccc;
    border-radius: 0.4vw;
}

.btn-entry {
    background-color: #00A8FF;
    color: white;
    border: none;
    padding: 0.8vw;
    width: 100%;
    font-size: 1rem;
    border-radius: 0.4vw;
    cursor: pointer;
    font-size: 1vw;
}

.btn-entry:hover {
    background-color: #007bbf;
}

/* ===== Quem Somos ===== */
.about-container {
    display: flex;
    align-items: center;
    gap: 8vw;
    margin: 2vw;
}

.about-container img {
    width: 30vw;
}

.about-container p {
    font-size: 1vw;
    text-align: justify;
}

/* ===== Produtos ===== */
.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    justify-content: center;
}

.product-item {
    width: calc(24% - 35px);
    background: #fff;
    padding: 1.2vw;
    border-radius: 0.8vw;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-item h3 {
    font-size: 1.1vw;
    font-weight: 600;
    margin-bottom: 0.8vw;
    color: #333;
}

.product-item img {
    width: 100%;
    height: 13vw;
    object-fit: cover;
    border-radius: 0.6vw;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    padding: 0.6vw 1.2vw;
    border-radius: 0.4vw;
    margin-top: 1vw;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.buy-button:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: scale(1.05);
}

/* ===== Modal de Produto ===== */
#productModal .modal-content {
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: none;
}

#productModal .modal-header {
    background: linear-gradient(135deg, #00A8FF, #007bbf);
    color: white;
    border-bottom: none;
    padding: 1.2vw;
}

#productModal .modal-title {
    font-size: 1.5vw;
    font-weight: 600;
}

#productModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#productModal .btn-close:hover {
    opacity: 1;
}

#productModal .modal-body {
    padding: 2vw;
    text-align: center;
}

#modalProductImage {
    border-radius: 0.6vw;
    max-height: 25vw;
    object-fit: cover;
    margin-bottom: 1.5vw;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

#modalProductImage:hover {
    transform: scale(1.02);
}

#modalProductDescription {
    font-size: 1.05vw;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.8vw;
}

#productModal .modal-footer {
    border-top: none;
    padding: 1.5vw;
    justify-content: center;
}

#modalBuyButton {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: white;
    font-size: 1.1vw;
    font-weight: bold;
    padding: 0.8vw 2vw;
    border-radius: 0.4vw;
    transition: transform 0.2s ease, background 0.3s ease;
}

#modalBuyButton:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: scale(1.05);
}

/* ===== Clientes ===== */
.client-comments {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-bottom: 2vw;
    justify-content: center;
}

.client-comment {
    width: calc(32% - 30px);
    background: white;
    border-radius: 1vw;
    padding: 1.2vw;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-comment:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.client-comment img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1vw;
}

.client-comment p {
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
    color: #555;
    margin-bottom: 0.8vw;
}

.client-comment span {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}


/* ==========================
   CONTATO
   ========================== */
.contact-box {
    display: flex;
    justify-content: space-around;
}

.email-box,
.phone-box,
.hours-box {
    padding: 0.5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.email-text,
.phone-text,
.hours-text {
    padding: 0.5vw 0 0 1.2vw;
}

.left-box,
.right-box {
    width: 48%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.left-box {
    text-align: center;
    padding: 1vw 3vw;
}

.whatsapp-button {
    border: none;
    background: none;
    margin-bottom: 1vw;
    transition: scale 0.5s;
}

.whatsapp-button:hover {
    scale: 1.15;
}

.whatsapp-button img {
    width: 100%;
}

/* ==========================
   LOCALIZAÇÃO
   ========================== */
.location-container {
    padding: 1vw;
    border: 1px solid #ccc;
    border-radius: 0.4vw;
    margin: 1.5vw 0.7vw;
}

iframe {
    margin-top: 0.2vw;
    border-radius: 0.5vw;
    width: 100%;
    height: 450px;
    border: none;
}

/* ==========================
   FOOTER
   ========================== */
footer {
    padding: 1vw 15vw;
    background-color: #000;
    color: lightgray;
}

footer h5 {
    color: #00A8FF;
}

.footer-container-top,
.footer-container-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu a {
    display: flex;
    align-items: center;
    color: #d3d3d3;
    text-decoration: none;
    margin-bottom: 0.2vw;
    transition: margin-left 0.5s;
}

.footer-contact .phone,
.email {
    display: flex;
    align-items: center;
}

.footer-contact .phone p,
.email p {
    padding: 0.6vw 0 0 0.6vw;
}

.fa-chevron-right {
    font-size: 0.6em;
    margin-right: 0.6vw
}

.footer-info {
    margin-top: 10px;
}

.footer-menu a:hover {
    color: #fff;
    margin-left: 0.6vw;
}

/* ==========================
   RESPONSIVIDADE
   ========================== */
/* Ajustes até 1200px */
@media (max-width: 1200px) {

    .about,
    .products,
    .clients,
    .contact {
        padding: 1vw 4vw;
    }

    .about h1,
    .products h1,
    .clients h1,
    .contact h1 {
        font-size: 3vw;
    }

    .menu img {
        padding: 0.3vw;
    }

    .whatsapp-btn {
        bottom: 3.5vw;
        right: 3.5vw;
        font-size: 5vw;
    }

    #btns-menu li {
        font-size: 1.7vw;
    }

    .menu .social-icons {
        display: none;
    }

    .carousel-container {
        height: 30vw;
    }

    .entry-modal-content {
        border-radius: 2vw;
        padding: 20px;
        margin: 0 auto;
        width: 80%;
    }

    .modal-title {
        font-size: 24px;
    }

    #entryForm input {
        padding: 2vw;
        margin-bottom: 2vw;
        border-radius: 2vw;
    }

    .btn-entry {
        padding: 1.2vw;
        font-size: 1.2rem;
        border-radius: 1.5vw;
    }

    .about-container p {
        font-size: 2vw;
    }

    .footer-container-top {
        margin-top: 0.8vw;
    }

}

/* Ajustes até 768px */
@media (max-width: 768px) {
    #productModal .modal-title {
        font-size: 4vw;
    }

    #modalProductImage {
        max-height: 45vw;
        border-radius: 2vw;
    }

    #modalProductDescription {
        font-size: 2.8vw;
    }

    #modalBuyButton {
        font-size: 3vw;
        padding: 1.5vw 4vw;
        border-radius: 1.5vw;
    }

    .whatsapp-btn {
        bottom: 5vw;
        right: 5vw;
        font-size: 8vw;
    }

    .menu {
        position: fixed;
        z-index: 1000;
        width: 100%;
    }

    .carousel-container {
        margin-top: 11.5vw;
    }

    .menu img {
        padding: 0.8vw;
    }

    .logo {
        height: 10vw;
    }

    #btns-menu li {
        font-size: 2vw;
    }

    .about-container,
    .contact-box {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }

    .about-container img {
        width: 80%;
    }

    .about-container p {
        font-size: 3.2vw;
        text-align: center;
    }

    .product-item {
        width: calc(45% - 15px);
        padding: 3vw;
        border-radius: 2vw;
    }

    .product-item h3 {
        font-size: 3vw;
    }

    .product-item img {
        height: 30vw;
        border-radius: 1.5vw;
    }

    .buy-button {
        padding: 1.5vw 3vw;
        font-size: 2.8vw;
        border-radius: 1.5vw;
    }

    .buy-button {
        margin-top: 1vw;
        border-radius: 1.6vw;
        padding: 0.8vw 1.2vw;
    }

    .contact-box {
        gap: 3vw;
    }

    .left-box,
    .right-box {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .location-container {
        padding: 2vw;
        margin: 3vw 4.5vw 0 4.5vw;
    }

    .footer-container-top {
        text-align: center;
        flex-direction: column;
        align-items: center;
        font-size: larger;
    }

    .footer-container-top i,
    .footer-menu {
        display: none;
    }

    .footer-info {
        font-size: 2vw;
    }

    .social-icons {
        gap: 3vw;
    }

    .social-icons a {
        font-size: 3.5vw;
    }

}

/* Ajustes até 480px */
@media (max-width: 480px) {
    #modalProductImage {
        max-height: 60vw;
        border-radius: 3vw;
    }

    #modalProductDescription {
        font-size: 4vw;
    }

    #modalBuyButton {
        font-size: 4vw;
        padding: 2vw 5vw;
        border-radius: 2vw;
    }

    .about,
    .products,
    .clients,
    .contact {
        padding: 3vw 6vw;
    }

    .about h1,
    .products h1,
    .clients h1,
    .contact h1 {
        font-size: 5vw;
    }

    .about-container p {
        font-size: 3.5vw;
    }

    .product-item {
        width: 100%;
        padding: 4vw;
        border-radius: 3vw;
    }

    .product-item h3 {
        font-size: 4vw;
    }

    .product-item img {
        height: 45vw;
        border-radius: 2vw;
    }

    .buy-button {
        padding: 2vw 4vw;
        font-size: 4vw;
        border-radius: 2vw;
    }

    .buy-button {
        margin: 3vw 0 2vw 0;
        border-radius: 2vw;
        padding: 1.6vw 3vw;
        font-size: 3vw;
    }

    .client-comment {
        width: calc(80% - 10px);
        padding: 3vw 0 2vw 0;
    }

    .right-box i {
        display: none;
    }

    .right-box {
        text-align: center;
    }

    .footer-container-bottom {
        margin-top: -2.5vw;
    }

    .footer-info {
        font-size: 3vw;
    }

    .social-icons {
        align-items: center;
        gap: 3.5vw;
    }

    .social-icons a {
        font-size: 5vw;
    }
}