* { margin: 0; padding: 0; box-sizing: border-box; }
:root { 
    --brand-main: #FF8C00; /* Laranja vibrante/Pet */
    --brand-dark: #2D3748; 
    --brand-light: #F7FAFC; 
    --brand-text: #4A5568;
}
body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; color: var(--brand-text); background-color: var(--brand-light); line-height: 1.6; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

header { background-color: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-size: 24px; font-weight: bold; color: var(--brand-main); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--brand-dark); font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--brand-main); }

.hero { background: var(--brand-dark); color: white; padding: 80px 0; text-align: center; border-bottom: 5px solid var(--brand-main); }
.hero h1 { font-size: 40px; margin-bottom: 15px; }

.content-section { padding: 60px 0; background: white; }
.content-card { background: var(--brand-light); border-radius: 12px; padding: 40px; border-left: 5px solid var(--brand-main); }
.content-card h2 { color: var(--brand-dark); margin-bottom: 20px; font-size: 28px; }

/* .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background: #ddd; border-radius: 8px; margin-top: 30px; display: flex; align-items: center; justify-content: center; }
.video-placeholder-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #666; font-weight: bold; } */

.apresentacao-video {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 16px;
}

.apresentacao-video video {
    display: block;
    width: 100%;
    max-width: 420px;   /* tamanho ideal para vídeo vertical */
    max-height: 80vh;   /* nunca passa da altura da tela */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
}

.step { background: white; border: 1px solid #e2e8f0; padding: 20px; margin-bottom: 20px; border-radius: 8px; display: flex; gap: 20px; align-items: flex-start; }
.step-number { background: var(--brand-main); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }

footer { background: var(--brand-dark); color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
