/* Landing Page Styles - Otimizado para Conversão */

/* Hero Section with Form */
.landing-hero {
    background: linear-gradient(135deg, #0E4170 0%, #3A7BB8 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.05"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-badge i {
    color: #28a745;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
}

.hero-subtitle strong {
    color: #28a745;
    font-weight: 700;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.benefit-item i {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Form Card */
.hero-form-container {
    position: sticky;
    top: 100px;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #28a745, #0E4170);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #0E4170;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.landing-form {
    color: #333;
}

.landing-form .form-group {
    margin-bottom: 1.25rem;
}

.landing-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0E4170;
    font-size: 0.9rem;
}

.landing-form input,
.landing-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.landing-form input:focus,
.landing-form select:focus {
    outline: none;
    border-color: #0E4170;
    box-shadow: 0 0 0 3px rgba(14, 65, 112, 0.1);
}

.landing-form input::placeholder {
    color: #999;
}

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

.btn-submit-landing {
    width: 100%;
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-submit-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

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

.form-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-guarantee i {
    color: #28a745;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #0E4170;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: #3A7BB8;
    transform: translateY(-2px);
}

.header-phone i {
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0E4170, #3A7BB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #0E4170;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card-landing {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card-landing:hover {
    border-color: #0E4170;
    box-shadow: 0 15px 40px rgba(14, 65, 112, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0E4170, #3A7BB8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card-landing h3 {
    font-size: 1.5rem;
    color: #0E4170;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-landing p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-list i {
    color: #28a745;
    font-size: 0.9rem;
}

/* Process Section */
.process-section-landing {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-landing {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number-landing {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step-landing h3 {
    font-size: 1.2rem;
    color: #0E4170;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step-landing p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section-landing {
    padding: 80px 0;
    background: linear-gradient(135deg, #0E4170 0%, #3A7BB8 100%);
    color: white;
    text-align: center;
}

.cta-content-landing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-landing p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons-landing {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #28a745;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-cta-primary:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-secondary:hover {
    background: white;
    color: #0E4170;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section-landing {
    padding: 80px 0;
    background: white;
}

.faq-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item-landing {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #0E4170;
}

.faq-item-landing h3 {
    font-size: 1.2rem;
    color: #0E4170;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item-landing p {
    color: #666;
    line-height: 1.7;
}

/* Footer Landing */
.footer-landing {
    background: #0E4170;
    color: white;
    padding: 60px 0 20px;
}

.footer-content-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-landing {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section-landing h4 {
    color: #28a745;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section-landing p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-contact-landing p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-landing i {
    color: #28a745;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom-landing {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-form-container {
        position: static;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid-landing {
        grid-template-columns: 1fr;
    }
    
    .cta-content-landing h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-landing {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .header-phone span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}


/* ============================================================ */
/* Landing pura — landing-medicina-ocupacional.html              */
/* ============================================================ */

/* HEADER mínimo (sem nav) */
.landing-header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.landing-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.landing-phone {
    color: #0E4170;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.98rem;
    transition: color 0.2s ease;
}

.landing-phone:hover {
    color: #28a745;
}

.landing-phone i {
    color: #28a745;
}

.landing-whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.landing-whatsapp-btn:hover {
    background: #1ebd5b;
    transform: translateY(-1px);
}

/* SERVIÇOS overview (cards horizontais) */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.service-overview-card {
    background: white;
    border-radius: 12px;
    padding: 1.6rem 1.2rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 3px solid transparent;
}

.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(14,65,112,0.12);
    border-top-color: #28a745;
}

.service-overview-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #0E4170 0%, #3A7BB8 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.service-overview-card h3 {
    color: #0E4170;
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}

.service-overview-card p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* DEPOIMENTOS (reusa .depoimento-card de style.css) */
.depoimentos-landing {
    padding: 70px 0;
    background: #f8f9fa;
}

.depoimentos-landing .section-title {
    text-align: center;
    color: #0E4170;
    margin-bottom: 0.5rem;
}

.depoimentos-landing .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

.depoimentos-landing .depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* CTA FINAL (full-width azul) */
.cta-final-landing {
    background: linear-gradient(135deg, #0E4170 0%, #3A7BB8 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-final-landing h2 {
    color: white;
    font-size: 2.2rem;
    margin: 0 0 0.8rem;
}

.cta-final-landing p {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 2rem;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #28a745;
    color: white;
    padding: 1.1rem 2.6rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-cta-final:hover {
    background: #218838;
    transform: translateY(-2px);
    gap: 1rem;
}

/* FOOTER mínimo da landing */
.landing-footer {
    background: #0E4170;
    color: white;
    padding: 50px 0 20px;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.landing-footer .footer-logo {
    height: 50px;
    margin-bottom: 0.8rem;
}

.landing-footer p {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

.landing-footer h4 {
    color: white;
    font-size: 1.05rem;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #28a745;
    display: inline-block;
}

.landing-footer a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing-footer a:hover {
    color: #28d165;
}

.landing-footer .social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.landing-footer .social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.landing-footer .social-link:hover {
    background: #28a745;
    transform: translateY(-2px);
}

.landing-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.2rem;
    text-align: center;
}

.landing-footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .landing-header-actions {
        gap: 0.5rem;
    }
    .landing-phone span {
        display: none;
    }
    .landing-whatsapp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    .landing-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .cta-final-landing h2 {
        font-size: 1.6rem;
    }
    .btn-cta-final {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}
