/* Correções globais */
:root{
    --primarycolor:#081A40;
    --secondarycolor:#010440;
    --buttoncolor:#d9984A;
    --buttonhover:#f2b950;
    --others:#bf522A;
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}



.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avaliacao{
    text-decoration: none;
}

/* --------------------------------Cabeçalho--------------------------- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: var(--primarycolor);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: height 0.4s ease-in-out;
    height: 100px; /* Tamanho inicial da navbar */
}

.avaliacao{
    text-decoration: none;
}




/* ------------------------------------------HERO----------------------------------------- */


.logo h1 {
    color: white;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: font-size 0.4s ease-in-out;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    transition: opacity 0.4s ease-in-out;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: font-size 0.4s ease-in-out;
}

.cta-header {
    background-color: #ff0066;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, font-size 0.4s ease-in-out, padding 0.4s ease-in-out;
}
#typed-text {
    font-size: 4rem;
    color: #333;
    font-weight: bold;
    letter-spacing: 1.5px;
    display: inline-block;
}

.cursor {
    display: inline-block;
    background-color: #333;
    width: 2px;
    height: 1.2rem;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.logo {
    align-items: center;
}


.nav-list {
    display: flex;
    list-style: none;
    gap: 20px; 
}

.nav-list li {
    display: inline-block;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--buttonhover);
}

.cta-header {
    background-color: #ff0066;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-header:hover {
    background-color: #ff3366;
}
section.hero {
    padding-top: 100px; 
    height: 100vh; 
    width: 100vw; 
    background-image: url('./images/BackgroundHero.png'); 
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: white;
    text-align: center;
    font-size: 2rem;
    margin: 0; 
    box-sizing: border-box; 
}

.hero h2 {
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

.cta {
    background-color: var(--buttoncolor);
    padding: 15px 30px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta:hover {
    background-color: var(--buttonhover);
}




/*---------------------------- Estilo Seções Gerais -------------------------------*/
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0044cc;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}












/*---------------------------------------------PRODUTOS--------------------------------------------*/



.products-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.products-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primarycolor); 
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


.product-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #005580;
    margin-top: 15px;
}

.product-card p {
    font-size: 1rem;
    color: #555555;
    margin-top: 10px;
    line-height: 1.6;
}


.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr 1fr; 
        gap: 20px;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr; 
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}








/* --------------------------------------------SERVIÇOS------------------------------------- */


.services-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #003366;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.under{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
}


.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #005580;
    margin-top: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555555;
    margin-top: 10px;
    line-height: 1.6;
}


.service-card i {
    font-size: 2.5rem;
    color: #0077b6;
}


.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}






/* --------------------------------------------CONTATO------------------------------------------------ */


.contact-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    color: #005580;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}


.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #0077b6;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
}

.contact-info i {
    color: #005580;
    margin-right: 10px;
}


.social-media h4 {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #005580;
}

.social-media a {
    margin: 10px;
    font-size: 1.5rem;
    color: #0077b6;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #005580;
}


.contact-form {
    text-align: left;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #0077b6;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 5px;
    display: block;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333333;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #0077b6;
    outline: none;
}

.contact-form .btn {
    padding: 10px 20px;
    background-color: #0077b6;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #005580;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}






/* -------------------------------------------FOOTER------------------------------------- */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff0066;
}











/* ------------------------------SEÇÃO SOBRE--------------------------------- */
.about-content {
    padding: 20px;
    color: #333;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003366; 
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.about-content h3 {
    font-size: 1.5rem;
    color: #005580; 
    margin-bottom: 10px;
    font-weight: 600;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 1.5rem;
    position: relative;
    color: #444444;
}

.about-content ul li::before {
    content: "✓"; 
    position: absolute;
    left: 0;
    top: 0;
    color: #009688; 
    font-size: 1.2rem;
    font-weight: bold;
}

.about-content blockquote {
    font-style: italic;
    background-color: #f0f0f0;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid #009688;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}


.about-content:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}


.visible {
    opacity: 1;
    transform: translateY(0);
} 


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: left;
}

.about-content h2, .about-content h3 {
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}






/* ---------------------------------------AVALIAÇÕES---------------------------------------- */
.reviews-section {
    padding: 30px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header h3 {
    font-size: 1.2rem;
    color: #333;
}

.review-stars {
    color: #ffd700;
    font-size: 1.5rem;
}

.review-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
















/* ========================================================RESPONSIVIDADE======================================================= */


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 19px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 60px;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--primarycolor);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-list.show-menu {
        transform: translateX(0);
    }
    

    .nav-list li {
        margin: 20px 0;
    }
    .products-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .menu-toggle{
        margin-left: 20%;
    }
    .logo{
        margin-top: 1%;
        margin-right: 20%;
    }
    .about-grid{
        display: flex;
    }
    .about-content{
        margin-bottom: 10%;
    }
    .about-image {  
        display: none; 
        width: 0px;
        height: 0px;
    }

    
    .reviews-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        width: 100%;
        box-sizing: border-box;
    }

    .reviews-tab h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .review {
        padding: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        width: 100%;
        text-align: left;
    }

    .review:last-child {
        border-bottom: none;
    }

    
    .reviews-tab .review-content {
        font-size: 1rem;
        margin-bottom: 10px;
        text-align: center;
    }
}



@media (max-width: 768px) {
   
    .reviews-tab {
        margin: 20px 0;
    }
}


@media (max-width: 1024px) {
    .products-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    
    .reviews-tab {
        padding: 30px;
    }

    .reviews-tab h2 {
        font-size: 1.8rem;
    }

    .review {
        padding: 15px;
    }

    .reviews-tab .review-content {
        font-size: 1.2rem;
    }
}


@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .cta-header {
        font-size: 14px;
        padding: 8px 15px;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section p {
        font-size: 1rem;
    }

    .about-content h2, .about-content h3 {
        font-size: 1.8rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    section.hero {
        font-size: 1.5rem;
        padding-top: 70px;
    }

    #typed-text {
        font-size: 2rem;
    }

    .cta {
        padding: 10px 20px;
        font-size: 16px;
    }

    
    .reviews-tab {
        width: 100%;
    }
}



.reviews-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.review-stars {
    color: #FFD700;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.5;
}


@media (max-width: 768px) {
     .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        padding: 15px;
    }

    .review-header h3 {
        font-size: 1rem;
    }

    .review-card p {
        font-size: 0.9rem;
    } 
}


@media (min-width: 769px) and (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 20px; 
    }

    .contact-info, .contact-form {
        width: 100%; 
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h3, .contact-form h3 {
        font-size: 1.5rem; 
    }

    .contact-info p, .contact-form label, .contact-form input, .contact-form textarea {
        font-size: 1rem; 
    }

    .contact-form input, .contact-form textarea {
        width: 100%; 
        padding: 10px;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .contact-form textarea {
        resize: vertical;
    }

    .contact-form button {
        width: 100%; 
        padding: 12px;
        font-size: 1.2rem;
    }

    .social-media a {
        font-size: 1.5rem; 
    }
}



.services-section {
    padding: 40px 20px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 30px; 
    padding: 20px;
}

.service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(33.33% - 40px); 
    min-width: 250px; 
    max-width: 300px; 
    transition: transform 0.3s ease; 
}


.service-card:hover {
    transform: scale(1.05);
}


.service-card i {
    font-size: 40px;
    color: #0056b3; 
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .service-card {
        flex: 1 1 calc(50% - 20px); 
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%; 
    }
    .products-grid{
        display: block;
    }
    .product-card{
        margin-bottom: 20px;
    }
}
















