﻿/* style.css */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    height: auto;
}
/* SeÃ§Ã£o: Estilos Globais e Reset */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #dfe6e9;
}

.top-bar-heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.top-bar-title {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f3a56;
}

.top-bar-meta {
    font-size: 0.83rem;
    color: #5d6d7e;
}

.top-bar-link {
    color: #1f3a56;
    text-decoration: none;
    font-weight: bold;
}

.top-bar-link:hover {
    text-decoration: underline;
}

/* SeÃ§Ã£o: TÃ­tulos e ParÃ¡grafos */
h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

h1 {
    font-size: 1.65em;
    line-height: 1.2;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    font-size: 1.3em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
}

p {
    margin-bottom: 1em;
    font-size: 0.95em;
}

/* SeÃ§Ã£o: Call to Action (CTA) */
.cta-button {
    display: block;
    width: fit-content;
    margin: 25px auto;
    padding: 15px 30px;
    background-color: #e74c3c; /* Cor de destaque para CTA */
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* SeÃ§Ã£o: Destaques e Advertorial */
.advertorial-section {
    margin-bottom: 10px; /* Reduzido de 20px para 10px */
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #3498db; /* Destaque lateral */
}

.advertorial-section p {
    font-size: 1.1em;
}

.video-thumb {
    position: relative;
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 18px auto 22px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.video-thumb-cta-link {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 8px auto 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(231, 76, 60, 0.95);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.video-thumb-cta-link:hover {
    background: #e74c3c;
}

.video-thumb-cta-link + .video-thumb {
    margin-top: 10px;
}

.video-thumb-cta-link {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
    transition: background 0.25s ease;
}

.section-thumb {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    margin: 0;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.video-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.92);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.video-thumb-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -8px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 24px solid #fff;
}

.video-thumb:hover .section-thumb {
    transform: scale(1.04);
}

.video-thumb:hover::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
}

.video-thumb:hover .video-thumb-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #e74c3c;
}

.warning-message {
    color: #e74c3c;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.article {
    margin-bottom: 10px; /* Reduzido de 20px para 10px */
}

.faq-section {
    padding: 24px;
    background-color: #f9f9f9;
    border-left: 5px solid #3498db;
}

.faq-item {
    border-top: 1px solid #dfe6e9;
}

.faq-item:last-child {
    border-bottom: 1px solid #dfe6e9;
}

.faq-q {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    padding: 18px 0;
    padding-right: 44px;
    border: 0;
    background: transparent;
    color: #2c3e50;
    font-size: 1.08em;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    flex-wrap: wrap;
    white-space: normal;
    word-break: break-word;
}

.faq-q::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #c0392b;
    border-bottom: 2px solid #c0392b;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-q[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(-135deg);
}.faq-q[aria-expanded="true"] .faq-a {
    padding-bottom: 18px;
}

.faq-q[aria-expanded="true"] + .faq-a {
    display: block;
}

.faq-a-inner {
    font-size: 1.05em;
}

.faq-link {
    color: #c0392b;
    font-weight: 700;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

/* SeÃ§Ã£o: Depoimentos */
.testimonials-section {
    margin: 20px 0; /* Reduzido de 30px para 20px */
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.testimonials-section h2 {
    font-size: 1.5em;
    color: #1f3a56;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #e74c3c;
}

.testimonial-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.testimonial-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: #1f3a56;
}

.testimonial-info {
    margin: 0;
    font-size: 0.9em;
    color: #999;
    font-weight: 500;
}

.testimonial-text {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* SeÃ§Ã£o: RodapÃ© */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
    border-top: 1px solid #eee;
}

.footer-links {
    margin-top: 12px;
}

.footer-disclaimer {
    margin-top: 14px;
}

.footer-links a {
    color: #1f3a56;
    text-decoration: none;
    font-weight: 700;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* SeÃ§Ã£o: Responsividade BÃ¡sica */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    .top-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .top-bar-heading {
        flex: 1;
        min-width: 0;
    }

    .top-bar-title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-bar-link {
        white-space: nowrap;
    }.advertorial-section {
        padding: 16px;
    }

    .testimonials-section {
        padding: 18px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 18px;
    }

    .faq-q {
        font-size: 1em;
    }

    h1 {
        font-size: 1.55em;
    }

    h2 {
        font-size: 1.2em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
        width: 100%;
        box-sizing: border-box;
    }
}
@media (max-width: 480px) {
    .top-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .top-bar-heading {
        flex: 1;
        min-width: 0;
    }
    .top-bar-title {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .top-bar-link {
        white-space: nowrap;
    }

    .container {
        margin: 0;
        padding: 12px;
    }

    .advertorial-section {
        padding: 14px;
    }

    .testimonials-section {
        padding: 14px;
    }

    h1 {
        font-size: 1.35em;
    }

    h2 {
        font-size: 1.12em;
    }

    p {
        font-size: 0.95em;
    }

    ul {
        padding-left: 18px;
    }

    .faq-q {
        gap: 10px;
        padding: 14px 0;
    }

    .video-thumb-play {
        width: 64px;
        height: 64px;
    }

    .video-thumb-play::before {
        margin-top: -12px;
        margin-left: -7px;
        border-top-width: 12px;
        border-bottom-width: 12px;
        border-left-width: 20px;
    }

    .cta-button {
        padding: 12px 16px;
    }
}


