* {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
}

body {
    flex-wrap: wrap;
}

/*logo zap*/

#whatsapp img {
    width: 4rem;
    position: fixed;
    bottom: 10px; 
    right: 10px; 
    height: auto; 
    z-index: 9999;
    padding: 1rem;
    transition: 0.3s;
}

#whatsapp img:hover {
    width: 4.5rem;
    position: fixed;
    bottom: 10px; 
    right: 10px;  
    height: auto; 
    z-index: 9999; 
    padding: 1rem;
}

/*imagem do header*/

#img_introducao {
    background: linear-gradient(90deg, rgb(202, 10, 138) 0%, rgba(237, 83, 83, 1) 100%);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.658);
}

#img_introducao img {
    width: 40rem;
    display: block;
    margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 5rem;

    opacity: 0;
    transform: scale(0.9);
    animation: aparecerZoom 1.2s ease forwards;
    animation-delay: 0.6s;
}

@keyframes aparecerZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*Sessao da Introducao*/

#introducao img {
    width: 43rem;
}

#botao {
    background-color: #F50058;
    color: #ffffff;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
    border: 3px solid #F50058;
    border-radius: 15px;
    padding: 0.8rem;
    cursor: pointer;
    transition: 0.5s;
    text-decoration: none;
}

#botao:hover {
    background-color: white;
    color: #F50058;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
    border: 3px solid #F50058;
    border-radius: 15px;
    padding: 0.8rem;
    cursor: pointer;
}

#introducao {
    display: flex;
    align-items: flex-start; 
    gap: 20px; 
    padding: 3rem 4rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

#introducao > div.texto {
    flex: 1; 
}

#introducao_img_direita {
    width: 300px;
    height: auto;
}

h1 {
    font-weight: bold;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(119, 119, 119, 0.5);
}

#destaque {
    color: #F50058;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 0.5rem;
}

#horario {
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-decoration: underline;
}

#paragrafo {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/*Sessao dos Materiais*/

#materiais_conteiner {
    background: #FF0DAE;
    background: linear-gradient(90deg, rgb(172, 8, 117) 0%, rgba(237, 83, 83, 1) 100%);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.658);
}

#materiais {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
    padding-bottom: 6rem;
    justify-items: center; 
}

.materiais_unidades {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z' fill='%23f50058' fill-opacity='0.30' fill-rule='evenodd'/%3E%3C/svg%3E");
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    height: 330px; 
    transition: transform 0.3s ease;
    will-change: transform;
    margin: 1.5rem;
    width: 100%;
    max-width: 250px; 
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.356);
}

.materiais_unidades:hover {
    transform: scale(1.05);
    z-index: 1;
}

.materiais_unidades img {
    width: 260px;
    margin-bottom: 1rem;
}

.materiais_unidades h2 {
    text-transform: uppercase;
    font-size: 2rem;
    color: #F50058;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.781);
    letter-spacing: 1.5px;
}

#materiais li {
    text-transform: uppercase;
}

#materiais_conteiner h3 {
    color: white;
    font-size: 3rem;
    padding: 4rem;
}

#recorte {
    width: 240px;
    border-radius: 10px;
}

/*Sessao perguntas*/
#perguntas {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23f50058' fill-opacity='0.55'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#perguntas h1 {
    padding-bottom: 2rem;
    color: #ac1d51;
    text-shadow: none;
    font-size: 4rem;
}

#perguntas details {
    width: 90%;             
    max-width: 1000px;      
    margin-bottom: 1rem;
    background-color: #f02670;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
    font-size: 1.2rem;
}

#perguntas summary {
    font-size: 1.5rem;
    font-weight: bold;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

#perguntas summary::marker {
    display: none;
}

#perguntas details[open]{
    background-color: #6b1233;
}

#perguntas details[open] p {
    margin-top: 1rem;
    line-height: 1.6;
}

#perguntas p {
    margin: 1;
    margin-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.815);
    padding-top: 1rem;
}

#perguntas summary::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

#perguntas details[open] summary::after {
    transform: rotate(180deg);
}

iframe {
    padding: 2rem;
}

/*Sessao dos Clientes*/
#clientes {
    background: #FF0DAE;
    background: linear-gradient(90deg, rgb(199, 18, 139) 0%, rgba(237, 83, 83, 1) 100%);
    padding: 2rem 4rem;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.658);
}

#clientes h2 {
    color: #ffffff;
    text-align: center;
    font-size: 3rem;
    padding: 2rem;
}

#carrossel {
    font-size: 1.6rem;
    padding: 2rem;
    color: white;
background: #cc1f5e;
background: linear-gradient(-90deg, rgba(204, 31, 94, 1) 0%, rgb(119, 19, 58) 100%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin: -2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.item {
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    text-align: center;
}

.item h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffdfef;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.item p {
    font-size: 1.4rem;
    text-transform: none;
    font-weight: normal;
    color: hwb(0 89% 0%);
    padding-bottom: 1rem;
    text-transform: lowercase;
    padding: 3rem;
}

/* Botões de navegação */
.owl-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: bold;
}

.owl-carousel1 {
    width: auto;
}

.owl-nav button {
    background: #fff;
    color: #ac1d51;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #ac1d51;
    color: #fff;
    transform: scale(1.05);
}

/* Remove estilo padrão dos botões */
.owl-nav button span {
    display: block;
}

/* Dots (se quiser usar) */
.owl-dots {
    text-align: center;
    margin-top: 1rem;
}

.owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: 0.3s ease;
}

.owl-dot.active {
    background: #fff;
}

/*TEXTO ENROLAR*/
#texto_enrolar {
    padding: 3rem 4rem;
    margin-top: 6rem;
    margin-bottom: 4rem;
    display: flex;
}

#imagem_enrolar img {
    padding: 0%;
    width: 36rem;
    position: absolute;
    z-index: -1;
}

#enrolacao h1 {
    padding-bottom: 5rem;
    position: relative;
}

strong {
    color: #bb1e57;
}

#enrolacao li {
    font-size: 2rem;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: bold;
    list-style: none;
    opacity: 0;
    transform: translateY(20px);
}

#enrolacao li:hover {
    font-size: 2.2rem;
}

#enrolacao li.show {
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.motivo_card {
    display: flex;
    padding: 1.5rem;
}

.motivo_card img{
    width: 2.5rem;
    padding-right: 1rem;
}

/*Sessao dos Contatos*/
#contato {
    background: #cc1f5e;
    background: linear-gradient(180deg, rgba(204, 31, 94, 1) 0%, rgba(74, 11, 35, 1) 100%);
    color: rgb(221, 220, 220);
    display: flex;
    padding: 9rem;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.644);
}

#parte1 img {
    width: 20rem;
}

#parte1 {
    padding: 2rem;
    text-align: left;
    padding-left: 8rem;
    padding-right: 8rem;
}

#parte2 {
    padding: 1rem;
}

#parte3 h2{
    padding: 1rem;
}

#paragrafo_final {
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e2e2;
}

#informacao {
    display: flex;
    align-items: center; 
    gap: 0.5rem;         
    margin: 1rem;
}

#informacao img {
    width: 3.5%;
    height: auto;
    filter: invert(100%) sepia(100%) saturate(500%) hue-rotate(200deg); 
}

/*DETALHES*/
h3 {
    text-align: center;
    text-transform: uppercase;
}


/*https://heropatterns.com/*/


/* =========================
   RESPONSIVIDADE
   ========================= */

/* Tablets e telas <= 1024px */
@media (max-width: 1024px) {
    /* Introdução empilhada */
    #introducao {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    #introducao img {
        width: 80%;
        max-width: 500px;
        height: auto;
    }

    #introducao_img_direita {
        width: 80%;
        max-width: 420px;
    }

    #botao {
        font-size: 2rem;
        padding: 0.7rem 1.4rem;
    }

    /* Materiais em 2 colunas */
    #materiais {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem 4rem;
        gap: 1rem;
    }

    .materiais_unidades {
        max-width: 320px;
        height: auto;
        margin: 1rem;
    }

    .materiais_unidades img {
        width: 80%;
        max-width: 240px;
    }

    /* Perguntas */
    #perguntas {
        padding: 2.5rem 2rem;
    }

    #perguntas h1 {
        font-size: 3rem;
    }

    /* Texto enrolar */
    #texto_enrolar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 2rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
        gap: 1rem;
    }

    #imagem_enrolar img {
        position: static;
        width: 80%;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Clientes */
    #clientes {
        padding: 2rem;
    }
    #carrossel {
        margin: 0;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    /* Contato empilhado */
    #contato {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 4rem 2rem;
        gap: 1rem;
    }

    #parte1, #parte2, #parte3 {
        padding: 1rem;
    }

    #parte1 {
        padding-left: 0;
        padding-right: 0;
    }

    #parte1 img {
        width: 14rem;
    }

    #informacao {
        justify-content: center;
    }

    #informacao img {
        width: 28px; 
    }

    iframe {
        width: 100%;
        height: 380px;
        padding: 0;
        border: 0;
    }
}

/* Celulares <= 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    #img_introducao img {
        width: 85%;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    #botao {
        font-size: 1.4rem;
        padding: 0.6rem 1.1rem;
        border-width: 2px;
    }

    #materiais {
        grid-template-columns: 1fr;
    }

    .materiais_unidades {
        max-width: 90%;
        margin: 0.8rem auto;
    }

    .materiais_unidades h2 {
        font-size: 1.6rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    #materiais_conteiner h3 {
        font-size: 2rem;
        padding: 2.5rem 1rem;
    }

    #clientes h2 {
        font-size: 2rem;
        padding: 1rem 0;
    }

    .item h3 {
        font-size: 1.4rem;
    }

    .item p {
        font-size: 1rem;
        padding: 1rem;
        text-transform: none;
    }

    #perguntas h1 {
        font-size: 2.4rem;
    }

    #perguntas details {
        font-size: 1rem;
        padding: 0.9rem 1.1rem;
    }

    #texto_enrolar {
        padding: 2rem 1rem;
    }

    #imagem_enrolar img {
        width: 90%;
        max-width: 360px;
    }

    #contato {
        padding: 3rem 1rem;
    }

    #parte1 img {
        width: 12rem;
    }

    #informacao h2 {
        font-size: 1rem;
    }

    #informacao img {
        width: 24px;
    }

    iframe {
        height: 320px;
    }
}

/* Telas muito pequenas <= 480px */
@media (max-width: 480px) {
    #img_introducao img {
        width: 90%;
        padding: 2rem 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    #botao {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
        border-width: 2px;
    }

    #materiais_conteiner h3 {
        font-size: 1.6rem;
        padding: 2rem 1rem;
    }

    .materiais_unidades img {
        max-width: 200px;
    }

    #clientes {
        padding: 1.2rem;
    }

    #carrossel {
        font-size: 1.1rem;
        padding: 1rem;
        border-radius: 10px;
        margin: 0.5rem 0 1.5rem 0;
    }

    .owl-nav button {
        padding: 0.4rem 0.8rem;
        font-size: 1.1rem;
    }

    #perguntas {
        padding: 2rem 1rem;
    }

    #perguntas h1 {
        font-size: 2rem;
    }

    #texto_enrolar {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }

    #imagem_enrolar img {
        width: 95%;
        max-width: 320px;
    }

    #contato h2 {
        font-size: 1.1rem;
    }

    #informacao h2 {
        font-size: 0.95rem;
    }

    #informacao img {
        width: 20px;
    }

    iframe {
        height: 280px;
    }
}

