/* CORES DA PMDF */
:root {
    --pmdf-blue: #003087;
    --pmdf-dark-blue: #001f5c;
    --pmdf-gold: #D4AF37;
    --pmdf-light-gold: #E5C158;
    --text-dark: #1a1a2e;
    --text-gray: #555;
    --accent-red: #ff6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* COUNTDOWN */
.countdown-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--pmdf-blue) 0%, var(--pmdf-dark-blue) 100%);
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.3);
}

.countdown-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-text {
    color: var(--pmdf-gold);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    border: 2px solid var(--pmdf-gold);
}

.countdown-item span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--pmdf-gold);
    line-height: 1;
}

.countdown-item p {
    font-size: 11px;
    color: white;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HERO */
.hero {
    position: relative;
    padding: 20px 20px 0 20px;
    background: linear-gradient(135deg, rgba(0, 31, 92, 0.7) 0%, rgba(0, 48, 135, 0.7) 100%),
                url('Comandante-revelou-que-novos-editais-estao-previstos-para-o-concurso-PMDF.webp') center/cover no-repeat;
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-end;
}

.hero-left {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
}

.logo-title-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.pmdf-logo-small {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
}

.title-vertical h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--pmdf-gold);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-vertical h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-small {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: white;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: center;
}

.hero-subtitle-small strong {
    color: var(--pmdf-gold);
}

.event-info-small {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 700;
    color: var(--pmdf-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.hero-mentor-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

.hero-left .form-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#leadForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#leadForm input {
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

#leadForm input:focus {
    outline: none;
    border-color: var(--pmdf-blue);
    box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.1);
}

.cta-button {
    background: var(--pmdf-gold);
    color: var(--pmdf-blue);
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: var(--pmdf-light-gold);
}

.privacy-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* SITUAÇÃO DO CONCURSO */
.situation {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.situation h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--pmdf-blue);
    text-align: center;
    margin-bottom: 40px;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--pmdf-gold);
}

.info-box p {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: var(--pmdf-blue);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.highlight-box p {
    color: white;
    margin: 0;
}

.highlight-box strong {
    color: var(--pmdf-gold);
}

/* O QUE VOCÊ TERÁ ACESSO */
.access {
    padding: 80px 20px;
    background: white;
}

.access h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--pmdf-blue);
    text-align: center;
    margin-bottom: 50px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.access-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--pmdf-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.access-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.access-item h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* MENTOR */
.mentor {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mentor h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--pmdf-blue);
    text-align: center;
    margin-bottom: 50px;
}

.mentor-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.mentor-card:last-child {
    margin-bottom: 0;
}

.mentor-photo {
    width: 250px;
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 48, 135, 0.2);
}

.mentor-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.mentor-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--pmdf-blue);
    margin-bottom: 10px;
}

.mentor-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--pmdf-gold);
    margin-bottom: 20px;
}

.mentor-bio {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA FINAL */
.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--pmdf-blue) 0%, var(--pmdf-dark-blue) 100%);
    text-align: center;
    color: white;
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 20px;
}

.cta-final p {
    font-family: 'Lora', serif;
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--pmdf-gold);
}

/* FOOTER */
footer {
    background: var(--pmdf-dark-blue);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-right {
        justify-content: center;
        order: 2;
    }

    .hero-left {
        order: 1;
    }

    .hero-mentor-image {
        max-width: 400px;
    }

    .hero-left {
        padding: 10px;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .countdown-wrapper {
        gap: 15px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 6px 10px;
    }

    .countdown-item span {
        font-size: 22px;
    }

    .pmdf-logo-small {
        width: 60px;
    }

    .hero-mentor-image {
        max-width: 300px;
    }

    .hero-left .form-container {
        padding: 20px;
    }

    .info-box {
        padding: 30px 20px;
    }

    .mentor-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mentor-photo {
        margin: 0 auto;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }
}
