/* === ESTILOS GERAIS === */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: inherit;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    animation: fadeIn 1s ease-in;
}
/* === SEÇÕES === */
.hero, .section, .contact {
    padding: 80px 30px;
    text-align: center;
    min-height: 400px;
}
.footer {
    padding: 40px 30px;
    text-align: center;
}
/* === WRAPPERS === */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1450px;
    margin: 0 auto;
    align-items: center;
}
.text-wrapper {
    width: 100%;
    text-align: center;
}
/* === TÍTULOS === */
.hero h1 {
    font-size: 3.8rem;
    margin: 25px 0;
    font-weight: 700;
}
.section h2 {
    font-size: 2.5rem;
    margin: 25px 0;
    font-weight: 600;
}
.quill-content {
    text-align: inherit;
    font-size: 1.3rem;
    line-height: 1.9;
    margin: 0;
}
.quill-content p {
    margin: 1.2em 0;
}
/* === IMAGENS E VÍDEOS === */
.hero-image,
.section-image {
    max-width: 1400px;
    width: 100%;
    margin: 30px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}
.hero-image:hover,
.section-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}
/* === VÍDEO RESPONSIVO (16:9) - ÚNICO BLOCO === */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin: 30px auto;
    max-width: 1400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}
/* === MOBILE: Ajustes visuais === */
@media (max-width: 768px) {
    .hero, .section, .contact, .footer {
        padding: 60px 20px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section h2 {
        font-size: 1.8rem;
    }
    .quill-content {
        font-size: 1rem;
    }
    .hero-image,
    .section-image,
    .video-wrapper {
        max-width: 100%;
        margin: 20px 0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .video-wrapper {
        padding-bottom: 56.25%;
        border-radius: 12px;
    }
    .hero-image:hover,
    .section-image:hover,
    .video-wrapper:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .index-toggle {
        width: 45px;
        height: 45px;
    }
    .index-toggle svg {
        width: 24px;
        height: 24px;
    }
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 480px) {
    .hero, .section, .contact, .footer {
        padding: 40px 15px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .section h2 {
        font-size: 1.5rem;
    }
    .quill-content {
        font-size: 0.95rem;
    }
    .container {
        padding: 0 15px;
    }
    .index-toggle {
        width: 40px;
        height: 40px;
    }
    .index-toggle svg {
        width: 20px;
        height: 20px;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}
/* === DESKTOP: 1400px === */
@media (min-width: 769px) {
    .content-wrapper,
    .hero-image,
    .section-image,
    .video-wrapper {
        max-width: 1400px;
    }
}
/* === FORMULÁRIO === */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 25px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 1.1rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: border 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #3B82F6;
    outline: none;
}
.form-group textarea {
    height: 160px;
    resize: vertical;
}
.honeypot-field {
    display: none;
}
.form-buttons {
    text-align: center;
    margin-top: 25px;
}
.form-buttons .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 10px auto;
    padding: 12px;
    border: none;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.form-buttons .btn:hover {
    opacity: 0.9;
}
.error, .success {
    margin: 15px 0;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}
.error { color: #e3342f; background: #fdf2f2; }
.success { color: #38c172; background: #f0fdf4; }

/* === CAIXA DE TEXTO PADRONIZADA === */
.textbox {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 20px auto;
    text-align: inherit;
    width: 100%;
}

.textbox .quill-content {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

/* Responsivo */
@media (max-width: 768px) {
    .textbox {
        padding: 16px;
        border-radius: 10px;
        max-width: 100%;
        margin: 16px auto;
    }
}

/* === LISTAS === */
.quill-content ul,
.quill-content ol {
    padding-left: 50px;
    margin: 1.2em 0;
}
.quill-content li {
    display: list-item;
    margin-bottom: 0.7em;
}
/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}
.whatsapp-float .tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 80px;
    right: 0;
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.whatsapp-float:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
/* === ANIMAÇÃO === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ========================================================= */
/* ESTILOS DOS LINKS DO RODAPÉ (POLÍTICA, TERMOS, ETC)      */
/* ========================================================= */

.footer-links {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center; /* já respeita o alinhamento que vem do PHP */
}

.footer-links a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.22s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links span {
    opacity: 0.6;
    margin: 0 8px;
}

/* Quando os links estão dentro da caixa de texto do rodapé */
.textbox .footer-links {
    margin-top: 16px;
    margin-bottom: 8px;
}