/* ========================================
   PÁGINA SEJA UM FRANQUEADO - 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 ========== */
.hero-franchise {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=1920') center/cover;
    opacity: 0.15;
}

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

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

.hero-title {
    font-size: 4.5rem;
    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.6rem;
    color: #F4F4F4;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, #C9A84E 0%, #FFD700 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    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);
}

/* ========== NÚMEROS DA MARCA ========== */
.brand-stats {
    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;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 2px solid #C9A84E;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }

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

.stat-number {
    font-size: 3rem;
    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: 1rem;
    color: #CCCCCC;
    font-weight: 500;
}

/* ========== POR QUE INVESTIR ========== */
.why-invest {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

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

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    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:nth-child(5) { animation-delay: 0.5s; }

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

.benefit-icon {
    font-size: 3.5rem;
    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;
}

/* ========== MODELOS DE FRANQUIA ========== */
.franchise-models {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.model-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 3px solid #C9A84E;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.model-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;
}

.model-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(201, 168, 78, 0.5);
}

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

.model-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #C9A84E 0%, #FFD700 100%);
    color: #000000;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-name {
    font-size: 2.5rem;
    color: #C9A84E;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.model-price {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 600;
}

.model-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.model-features li {
    padding: 0.8rem 0;
    color: #CCCCCC;
    border-bottom: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.model-features li::before {
    content: '✓';
    color: #C9A84E;
    font-weight: bold;
    font-size: 1.2rem;
}

.model-cta {
    display: block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C9A84E 0%, #FFD700 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.model-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 168, 78, 0.5);
}

/* ========== SATISFAÇÃO ========== */
.satisfaction-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.satisfaction-badge {
    display: inline-block;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 50%;
    border: 5px solid #C9A84E;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(201, 168, 78, 0.4);
}

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

.satisfaction-text {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-top: 1rem;
}

/* ========== 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;
}

.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;
}

/* ========== 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.9);
    }
    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;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .satisfaction-number {
        font-size: 3.5rem;
    }
}

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

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