* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Orbitron", sans-serif;

}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-size: 16px;
    position: relative;

}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: image-set('/assets/img/layout/lua.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    z-index: -2;
}


body::before {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 248, 255, 0.2) 0%, rgba(15, 15, 30, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: -1;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(3);
    }
}

header {
    position: fixed;
    top: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    align-items: center;
    z-index: 100;
    transition: height 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

}


.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 200px;
    flex-shrink: 0;
    padding: 0;

}


.logo {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    max-width: 200px;
    padding: 20px 15px;
    transition: transform 0.0s ease;

}


.logo-link:hover .logo {
    transform: scale(1.1);
}


.logo-link.touch-feedback-active .logo {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 16px;
    margin-right: 30px;
    margin-top: 3px;
    align-items: center;
}

nav a {
    color: #ffffffd7;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    transform: scale(1);
    display: inline-block;

}

nav a:hover {
    color: #74def8;
    text-shadow: 1px 1px 10px rgb(65, 227, 255);
    transform: scale(1.05);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #74def8;
    transition: width 0.3s ease;

}

nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link i {
    font-size: 28px;
    line-height: 0;
}

.whatsapp-link span {
    font-size: 20px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 11;
}

.menu-toggle span {
    height: 3px;
    width: 30px;
    background-color: #bbc5c5;
    border-radius: 2px;
    transition: all 0.3s ease;

}


#produtos {
    scroll-margin-top: 40px;
}


#sobre,
#contato,
#endereco {
    scroll-margin-top: 110px;
}



.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2vw;
    padding-top: 100px;
    color: #fff;
    position: relative;
    margin-top: 0px;


}


.hero-content {
    position: relative;
    width: 45%;
    z-index: 2;
    text-align: center;
    align-items: center;
    margin-top: 40px;
    filter: drop-shadow(0 0 30px rgba(187, 211, 218, 0.938));

}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    width: 100%;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(100, 99, 99, 0.829);
    text-align: center;
    border-radius: 20px;
    margin-left: 1.3%;
}


.hero-h1-uni-dig {
    color: #ffffff;
    font-weight: 900;
    font-size: 2.3rem;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #04bbf3,
        0 0 30px #04bbf3,
        0 0 40px #04bbf3;
}


.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
    text-align: center;
    width: 100%;
    border-radius: 20px;
    margin-left: 1.3%;
}



.hero-content .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 900;
    opacity: 1;
    transform: scale(1);
    color: #ffffff;
    background: linear-gradient(90deg, #05a8f357, #28bbff);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.6s ease, background 0.3s ease;
    display: inline-block;
}

.active .btn {
    transform: scale(1);
    opacity: 1;
}

.hero-content .btn:hover {
    transform: scale(1.05);
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content.visible h1,
.hero-content.visible p,
.hero-content.visible .btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.visible p {
    transition-delay: 0.2s;
}

.hero-content.visible .btn {
    transition-delay: 0.4s;
}



.container {
    height: 100vh;
    position: relative;
    background-image: none;
    overflow: hidden;
    z-index: 3;
}

.title-product-section {
    font-size: 2rem;
    color: #fff;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
    text-align: center;
    margin-top: 100px;
}


.list {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}


.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    gap: 50px;
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: 2;
    padding-top: 10px;

}

.active {
    opacity: 1;
    transform: translateX(0);
}

.product-img {
    width: 50%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    position: relative;
    z-index: 2;
}

.product-img img {
    max-width: 80%;
    max-height: 60%;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
    border-radius: 30px;
}

.active .product-img img {
    transform: translateX(0);
    opacity: 1;
}

.content {
    width: 50%;
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 2;
    flex-direction: column;
    filter: drop-shadow(0 0 30px rgba(187, 211, 218, 0.938));
}

.product-tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #8de8ff;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
    text-shadow: 3px 3px 10px rgb(0, 0, 0);
}

.active .product-tag {
    transform: translateX(0);
    opacity: 1;
}

.product-name {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 10px;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}

.active .product-name {
    transform: translateX(0);
    opacity: 1;

}

.description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    max-width: 500px;
    text-align: justify;
    opacity: 0;
    transform: translateX(600px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
    text-shadow: 3px 3px 10px rgb(0, 0, 0);
}


.active .description {
    transform: translateX(0);
    opacity: 1;
}

.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 30px;
    border: none;
    color: #ffffff;
    background: linear-gradient(90deg, #05a8f357, #28bbff);
    cursor: pointer;
    text-decoration: none;
    transform: translateX(800px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.btn:hover {
    transition-duration: 0.05s;
    transition-timing-function: ease-out;
    transform: scale(1.1);
    background: linear-gradient(90deg, #08a4ffe5, #08c5ff);
    box-shadow: 0 0 20px rgba(8, 164, 255, 0.945);
}

.active .btn:hover {
    transform: translateX(0) scale(1.1);
}

.arrows {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background-color: rgb(112, 112, 112);
    border: 1px solid #ffffff;
}

.arrow-btn:hover {
    background-color: #47daff;
    border-color: #ffffff;
}

.indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15%;
    z-index: 5;
}

.numbers {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.dots {
    display: flex;
    gap: 15px;
    top: 10px;
    align-items: center;
}


.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #47daff;
    transform: scale(1.2);
}



.about-us-section {
    display: flex;
    min-height: 82vh;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 30px rgba(187, 211, 218, 0.938));

}

.about-us-img {
    width: 20%;
    border-radius: 50%;
    margin-bottom: 0px;
}

.info-autor {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}

.about-us-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1px;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}


.about-us-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: justify;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}

.address-section {
    height: 90vh;
    padding: 30px 30px;
    text-align: center;
    filter: drop-shadow(0 0 30px rgba(187, 211, 218, 0.938));

}

.address-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}

.address-section p {
    font-size: 1.1rem;
    text-align: center;
    color: #b8b8d0;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 10px;
}

#endereco-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}

#endereco-link:hover {
    color: #8de8ff;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
    transform: scale(1.05);
}

#endereco-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #8de8ff;
    transition: width 0.3s ease;
}

#endereco-link:hover::after {
    width: 100%;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1px;
    top: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;

}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;

}

.map-overlay::after {
    content: 'Clique aqui para interagir com o mapa';
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.map-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.contact-section {
    height: auto;
    min-height: 90vh;
    padding: 30px 30px;
    text-align: center;
    margin-bottom: 300px;



}

.contact-section h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);

}

.contact-section p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}





#contact-form {
    width: 100%;
    max-width: 100%;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(175, 185, 185, 0.808);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;



}

/* Adiciona o mesmo efeito hover dos outros cards */
#contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgb(160, 176, 179), 0 0 5px rgb(122, 137, 138);
}

#contact-form h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #555;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    /* Garante que o padding não estoure a largura */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    /* Permite que o usuário redimensione a altura */
    min-height: 120px;
}

/* Estilo do botão de envio */
#contact-form .btn {
    opacity: 1;
    transform: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 10px;
    border: none;
    /* Garante que é um botão clicável */
    cursor: pointer;
}

.social-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #000000;
    font-size: 22px;
    text-decoration: none;
    background-color: #b9b9b9;
    border-radius: 50%;
    transition: all 0.3s ease;


}


.social-bar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-bar a[href*="facebook.com"]:hover {
    background-color: #004eb4;
}

.social-bar a[href*="wa.me"]:hover {
    background-color: #25D366;
}

.social-bar a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


footer {

    padding: 40px 20px;
    padding-bottom: 90px;
    text-align: center;
    color: #b8b8d0;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}


.legal-page-content {
    color: #b8b8d0;
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px 20px;
}

.legal-page-content h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #cdd1d1;
    padding-bottom: 10px;
}

.legal-page-content h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page-content p,
.legal-page-content li {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    color: #ffffff;
}

.legal-page-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.legal-page-content p em {
    color: #ffffff;
    font-style: italic;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 90%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: none;
    padding: 20px 30px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

#consent-banner.hidden {
    transform: translateY(150%);
}

.consent-text {
    color: #1d1d1d;
    font-size: 0.9rem;
    line-height: 1.6;
}


.consent-text a {
    color: #111111;
    text-decoration: underline;
    font-weight: 600;
}

.consent-text a:hover {
    color: #111111;
}

#accept-consent-btn {
    flex-shrink: 0;
    opacity: 1;
    transform: none;
    background-color: black;

}


.section-title {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

#portfolio,
#depoimentos,
#blog {
    scroll-margin-top: 80px;
    padding: 80px 30px;
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(134, 134, 134);
}

.portfolio-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.portfolio-card .card-content {
    padding: 25px;
}

.portfolio-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.portfolio-card p {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}

.portfolio-card .btn {
    opacity: 1;
    transform: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.portfolio-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-arrow {
    display: none;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.portfolio-arrow:active {
    background-color: #47daff;
    border-color: #fff;
}

.portfolio-indicators {
    display: none;
    max-width: 120px;
    width: 100%;
    margin: 20px auto 0 auto;
    padding: 10px 0;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    scroll-behavior: smooth;
}

.portfolio-indicators::-webkit-scrollbar {
    display: none;
}

.port-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 4px;
}


.port-dot.active {
    background-color: #47daff;
    transform: scale(1.5);
    box-shadow: 0 0 8px rgba(71, 218, 255, 0.8);
}

.arrow-left {
    left: 0px;
}

.arrow-right {
    right: 0px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;

    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial-stars {
    color: #e7d000;
    /* Cor de ouro */
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card blockquote {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    border: none;
    text-align: justify;
}

.testimonial-card cite {
    font-weight: bold;
    color: #ffffff;
    font-style: normal;
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(151, 151, 151);
}

.blog-card img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.blog-card-content p {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    line-height: 1.6;
    flex-grow: 1;
    text-align: justify;
}

.blog-card-content span {
    color: #8de8ff;
    font-weight: bold;
    margin-top: 15px;
}

.article-page-content {
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px 20px;
}

.article-page-content h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(8, 8, 8, 0.7);
}

.article-page-content .article-meta {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 500;
}

.article-main-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
    aspect-ratio: 16/14;
    object-fit: cover;
}

.article-page-content p,
.article-page-content li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: justify;
}

.article-page-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-page-content a {
    color: #08efff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-page-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.article-page-content ul,
.article-page-content ol {
    padding-left: 30px;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}



@media (max-width: 768px) {

    .logo {
        width: 80%;
    }

    .logo a {
        font-size: 2rem;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: 90px;
        transition: background-color 0.3s ease;
    }

    header.open {
        width: 100%;
        height: auto;
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding: 1px 0px;
        margin-top: 2px;

    }

    header.open nav {
        display: flex;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 5px;
        padding: 20px 0;
        padding-left: 35px;
    }

    header nav ul li a {
        text-align: center;
        font-size: 18px;
        text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
        color: #ffffffd7;

    }

    header.open nav ul li:not(:last-child) {
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    nav a {
        font-size: 16px;
    }

    nav a:hover {
        color: #74def8;
        text-shadow: 1px 1px 10px rgb(65, 227, 255);

    }

    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: #74def8;
        transition: width 0.3s ease;


    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 45px;
        right: 25px;
        margin-top: -3%;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    #sobre,
    #contato,
    #endereco {
        scroll-margin-top: 10vh;
    }

    #portfolio {
        scroll-margin-top: 6vh;
    }

    #produtos {
        scroll-margin-top: 10vh;
    }



    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 20px 20px 80px;
        justify-content: flex-start;
        margin-bottom: 60px;
    }


    .hero-content {
        width: 100%;
        margin-bottom: 30px;
        padding-left: 0;
        text-align: center;
        padding-top: 120px;
        margin-top: 10%;
    }

    .hero-content h1 {
        width: 100%;
        font-size: 2.6rem;
        line-height: 1.1;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 100px;
    }

    .hero-content p {
        font-size: 1rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 5px;
    }



    .hero-content .btn {
        width: 90%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.8rem;
    }

    .blog-grid,
    .testimonials-grid,
    .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 10px 5px 30px 5px;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .blog-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar,
    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }


    .blog-card,
    .testimonial-card,
    .portfolio-card {
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        transform: none !important;
        margin: 0;
    }

    .blog-card:hover,
    .testimonial-card:hover,
    .portfolio-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }

    .portfolio-arrow {
        display: flex;
    }

    .portfolio-carousel-wrapper {
        padding: 0 10px;
        bottom: 40px;
    }

    .portfolio-indicators {
        display: block;
        text-align: center;
        bottom: 50px;
    }

    .title-product-section {
        font-size: 2rem;
        color: #fff;
        text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
        text-align: center;
        margin-top: 50px;
    }

    .container {
        min-height: 85vh;
        padding: 0;
        margin-top: 100px;
    }

    .item {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        margin-top: -130px;
    }

    .product-img {
        display: flex;
        width: 80%;
        height: 300px;
        justify-content: center;
        padding-right: 0;
        padding-bottom: 0px;
        margin-bottom: -30px;
        margin-top: 120px;
    }

    .product-img img {
        max-width: 100%;
        max-height: 100%;
        margin-bottom: 0;
        padding-bottom: 0px;
    }

    .content {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0px;
        padding-top: 0px;
    }

    .product-tag {
        font-size: 1rem;
    }

    .product-name {
        justify-content: center;
        width: 90%;
        font-size: 1.5rem;
        text-align: center;
    }

    .description {
        justify-content: center;
        width: 75%;
        text-align: justify;
        font-size: 1rem;
        text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
    }

    .arrows {
        width: 100%;
        top: 50%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .indicators {
        bottom: 180px;
    }

    .about-us-section {
        top: 0;
        margin-top: 0;
        padding-top: 10;
        margin-bottom: 100px;
    }

    .about-us-img {
        width: 50%;
    }

    .info-autor {
        text-align: center;
        margin-top: 15px;
        margin-bottom: 15px;
        text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
    }

    .info-autor p {
        font-size: 1rem;
        text-align: center;
        text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
    }

    .about-us-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .address-section {
        height: auto;
        padding: 80px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 0%;
        padding-top: 35px;
        bottom: 100px;
        margin-bottom: 200px;
    }

    .address-section h2 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    #endereco-link {
        margin-bottom: 20px;
    }

    .contact-section {
        width: 100%;
        height: auto;
        padding: 80px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        top: 20px;
        margin-top: 10px;
        padding-top: 30px;
        align-items: center;
        margin-bottom: 450px;
    }

    .contact-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .contact-card {
        width: 100%;
        max-width: 350px;
        min-width: unset;
    }

    .contact-card p {
        color: #ffffff;
        margin-bottom: 20px;
        font-size: 0.8rem;
        line-height: 1;
        overflow-wrap: break-word;
        word-wrap: break-word;

    }

    .contact-card .btn {
        width: 60%;
        padding: 20px 20px;
        font-size: 2rem;
    }


    footer {
        padding: 50px 25px;
        padding-bottom: 80px;
    }

    footer p,
    footer P {
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .arrow-btn:hover {
        background-color: rgb(112, 112, 112);
        border: 1px solid #ffffff;
    }

    .arrow-feedback-active {
        background-color: rgb(54, 198, 255) !important;
        border-color: #74def8 !important;
    }

    .facebook-feedback-active {
        background-color: #1877F2 !important;
    }

    .whatsapp-feedback-active {
        background-color: #25D366 !important;
    }

    .instagram-feedback-active {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    }

    #consent-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .consent-text {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    #portfolio,
    #depoimentos,
    #blog {
        padding: 60px 20px;
    }

    .article-page-content h1 {
        font-size: 2rem;
    }

    .article-page-content {
        padding-top: 120px;
    }
}

/* ======================================================= */
/* CORREÇÃO PARA CELULAR DEITADO (LANDSCAPE) */
/* ======================================================= */

@media screen and (orientation: landscape) and (max-height: 600px) {

    header {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: 60px;
        transition: background-color 0.3s ease;
    }

    header.open {
        width: 100%;
        height: auto;
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding: 1px 0px;
        margin-top: 2px;

    }

    header.open nav {
        display: flex;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 2px;
        padding: 5px 0;
        padding-left: 35px;
    }

    header nav ul li a {
        text-align: center;
        font-size: 10px;
        text-shadow: 3px 3px 10px rgba(8, 8, 8, 0.829);
        color: #ffffffd7;
      

    }

    header.open nav ul li:not(:last-child) {
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .whatsapp-link {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .whatsapp-link i {
        font-size: 16px;
        line-height: 0;
    }

    .whatsapp-link span {
        font-size: 16px;
        font-weight: 500;
    }

    .logo {
        max-width: 120px;
        padding-top: 15px;
        margin-left: 10px;
    }

    nav a {
        font-size: 14px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 45px;
        right: 25px;
    
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    @media (max-width: 900px) {
        header nav {
            display: none;
        }

        header.open nav {
            display: flex;
            background-color: rgba(0, 0, 0, 0.95);
            height: 100vh;
            overflow-y: auto;
        }

        .menu-toggle {
            display: flex;
            top: 20px;
        }
    }

    .hero-section {
        height: auto;
        min-height: 120vh;
        padding-top: 60px;
        padding-bottom: 40px;
        align-items: flex-start;
    }

    .hero-content {
        width: 90%;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-content .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .social-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .container {
        height: 100vh;
        /* Mantém a altura da tela */
        margin-top: 0;
        padding-top: 40px;
        /* Espaço para o titulo não cortar */
    }

    .title-product-section {
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 0;
        position: absolute;
        width: 100%;
        top: 10px;
        z-index: 10;
    }

    /* Layout Lado a Lado para aproveitar a largura */
    .item {
        flex-direction: row;
        /* Imagem na esquerda, texto na direita */
        align-items: center;
        justify-content: center;
        margin-top: 0;
        padding: 0 40px;
        /* Espaço nas laterais para as setas */
    }

    .product-img {
        width: 40%;
        /* Imagem ocupa 40% da largura */
        height: auto;
        margin-top: 20px;
        justify-content: center;
    }

    .product-img img {
        max-height: 70vh;
        /* Limita altura da imagem */
        object-fit: contain;
        transform: translateX(-50px);
        /* Ajuste de animação */
    }

    /* Ajuste da animação para vir da esquerda */
    .active .product-img img {
        transform: translateX(0);
    }

    .content {
        width: 60%;
        /* Texto ocupa 60% */
        padding-left: 20px;
        padding-top: 20px;
        align-items: flex-start;
        /* Alinha texto à esquerda */
        text-align: left;
    }

    .product-tag {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .product-name {
        font-size: 1.8rem;
        text-align: left;
        /* Texto alinhado à esquerda */
        margin-bottom: 10px;
        width: 100%;
    }

    .description {
        font-size: 0.9rem;
        text-align: left;
        /* Texto justificado ou esquerda */
        max-width: 100%;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .content .btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    /* Ajuste das Setas para não ficar em cima do texto */
    .arrows {
        width: 98%;
        justify-content: space-between;
        padding: 0;
    }

    .indicators {
        bottom: 10px;
    }

    .social-bar {
        position: fixed;
        top: 90%;
        transform: translateY(-50%);
        flex-direction: row;
        gap: 10px;
        z-index: 200;
    }

    .social-bar a {
        width: 35px;
        /* Ícones menores */
        height: 35px;
        font-size: 18px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        /* Sombra para contraste */
    }
}