/* CSS Melhorias para Mobile - Stimus Benefícios */

/* Reset e configurações básicas */
* {
    box-sizing: border-box;
}

/* Configurações gerais para mobile */
@media screen and (max-width: 768px) {
    
    /* Header e Navegação */
    .header {
        padding: 10px 15px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px; /* Altura ajustada para mobile */
        background-color: white; /* Adicionado para garantir que o header não seja transparente */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra para destacar o header */
        z-index: 1000; /* Garante que o header fique acima de outros elementos */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo img {
        max-height: 40px;
        width: auto;
    }
    .nav-logo{
		width: 170px;
	}
    /* Menu de navegação responsivo */
    .nav-menu {
        display: none;
        position: fixed; /* Alterado para fixed */
        top: 80px; /* Começa abaixo do header de 80px */
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999; /* Um pouco abaixo do header */
        flex-direction: column;
        padding: 20px 0;
        overflow-y: auto; /* Adicionado para permitir scroll se o menu for muito longo */
        height: calc(100% - 80px); /* Ocupa o restante da tela */
    }
    
    .nav-menu.active {
        display: flex;
		height: calc(100vh + 100px);
    }
    
    .nav-menu a {
        padding: 15px 20px;
        text-decoration: none;
        color: #102640;
        border-bottom: 1px solid #eee;
        font-size: 16px;
        transition: background-color 0.3s;
    }
    
    .nav-menu a:hover {
        background-color: #f5f5f5;
    }
    
    /* Botão hambúrguer */
    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 50px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Hero Section */
    .hero-section {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
       
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    /* Botões CTA */
    .cta-button {
        display: inline-block;
        padding: 15px 25px;
        background-color: #ff6b35;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        font-size: 16px;
        margin: 10px 5px;
        transition: background-color 0.3s;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .cta-button:hover {
        background-color: #e55a2b;
    }
    
    /* Seções de conteúdo */
    .content-section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
        text-align: center;
        color: #102640;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
        color: #102640;
    }
    
    /* Cards de benefícios */
    .benefits-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    
    .benefit-card {
        background: white;
        padding: 25px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        text-align: left;
    }
    
    .benefit-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #102640;
    }
    
    .benefit-description {
        font-size: 14px;
        line-height: 1.5;
        color: #102640;
    }
    
    /* Features em destaque */
    .feature-highlight {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .feature-text {
        flex: 1;
    }
    
    .feature-text strong {
        display: block;
        font-size: 16px;
        margin-bottom: 5px;
        color: #102640;
    }
    
    .feature-text span {
        font-size: 14px;
        color: #102640;
        line-height: 1.4;
    }
    
    /* Slider/Carousel */
    .slider-container {
        position: relative;
        overflow: hidden;
        margin: 20px 0;
    }
    
    .slider-controls {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(0,0,0,0.3);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .slider-dot.active {
        background: #ff6b35;
    }
    
    /* Footer */
    .footer {
        padding: 40px 20px;
        background: #102640;
        color: white;
        text-align: center;
    }
    
    /* Utilitários */
    .text-center {
        text-align: center;
    }
    
    .mb-20 {
        margin-bottom: 20px;
    }
    
    .mb-30 {
        margin-bottom: 30px;
    }
    
    /* Melhorias de acessibilidade */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    /* Animações suaves */
    .fade-in {
        animation: fadeIn 0.6s ease-in;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Configurações para telas muito pequenas (até 375px) */
@media screen and (max-width: 375px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .content-section {
        padding: 30px 15px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
}

/* Configurações para landscape em mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
}

