/* Estilos para páginas institucionais como Sobre Nós, Contato, etc. */

/* Cabeçalho de página */
.page-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Página Sobre Nós */
.about-section {
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.values-list li {
    display: flex;
    margin-bottom: 25px;
}

.value-icon {
    font-size: 24px;
    margin-right: 15px;
    background-color: #f8f9fa;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.value-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.value-content p {
    margin: 0;
    color: #555;
}

/* Seção da equipe */
.team-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.member-role {
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 600;
}

.member-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Métricas */
.metrics-section {
    margin-bottom: 60px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Depoimentos */
.testimonials-section {
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.testimonial-content {
    padding: 25px;
    position: relative;
}

.testimonial-content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
    position: relative;
    z-index: 1;
}

.testimonial-content:before {
    content: '"';
    font-size: 60px;
    color: #f1f1f1;
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* CTA de contato */
.contact-cta {
    background-color: #f8f9fa;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 50px;
}

.contact-cta h2 {
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 25px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Página de Contato */
.contact-section {
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.contact-info h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.contact-text p,
.contact-text a {
    margin: 0;
    color: #555;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Página de Termos e Privacidade */
.legal-section {
    margin-bottom: 60px;
}

.legal-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.legal-section h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-section p,
.legal-section li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.legal-section ol,
.legal-section ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

/* Página de Planos */
.pricing-section {
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-header {
    padding: 25px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.pricing-name {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.pricing-description {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.pricing-price {
    padding: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0 25px;
    margin: 0 0 25px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .included {
    color: #27ae60;
}

.pricing-features .excluded {
    color: #ccc;
    text-decoration: line-through;
}

.pricing-footer {
    padding: 0 25px 25px;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured .pricing-header {
    background-color: var(--primary-color);
    color: white;
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .metrics-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .team-grid,
    .metrics-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: 1;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
} 