/* ========================================
   PÁGINA SEJA UM CREDENCIADO - DESIGN PREMIUM
   Cartão Black Saúde
   ======================================== */

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

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* ========== AJUSTES PARA HEADER DO APP ========== */
/* O header é gerenciado pelo header-footer.css do app */

/* ========== HERO SECTION COM PARALLAX ========== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920') center/cover;
    opacity: 0.2;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(201,168,78,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #C9A84E;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 4px 20px rgba(201, 168, 78, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #F4F4F4;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #C9A84E 0%, #FFD700 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(201, 168, 78, 0.4);
    cursor: pointer;
    border: none;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 78, 0.6);
}

/* ========== SEÇÃO BENEFÍCIOS ========== */
.benefits-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #C9A84E;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #999999;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #C9A84E;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,168,78,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 168, 78, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(201, 168, 78, 0.5));
}

.benefit-title {
    font-size: 1.5rem;
    color: #C9A84E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-description {
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 1rem;
}

/* ========== NÚMEROS DA REDE ========== */
.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(201,168,78,0.1) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #C9A84E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 500;
}

/* ========== FORMULÁRIO ========== */
.form-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 3px solid #C9A84E;
    box-shadow: 0 20px 60px rgba(201, 168, 78, 0.3);
}

.form-title {
    text-align: center;
    font-size: 2.5rem;
    color: #C9A84E;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #C9A84E;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #333333;
    background: #000000;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A84E;
    box-shadow: 0 0 15px rgba(201, 168, 78, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload-area {
    border: 2px dashed #C9A84E;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    background: #1a1a1a;
    border-color: #FFD700;
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-upload-text {
    color: #999999;
    font-size: 0.95rem;
}

.file-name-display {
    margin-top: 1rem;
    color: #C9A84E;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, #C9A84E 0%, #FFD700 100%);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 30px rgba(201, 168, 78, 0.4);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 78, 0.6);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 6rem 2rem;
    background: #000000;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border: 2px solid #333333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #C9A84E;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #C9A84E;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: #CCCCCC;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* ========== FOOTER ========== */
/* O footer é gerenciado pelo header-footer.css do app */

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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