/* ========================================
   PAGES MODERN STYLES
   Estilos para páginas internas
   ======================================== */

.page-header-simple {
    padding: 100px 0 60px;
    background: var(--dark-alt);
    border-bottom: 1px solid rgba(110, 190, 68, 0.1);
}

.page-header-simple .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(110, 190, 68, 0.1);
    border: 1px solid rgba(110, 190, 68, 0.2);
    border-radius: 10px;
    color: var(--green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(110, 190, 68, 0.2);
    border-color: var(--green);
    transform: translateX(-4px);
}

.back-btn svg {
    width: 18px;
    height: 18px;
}

.page-header-logo img {
    height: 50px;
}

/* Page Title Section - HERO STYLE */
.page-title-section {
    position: relative;
    padding: 140px 0 60px; /* Aumentado padding-top para compensar header fixo */
    text-align: center;
    background: linear-gradient(135deg, rgba(110, 190, 68, 0.03) 0%, rgba(10, 10, 10, 1) 100%);
    border-bottom: 2px solid rgba(110, 190, 68, 0.1);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(110, 190, 68, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 190, 68, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title-section .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out;
}

.page-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Title Variants - Cada página tem seu estilo */
.page-title-section.sobre-header {
    background: linear-gradient(135deg, rgba(110, 190, 68, 0.05) 0%, rgba(10, 10, 10, 1) 50%, rgba(110, 190, 68, 0.03) 100%);
}

.page-title-section.servicos-header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(110, 190, 68, 0.08) 100%);
}

.page-title-section.mensalista-header {
    background: linear-gradient(45deg, rgba(110, 190, 68, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
}

.page-title-section.sinistro-header {
    background: linear-gradient(225deg, rgba(110, 190, 68, 0.04) 0%, rgba(10, 10, 10, 1) 100%);
}

.page-title-section.convenios-header {
    background: radial-gradient(circle at top right, rgba(110, 190, 68, 0.06) 0%, rgba(10, 10, 10, 1) 70%);
}

.page-title-section.negocios-header {
    background: radial-gradient(circle at top left, rgba(110, 190, 68, 0.08) 0%, rgba(10, 10, 10, 1) 70%);
}

.page-title-section.governanca-header {
    background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(110, 190, 68, 0.05) 50%, rgba(10, 10, 10, 1) 100%);
}

.page-title-section.contato-header {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(110, 190, 68, 0.1) 100%);
}

.page-title-section.noticias-header {
    background: linear-gradient(180deg, rgba(110, 190, 68, 0.06) 0%, rgba(10, 10, 10, 1) 100%);
}

/* Content Sections */
.page-section {
    padding: 60px 0;
}

.page-section:nth-child(even) {
    background: var(--dark-alt);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--green);
}

.content-block h3 {
    font-size: 24px;
    color: var(--green);
    margin: 32px 0 16px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.content-block ul {
    list-style: none;
    margin-left: 0;
}

.content-block ul li {
    padding: 12px 0 12px 32px;
    color: var(--gray);
    position: relative;
    line-height: 1.7;
}

.content-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 18px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(110, 190, 68, 0.1);
    transition: all 0.4s ease;
}

.feature-box:hover {
    border-color: var(--green);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(110, 190, 68, 0.15);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    background: rgba(110, 190, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.feature-box-icon i {
    color: var(--green);
    font-size: 28px;
}

.feature-box h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* Forms */
.modern-form {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(110, 190, 68, 0.1);
    margin: 40px 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--green);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(110, 190, 68, 0.1);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
}

.form-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--green);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(110, 190, 68, 0.3);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(110, 190, 68, 0.4);
}

.form-btn:active {
    transform: translateY(0);
}

/* Info Alert */
.info-alert {
    padding: 20px 24px;
    background: rgba(110, 190, 68, 0.1);
    border-left: 4px solid var(--green);
    border-radius: 8px;
    margin: 30px 0;
}

.info-alert p {
    font-size: 15px;
    color: var(--gray-light);
    margin: 0;
}

.info-alert strong {
    color: var(--white);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(110, 190, 68, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--green);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--green), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--dark), 0 0 0 6px var(--green);
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--dark-card);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(110, 190, 68, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(110, 190, 68, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--green);
}

.cta-btn-secondary:hover {
    background: rgba(110, 190, 68, 0.1);
}

/* Footer Disabled Links */
.footer-disabled {
    color: rgba(153, 153, 153, 0.4);
    font-size: 14px;
    cursor: not-allowed;
}

/* Contact Oficial Card */
.contact-oficial-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(110, 190, 68, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-oficial-card:hover {
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(110, 190, 68, 0.15);
}

.contact-oficial-icon {
    width: 80px;
    height: 80px;
    background: rgba(110, 190, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-oficial-icon i {
    font-size: 36px;
    color: var(--green);
}

.contact-oficial-card h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-oficial-desc {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 24px;
}

.contact-oficial-email {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    padding: 16px 32px;
    background: rgba(110, 190, 68, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-oficial-email:hover {
    background: rgba(110, 190, 68, 0.2);
    transform: scale(1.02);
}

.contact-oficial-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

/* ========================================
   PÁGINA DE CONTATO - Layout Compacto
   ======================================== */

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contato-form-area .modern-form {
    margin: 0;
    padding: 32px;
}

.contato-form-area .modern-form h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 24px;
    text-align: center;
}

.contato-form-area .form-group {
    margin-bottom: 16px;
}

.contato-form-area .form-textarea {
    min-height: 100px;
}

.contato-form-area .form-btn {
    width: 100%;
    padding: 14px;
}

.contato-info-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(110, 190, 68, 0.1);
    transition: all 0.3s ease;
}

.contato-card:hover {
    border-color: var(--green);
    transform: translateX(4px);
}

.contato-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(110, 190, 68, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-card-icon i {
    font-size: 22px;
    color: var(--green);
}

.contato-card-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
}

.contato-card-icon.whatsapp i {
    color: #25D366;
}

.contato-card-content h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.contato-card-content a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.contato-card-content a:hover {
    color: var(--white);
}

.contato-card-content p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.contato-card.corporativo .contato-card-content p.empresa {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2px;
}

.contato-card.corporativo .contato-card-content p.cnpj {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title-section {
        padding: 120px 0 40px;
        min-height: 220px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 14px;
        padding: 0 16px;
    }

    .page-header-simple .container {
        flex-direction: column;
        gap: 20px;
    }

    .modern-form {
        padding: 30px 20px;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Contato mobile - empilha */
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contato-info-area {
        order: -1; /* Cards primeiro no mobile */
    }
}
