:root {
    --primary-color: #4a6cf7;
    --secondary-color: #6a7c92;
    --dark-color: #1d2a4d;
    --light-color: #f5f8ff;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 60px; /* Restaurar o padding padrão */
}

.hero-section {
    padding: 120px 0;
    background-color: var(--light-color);
    background-image: url('/static/images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

/* Adicionar overlay escuro para melhorar legibilidade do texto */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* overlay semi-transparente */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2; /* Coloca o conteúdo acima do overlay */
}

/* Se quiser texto mais claro para melhor contraste */
.hero-section h1, 
.hero-section p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.btn-primary {
    background-color: #4a6cf7;
    border-color: #4a6cf7;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #3a5ce5;
    border-color: #3a5ce5;
}

.feature-card, .benefit-card {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card:hover, .benefit-card:hover {
    transform: translateY(-10px);
}

.pricing-card {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
}

.pricing-header {
    background-color: #4a6cf7 !important;
    padding: 1.25rem 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 1.4rem;
    font-weight: 500;
}

.pricing-body {
    padding: 1.5rem;
}

.pricing-body li {
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

.recursos-section, .suporte-section {
    margin-top: 1rem;
}

.text-muted {
    color: #9ca3af !important;
}

.mt-auto {
    margin-top: auto !important;
}

.faq-section .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
}

.faq-section .card-header {
    background-color: var(--light-color);
    border-radius: 10px !important;
    padding: 15px 20px;
}

.contact-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.testimonial-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a6cf7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.py-5.bg-primary + footer,
section.py-5.bg-primary + footer {
    margin-top: 0; /* Remove o espaço entre a seção CTA e o footer */
}

/* Ajustando marginBottom da última seção */
section.py-5.bg-primary {
    margin-bottom: 0;
}

/* Adicione esses estilos no final do arquivo CSS */
.team-img-container {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 25px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: white;
    padding-top: 10px;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Adicione estes estilos se necessário */
.pricing-card .pricing-price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-body ul {
    margin-bottom: auto;
}

.pricing-body .mt-auto {
    margin-top: auto !important;
}

/* Remover o padding-top apenas no portal */
#portal-body {
    padding-top: 0 !important;
}

/* Adicione estes estilos ao final do arquivo */
.card-img-top {
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Estilo para o modal de imagem */
.modal-body {
    padding: 0;
    background-color: #f8f9fa;
}

#modalImage {
    max-height: 80vh;
    object-fit: contain;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1031; /* Maior que o z-index da navbar (1030) */
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.language-selector a {
    margin: 0 5px;
    padding: 3px 8px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-selector a:hover {
    background-color: #eef2ff;
    color: #4a6cf7;
}

.language-selector a.active {
    background-color: #4a6cf7;
    color: white;
}

/* Ajustar o padding-top do body para acomodar o seletor */
@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .language-selector a {
        padding: 2px 6px;
        font-size: 12px;
    }
} 