@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0400;0,600;0,700;&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.6;
}

h1 h2 h3 h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 h2 h3{
    font-style: italic bold;
}


/* =========================
   CABEÇALHO
========================= */

.header {
    width: 100%;
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 5px 6%;

    background: #ffffff;
    border-bottom: 1px solid ;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

.logo h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}


/* MENU */

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    position: relative;

    text-decoration: none;
    color: #222222;

    font-size: 15px;
    font-weight: 600;

    padding: 8px 0;

    transition: 0.3s;
}

.menu a:hover {
    color: #C017A2;
}


/* Linha animada embaixo do botão */

.menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #C017A2;

    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}


/* =========================
   ÁREA PRINCIPAL
========================= */

.hero {
    margin-top: 90px;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 0 6%;

    background-image: url('../image/imagem-fundo.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.45);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    text-align: center;
    transform: translateY(-100px);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #C017A2;
    
}

.hero p {
    font-size: 20px;
    margin-bottom: 120px; ;
}


/* BOTÃO */

.btn {
    display: inline-block;

    padding: 12px 25px;

    background: #1d4ed8;
    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}


/* =========================
   SEÇÕES
========================= */

.section {
    padding: 80px 6%;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}


/* =========================
   PRODUTOS
========================= */

.produtos {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    max-width: 1100px;

    margin: 40px auto 0;
}

.produto {
    padding: 30px;

    background: #f5f5f5;

    border-radius: 10px;

    transition: 0.3s;
}

.produto:hover {
    transform: translateY(-5px);
}

.produto h3 {
    margin-bottom: 10px;
}

/*=========================
   CATEGORIA DE PRODUTOS
===================== */

.categoria-produtos {
    margin-top: 40px;
}

.categoria-produtos h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

/*carrossel*/

.carrossel {
    display:flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.produtos-lista {
    display: flex;
    gap: 25px;
    overflow: hidden;
    width: 890%;
    max-width: 890%;
    flex: 0 0 890px;
}

.produto {
    width: 280px;
    min-width: 280px;
    flex: 0 0 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.produto img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    display: block;
    background: transparent;
}

.produto h4 {
    margin-top: 14px;
    font-size: 16px;
}

/*Setas*/

.seta {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none; 
    background: #C017A2;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0 20px;
    transform: translateY(-20px);
    line-height: 1;
    padding-bottom: 4px;
}

.seta-esquerda, .seta-direita{
    margin-right: 20px;
    margin-left: 20;
}

.seta:hover {
    opacity: 0.8;

}



/* =========================
   RODAPÉ
========================= */

.footer {
    padding: 30px 6%;

    text-align: center;

    background: #C017A2;

    color: #ffffff;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

    .header {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 18px;
    }

    .produtos {
        grid-template-columns: 1fr;
    }

}

/*menu hamburguer*/

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #222222;
}

@media (max-width: 768px) {

    .header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        margin: 0;
    }

    .logo img {
        width: 100px;
    }

    .logo h3 {
        font-size: 12px;
        line-height: 1.1;
        margin: 0;
        text-align: center;
    }

    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        flex-shrink: 0;
        font-size: 32px;
        color: #C017A2;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        position: relative;
        z-index: 1001;

    }

    

    .menu.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        gap: 25px;;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #C017A2;
        z-index: 999;
    }

    .menu.active a {
        color: #ffffff;
        font-size: 22px;
        padding: 10px 20px;
    }

    .menu.active a:hover {
        color: #ffffff;
    }

    .contactos-info {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contacto-coluna {
        width: 100%;
        max-width: 350px;
    }

    .contacto-coluna .btn {
        width: 100%;
        max-width: 280px;
    }

}

/*Empresa*/

.empresa {
    padding-top: 80px;
    padding-bottom: 80px;
}
.empresa h2{
    text-align: center;
    margin-bottom: 40px;
}

.empresa-conteudo{
    max-width: 1100px;
    margin: 0 auto;
}

.empresa-texto{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
}

.empresa-texto p{
    font-size: 18px;
    line-height: 1.7;
}

.empresa-destaques{
    display: flex;
    justify-content: center;
    gap: 25px;
}

.destaque{
    flex: 1;
    max-width: 300px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #c017a12f;
    border-radius: 12px;
    background: #fdf4fb;
    transition: 0.3s;
}

.destaque h3{
    color: #C017A2;
    margin-bottom: 15px;
}

.destaque p{
    line-height: 1.6;
    margin: 0;
}

.destaque:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(192, 23, 162, 0.15);
}

.servicos{
    padding-top: 80px;
    padding-bottom: 80px;
}

.servicos h2{
    text-align: center;
    margin-bottom: 40px;
}

.servicos-conteudo{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.servico{
    flex: 1;
    max-width: 300px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(192, 23, 162, 0.25);
    border-radius: 12px;
    background: #fdf4fb;
    transition: 0.3s;
}

.servico h3{
    color: #C017A2;
    margin-bottom: 15px;
}

.servico p{
    line-height: 1.6;
    margin: 0;
}

.servico:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(192, 23, 162, 0.15);
}

/* =========================
   CONTACTOS
========================= */

.contactos {
    padding-top: 80px;
    padding-bottom: 90px;
}

.contactos h2 {
    color: #C017A2;
    margin-bottom: 15px;
}

.contactos > p {
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 17px;
}

.contactos-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 750px;
    margin: 0 auto;
}

.contacto-coluna {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacto-item {
    width: 100%;
    padding: 25px 20px;
    border: 1px solid rgba(192, 23, 162, 0.25);
    border-radius: 12px;
    background: #fdf4fb;
    transition: 0.3s;
}

.contacto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(192, 23, 162, 0.15);
}

.contacto-item h3 {
    color: #C017A2;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contacto-item h3 svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #C017A2;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contacto-item p {
    margin: 0;
    font-size: 16px;
}

.contacto-coluna .btn {
    margin-top: 15px;
    background: #C017A2;
}

.contacto-coluna .btn:hover {
    background: #a9158e;
}

/* =========================
   RESPONSIVO - EMPRESA / PRODUTOS / SERVIÇOS
========================= */

@media (max-width: 768px) {

    /* EMPRESA */

    .empresa-conteudo {
        width: 100%;
    }

    .empresa-destaques {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .destaque {
        width: 100%;
        max-width: 350px;
    }


    /* PRODUTOS */

    .categoria-produtos {
        width: 100%;
    }

    .carrossel {
        width: 100%;
        position: relative;
    }

    .produtos-lista {
        width: 100%;
        max-width: 100%;
        flex: 1;
        overflow: hidden;
        gap: 15px;
    }

    .produto {
        width: 100%;
        min-width: 100%;
        flex: 0 0 100%;
    }

    .produto img {
        width: 100%;
        max-width: 280px;
        height: 220px;
        object-fit: contain;
    }

    .seta {
        width: 38px;
        height: 38px;
        font-size: 20px;
        margin: 0 5px;
    }


    /* SERVIÇOS */

    .servicos-conteudo {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .servico {
        width: 100%;
        max-width: 350px;
    }

}