/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; text-align: center; }

/* Global Headlines (Always Black) */
.black-headline { color: #000000; text-transform: uppercase; margin-bottom: 20px; font-weight: 900; }
h1.black-headline { font-size: 32px; line-height: 1.2; }
h2.black-headline { font-size: 28px; }

/* Layout Blocks */
.section-white { background: #ffffff; }
.section-grey { background: #f8f9fa; }
.section-desc { color: #6c757d; font-size: 18px; margin-top: -10px; margin-bottom: 30px; }

/* Top Bar & Header */
.top-bar { background: #990404; color: #fff; padding: 10px; text-align: center; font-weight: bold; text-transform: uppercase; font-size: 14px; }
header { padding: 20px 0; border-bottom: 1px solid #eee; }
.logo { font-size: 24px; font-weight: 800; color: #000; }

/* Hero Section */
.pre-headline { font-weight: bold; margin-bottom: 15px; color: #444; }
.sub-headline { text-transform: capitalize; color: #555; font-size: 20px; font-weight: 400; margin-bottom: 30px; }
.video-container { position: relative; background: #000; border: 6px solid #f1f1f1; border-radius: 4px; margin: 20px 0; cursor: pointer; }
.video-container img { 
    width: 100%;       /* Força a imagem a ocupar 100% da largura do pai */
    height: auto;      /* Mantém a proporção correta para não achatar a imagem */
    display: block;    /* Remove espaços vazios abaixo da imagem */
}
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: #ff0100; border-radius: 50%; z-index: 2; }
.play-overlay::after { content: ''; position: absolute; top: 25px; left: 32px; border-style: solid; border-width: 15px 0 15px 25px; border-color: transparent transparent transparent #fff; }

/* CTA Button */
.cta-main { display: inline-block; background: #990404; color: #fff; padding: 20px 40px; font-weight: 900; text-decoration: none; border-radius: 5px; font-size: 18px; margin-top: 20px; box-shadow: 0 4px 15px rgba(204,0,0,0.3); transition: 0.3s; }
.cta-main:hover { background: #990404; transform: scale(1.02); }

/* Check List */
.check-list { text-align: left; max-width: 700px; margin: 0 auto; list-style: none; }
.check-list li { padding: 12px 0 12px 40px; border-bottom: 1px solid #f1f1f1; position: relative; }
.check-list li::before { content: '✔'; position: absolute; left: 0; color: #990404; font-weight: bold; font-size: 20px; }

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 30px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; margin: 30px 0; }

/* Section 03 Cards (Anexo 1) */
.card { background: #fff; padding: 30px 20px; border-radius: 10px; border: 1px solid #eee; position: relative; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.card i { font-size: 30px; margin-bottom: 15px; display: block; }
.card-red { border-top: 5px solid #ffcccc; } .card-red i { color: #990404; }
.card-orange { border-top: 5px solid #ffe5b4; } .card-orange i { color: #ff8c00; }
.card-pink { border-top: 5px solid #ffd1dc; } .card-pink i { color: #ff1493; }
.danger-text { color: #990404; font-weight: bold; display: block; margin-top: 15px; }
.warning-text { color: #ff8c00; font-weight: bold; display: block; margin-top: 15px; }
.pink-text { color: #ff1493; font-weight: bold; display: block; margin-top: 15px; }

/* Section 04 Stage Cards (Anexo 2) */
.stage-card { background: #fff; padding: 25px; border-radius: 8px; text-align: left; border: 1px solid #eee; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.stage-header { font-size: 14px; font-weight: bold; color: #888; margin-bottom: 10px; display: flex; align-items: center; }
.dot { height: 10px; width: 10px; border-radius: 50%; display: inline-block; margin-right: 8px; }
.dot.red { background: #990404; } .dot.green { background: #28a745; }
.green-time { color: #28a745; font-weight: bold; font-size: 14px; margin: 5px 0; }

/* Section 05 Stats (Anexo 3) */
.stat-card { background: #eef7ff; border: 1px solid #cfe2ff; padding: 30px; border-radius: 8px; }
.stat-num { font-size: 40px; font-weight: 900; color: #fd650d; margin-bottom: 10px; }

/* Other Blocks */
.green-box { background: #e8f5e9; border: 1px solid #c8e6c9; padding: 30px; border-radius: 8px; margin-top: 30px; }
.testi-card { text-align: left; padding: 20px; border-left: 4px solid #990404; background: #fff; margin-bottom: 15px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.stars { color: #ffc107; margin-bottom: 10px; }
details { text-align: left; background: #fff; border: 1px solid #eee; margin-bottom: 10px; border-radius: 5px; }
summary { padding: 15px; font-weight: bold; cursor: pointer; }
details p { padding: 15px; border-top: 1px solid #eee; }
footer { background: #1a1a1a; color: #777; font-size: 12px; padding: 40px 0; }

/* Mobile Optimization */
@media (max-width: 600px) {
    .grid-2 { grid-template-columns: 1fr; }
    h1.black-headline { font-size: 26px; }
    .cta-main { width: 100%; padding: 20px 10px; }
}