/**
 * Seguradora ALM - Site Pages CSS
 * Estilos para páginas públicas (home, seguros, etc.)
 */

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

/* Hero Home */
.hero-home {
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,245.3C960,224,1056,160,1152,149.3C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-home h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-home p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Hero Seguros */
.hero-seguros {
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    padding: 80px 0;
    color: white;
}

.hero-seguros h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-seguros p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-hero {
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: white;
    color: #0b5185;
    border: none;
}

.btn-hero-primary:hover {
    background: #f8f9fa;
    color: #007e7a;
    transform: scale(1.05);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background: white;
    color: #0b5185;
}

.btn-cotar {
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cotar:hover {
    background: linear-gradient(135deg, #007e7a 0%, #0b5185 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(11, 81, 133, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b5185;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-section p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-list .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.feature-list h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.feature-list p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.benefits-section {
    background: #f8fafc;
    padding: 60px 0;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.75rem;
}

.benefit-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   PLANOS SECTION (Home Preview)
   ========================================================================== */

.planos-section {
    padding: 80px 0;
}

.planos-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* Mini Cards (Home) */
.plano-mini-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.plano-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.plano-mini-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.plano-mini-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.plano-mini-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

/* ==========================================================================
   PLANO CARDS (Seguros Page)
   ========================================================================== */

.plano-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.plano-card-header {
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.plano-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 20px solid #007e7a;
}

.plano-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.5rem;
    color: white;
}

.plano-card-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.plano-card-body {
    padding: 35px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plano-descricao {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.plano-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.plano-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: #666;
}

.plano-info-item i {
    color: #0b5185;
    font-size: 1rem;
}

.plano-card-footer {
    padding: 20px 25px 25px;
    text-align: center;
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */

.cta-home {
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-home h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-home p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section {
    background: linear-gradient(135deg, #0b5185 0%, #007e7a 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    /* Hero Home */
    .hero-home {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-home h1 {
        font-size: 2rem;
    }
    
    .hero-home p {
        font-size: 1rem;
    }
    
    /* Hero Seguros */
    .hero-seguros {
        padding: 50px 0;
    }
    
    .hero-seguros h1 {
        font-size: 1.75rem;
    }
    
    /* Stats */
    .stat-box {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Plano Cards */
    .plano-card-header {
        padding: 25px 20px;
    }
    
    .plano-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    /* Sections */
    .about-section,
    .planos-section,
    .cta-home {
        padding: 60px 0;
    }
    
    .benefits-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-home h1 {
        font-size: 1.75rem;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
    }
    
    .plano-mini-card {
        padding: 20px 15px;
    }
    
    .plano-mini-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
