:root {
    /* --cor-principal: #FA8072;
    --cor-secundaria: #ffedcc;
    --cor-terciaria: #e2b4ab;
    --cor-destaque: #d45d5d;
    --cor-super-destaque: #b03030;
    --cor-texto: var(--cor-super-destaque);
    --cor-btn-whatsapp: #0bad21;
    --cor-btn-whatsapp-hover: #25c73b; */
    --cor-rosa-forte: #d54770;
    --cor-rosa: #f87fa2;
    --cor-texto-header: #fff4dc;
    --cor-fundo-marrom: #5a3629;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--cor-texto-header);
    color: var(--cor-texto);
}

.txt-rosa {
    color: var(--cor-rosa);
}
header {
    /* position: fixed; */
    /* fixa no topo */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    /* ocupa 100% da largura */
    background-color: var(--cor-fundo-marrom);
    color: var(--cor-texto-header);
    text-align: center;
    /* centraliza o texto */
    font-size: 1.5rem;
    /* tamanho razoável */
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 0.9;
    /* sem serifa */
    padding: 0.7rem 0.7rem 1rem;
    /* espaçamento interno */
    z-index: 1000;
    /* fica acima de outros elementos */
}

.logo {
    display: block;
    max-width: 60%;
    /* largura máxima da logo */
    height: auto;
    margin: 0 auto;
    /* espaço acima para o header fixo */
}

span.num-visitantes {
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

header p {
    font-size: 1.2rem;
    color: #555;
}

.carousel {
    position: relative;
    max-width: 400px;
    /* tamanho do carrossel */
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 20px;

    border-width: 1px;
}

.carousel-images {
    display: flex;
    transition: transform 2.0s ease-in-out;
}

.carousel-images img {
    width: 100%;
    /* cada imagem ocupa 100% do carrossel */
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 20px;
}

section {
    text-align: center;
    padding: 2rem 1rem;
}

section h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cor-principal);
}

section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    /* alinhamento do texto + ícone */
    align-items: center;
    /* centraliza verticalmente */
    justify-content: center;
    /* centraliza horizontalmente */
    gap: 8px;
    /* espaço entre ícone e texto */

    background-color: #25d366;
    /* verde WhatsApp */
    color: #fff;
    /* texto branco */
    font-weight: bold;
    text-decoration: none;
    /* remove sublinhado */
    padding: 1rem 1rem;
    /* espaço interno */
    border-radius: 30px;
    /* border-color: #fff;
    border-style: solid;
    border-width: 5px; */
    /* deixa arredondado */
    transition: background 0.3s ease;
    /* efeito suave */
}

.btn-whatsapp::after {
    /* content: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg'); */
    content: url('../imagens/whatsapp.svg');
    width: 15%;
    height: 15%;
    display: inline-block;
    filter: invert(1);
    /* deixa o ícone branco */
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    /* tom mais escuro no hover */
    transform: scale(1.1)
}

.letras-miudas {
    font-size: 0.7rem;
    color: #555;
    margin-top: 0.5rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #ffe6e1;
    margin-top: 2rem;
    font-size: 0.9rem;
}

ul li {
    list-style-type: none;
    /* padding: 1.0rem; */
    text-align: center;
    max-width: 80%;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1;
}

.container-destaque {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    text-align: center;
    /* border-radius: 15px; */
    color: #fff;
    background-color: var(--cor-rosa);
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
}
.container-destaque strong{
    font-size: 2rem;
}
.container-texto {
    color: var(--cor-super-destaque);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.2;
}

.imagem-container {
    /* Opcional: para definir o tamanho do círculo e centralizar */
    width: 30%;
    height: 30%;
    overflow: hidden;
    /* Para garantir que a imagem fique contida no círculo */
    border-radius: 50%;
    /* Cria a forma do círculo, para um elemento quadrado */
    border: 5px solid var(--cor-destaque);
}

.imagem-circular {
    object-fit: cover;
    /* Garante que a imagem preencha a área circular sem distorção */
}

.texto-destaque {
    /* font-family: sans-serif; */
    font-size: 2.5rem;
    color: var(--cor-principal);
    margin-bottom: 1rem;
}

.texto-destaque-2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cor-principal);
    margin-bottom: 1rem;
}

.texto-destaque-3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cor-destaque);
    margin-bottom: 1rem;
}

.video-container {
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;    
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 2px solid var(--cor-rosa);
    border-radius: 10px;
    display: block;
    aspect-ratio: 16 / 9;
}

.texto-branco {
    color: #fff
}

.texto-abaixo-do-botao {
    color: #fff;
    font-size: 1rem;
    margin: 1rem 0;
}

p {
    color: var(--cor-texto)
}

p strong {
    color: var(--cor-super-destaque)
}

.container-destaque p strong {
    color: var(--cor-secundaria)
}

.faixa-texto-100pc {
    background: var(--cor-rosa);
    color: #fff;
    padding: 1rem 1rem;
    margin: 1rem 0 2rem;
    font-size: 1.2rem;
    /* font-weight: bold; */
    text-align: center;
}
.faixa-texto-100pc strong {
    font-weight: bold;
    font-size: 1.4rem;
}

#vagas {
    font-size: 4rem;
    color: var(--cor-fundo-marrom);
    font-weight: bold;
}

.container-texto-destaque {
    color: var(--cor-super-destaque);
    /* max-width: 600px; */
    margin: 0 auto 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
}



.btn-flat {
    background-color: #5d6c40;
    color: #fff;
    border: none;
    padding: 1rem 1rem;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    /* garante comportamento de botão */
    white-space: normal;
    /* permite quebra de linha */
    word-wrap: break-word;
    /* quebra palavras muito grandes */
    text-align: center;
    /* centraliza o texto quebrado */
    max-width: 90%;
    /* define limite pro botão (opcional) */
}

.faixa-texto-100pc-final {
    width: 100%;
    background: #ede9d5;
    padding: 1rem 1rem;
    margin: 2rem 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.faixa-texto-100pc-final strong {
    /* color: var(--cor-destaque); */
    font-weight: bold;
}

.txt-verde-musgo {
    color: #5d6c40;
}

.txt-laranja {
    color: #df7857;
}

.logo-rodape {
    display: block;
    max-width: 75%;
    /* largura máxima da logo */
    height: auto;
    margin: 1rem auto 1rem;
}

.programacao {
    text-align: center;
    max-width: 90%;
    margin: 0 auto 2rem;
    padding: 1rem;
    background: var(--cor-secundaria);
    border-radius: 15px;
    border-width: 1px;
    border-color: var(--cor-destaque);
}

.programacao h3 {
    font-size: 1.2rem;
    color: var(--cor-destaque);
    margin-bottom: 1rem;
}

.programacao p {
    font-size: 1rem;
    color: var(--cor-principal);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .btn-whatsapp {
        width: 80%;
        font-size: 1.3rem;
        padding: 0.5rem 1.0rem;
    }

    .carousel {
        position: relative;
        max-width: 80%;
        /* tamanho do carrossel */
        margin: 2rem auto;
        overflow: hidden;
        border-radius: 20px;

        border-width: 1px;
    }

    .carousel-images {
        display: flex;
        transition: transform 2.0s ease-in-out;
    }

    .carousel-images img {
        width: 100%;
        /* cada imagem ocupa 100% do carrossel */
        flex-shrink: 0;
        object-fit: cover;
        border-radius: 20px;
    }

    .video-container {
        width: 90%;
    }

    /* .video-container iframe {
        height: 180px;
    } 
    */

    .container-destaque {
        width: 90%;
        /* ajustar largura em telas menores */
    }

    .imagem-container {
        /* Opcional: para definir o tamanho do círculo e centralizar */
        width: 60%;
        height: 60%;
        overflow: hidden;
        /* Para garantir que a imagem fique contida no círculo */
        border-radius: 50%;
        /* Cria a forma do círculo, para um elemento quadrado */
        border: 5px solid var(--cor-destaque);
    }
}

.background-marrom {
    background: var(--cor-fundo-marrom);
}

.background-bege {
    background: var(--cor-texto-header);
}

.background-rosa-forte {
    background: var(--cor-rosa-forte);
}

.texto-marrom {
    color: var(--cor-fundo-marrom)
}

.texto-vermelho {
    color: red;
}

.card-90-pc {
    width: 95%;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    color: white;
}

.card-90-pc strong {
    font-size: 1.3rem;
    font-weight: bold;
}

.rochester-regular {
  font-family: "Rochester", cursive;
  font-weight: bold;
  font-size: 1.7rem;
  font-style: normal;
}


.line-height-0-5 {
    line-height: 0.5;
}
.line-height-1-5 {
    line-height: 1.5;
}
.foto-isis {
    width: 80%;
}

.card-dia {
    width: 90%;
    background-color: white;
    color: var(--cor-fundo-marrom);
    border-radius: 20px;
    padding: 1rem;
    line-height: 1.5;
    box-shadow: 5px -5px var(--cor-rosa);
}

.texto-centralizado-90pc {
    width: 90%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto;
    color: var(--cor-fundo-marrom)
}

.texto-centralizado-90pc strong {
    font-size: 2rem;
}




/* formas arredondadas com ondas */
.container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .wavy-shape {
            width: 100%;
            /* max-width: 800px; */
            height: 120px; /* Altura compacta: 70px base + 50px ondas */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -50px 0 0;
        }

        .wavy-shape svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
        }

        .content {
            position: relative;
            z-index: 1;
            padding: 20px;
            color: white;
            text-align: center;
            font-size: clamp(16px, 2.5vw, 24px);
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }












