/* ESTILOS GERAIS DA PÁGINA (CORPO) */
body {
    font-family: "Poppins", sans-serif;
    background-color: #FDFDFD;
    color: #333;
    margin: 0;
    line-height: 1.7;
}

/* ESTILOS DOS TÍTULOS (TIPOGRAFIA) */
h1, h2, h3, h4, h5 {
    font-family: "Cormorant Garamond", serif;
    color: #8B4513;
    font-weight: 700;
}

/* CABEÇALHO PRINCIPAL (TELA DE ABERTURA) */
.cabecalho-principal {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, #FDFDFD, #EAE0D5);
    padding: 0 20px;
}

.cabecalho-principal h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.cabecalho-principal p {
    font-size: 1.2rem;
    color: #555;
}

/* INDICADOR DE ROLAGEM (SETA ANIMADA) */
.indicador-rolagem {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: 2rem;
    animation: balancar 2s infinite;
    animation-delay: 500ms;
}

.indicador-rolagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-style: solid;
    border-color: #8B4513;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

@keyframes balancar {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* SEÇÕES DE CONTEÚDO (AS TÉCNICAS) */
.secao-tecnica {
    padding: 100px 50px;
    max-width: 800px;
    margin: 0 auto;
    border-bottom: 1px solid #EAE0D5;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.secao-tecnica.visivel {
    opacity: 1;
    transform: translateY(0);
}

.secao-tecnica h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.secao-tecnica h3 {
    font-size: 1.8rem;
    color: #A0522D;
    margin-top: 2.5rem;
}

.sub-secao {
    margin-top: 40px;
    padding: 25px;
    border-left: 3px solid #EAE0D5;
    background-color: #faf8f5;
}

.sub-secao h4 {
    font-size: 1.6rem;
    color: #BF8756;
    margin-top: 0;
}

.sub-secao h5 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-top: 1.5rem;
}

.bloco-lista {
    margin-top: 1rem;
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    margin-bottom: 0.5rem;
}

ul li::before {
    content: "•";
    color: #8B4513;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* RODAPÉ */
.rodape {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* TEXTO DE INSPIRAÇÃO */
.texto-inspiracao {
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
    padding: 0 20px;
}

.texto-inspiracao a {
    color: #999;
    text-decoration: underline;
    transition: color 0.3s;
}

.texto-inspiracao a:hover {
    color: #8B4513;
}

/* ESTILOS DO FEEDBACK E MODAL */
.link-discreto {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.link-discreto:hover {
    color: #8B4513;
}

.modal-fundo {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-fundo.visivel {
    display: flex;
}

.modal-conteudo {
    background-color: #FDFDFD;
    padding: 30px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: aparecer 0.3s ease-out;
}

@keyframes aparecer {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.fechar-modal {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.fechar-modal:hover {
    color: #333;
}

.modal-conteudo h2 {
    margin-top: 0;
}

.modal-conteudo form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.modal-conteudo form input,
.modal-conteudo form select,
.modal-conteudo form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.botao-enviar {
    background-color: #8B4513;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    font-size: 1rem;
}

.botao-enviar:hover {
    opacity: 0.9;
}


/* PORTABILIDADE MOBILE (RESPONSIVO) */
@media (max-width: 768px) {
    .cabecalho-principal h1 {
        font-size: 2.5rem;
    }

    .cabecalho-principal p {
        font-size: 1.1rem;
    }

    .indicador-rolagem {
        animation: none;
    }

    .secao-tecnica h2 {
        font-size: 2rem;
    }
    
    .secao-tecnica h3 {
        font-size: 1.5rem;
    }

    .secao-tecnica {
        padding: 60px 25px;
    }

    .sub-secao {
        padding: 20px 15px;
        border-left: none;
    }
}