* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, #f7ffef 0%, #e8f5e8 100%);
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(3, 105, 161, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(2, 141, 49, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-content {
    max-width: 600px;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title-blue {
    color: #089b42;
}

.description {
    margin-bottom: 40px;
}

.description p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

.description strong {
    color: #1e293b;
    font-weight: 700;
}

/* FORÇA BOTÕES LADO A LADO NO DESKTOP */
@media (min-width: 769px) {
    .hero-section .cta-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        margin-bottom: 25px !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .hero-section .cta-buttons .btn {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 250px !important;
        max-width: none !important;
        display: inline-flex !important;
    }
}

/* Botões padronizados - sem animações */
.btn {
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #028D31, #16a34a);
    color: white;
    box-shadow: 0 8px 25px rgba(2, 141, 49, 0.3);
}

.btn-call {
    background: #dac800;
    color: white;
    box-shadow: 0 8px 25px rgba(240, 221, 16, 0.3);
}

.btn svg {
    flex-shrink: 0;
}

/* Texto de confiança */
.trust-text {
    text-align: center;
    margin-top: 15px;
}

.trust-text span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image {
    width: 100%;
    max-width: 501px; /* Aumentado 30% de 385px */
    height: auto;
    position: relative;
    z-index: 2;
}

/* Elementos decorativos removidos */

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 25px 0;
    }
    
    .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .image-content {
        order: -1;
    }
    
    .text-content {
        order: 1;
        max-width: 100%;
    }
    
    .main-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .description {
        margin-bottom: 30px;
    }
    
    .description p {
        font-size: 16px;
    }
    
    .hero-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .hero-section .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
    
    .hero-section .cta-buttons .btn-call {
        max-width: 272px; /* 15% menor que 320px */
    }
    
    .hero-image {
        width: 364px;
        max-width: 364px;
        height: auto;
    }

    .trust-text {
        margin-top: 15px;
    }

    .status-indicator {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .decoration-1,
    .decoration-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 80px; /* Espaço para o footer fixo */
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 20px 0;
        background: linear-gradient(135deg, #f7ffef 0%, #e8f5e8 100%);
    }
    
    .content-wrapper {
        gap: 32px; /* 5% maior que 25px */
    }
    
    .main-title {
        font-size: 2.2rem;
        margin-bottom: 19px; /* 5% maior que 18px */
        gap: 5.25px; /* 5% maior que 5px */
    }
    
    .description {
        margin-bottom: 25px;
    }
    
    .description p {
        font-size: 19px; /* 2% maior que 18px */
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .hero-section .cta-buttons {
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .hero-section .cta-buttons .btn-call {
        max-width: 280px; /* 15% menor que 320px */
    }
    
    .hero-image {
        width: 291px;
        max-width: 291px;
        height: auto;
    }

    .trust-text {
        margin-top: 12px;
    }

    .trust-text span {
        font-size: 12px;
    }

    .status-indicator {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Segunda Dobra - Meu Maior Diferencial */
.diferencial-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.diferencial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(3, 105, 161, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(2, 141, 49, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.diferencial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Imagem com badge */
.diferencial-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
}

.diferencial-img {
    width: 100%;
    max-width: 575px;
    height: auto;
    border-radius: 24px;
}

/* Conteúdo */
.diferencial-content {
    max-width: 600px;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: #089b42;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(8, 155, 66, 0.1);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
}

.diferencial-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 25px;
}

.diferencial-description {
    margin-bottom: 40px;
}

.diferencial-description p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

.diferencial-description strong {
    color: #1e293b;
    font-weight: 700;
}

/* Grid de benefícios modernos */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.benefit-card {
    background: white;
    border: 1px solid rgba(3, 105, 161, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    display: none;
}

.benefit-icon-wrapper {
    flex-shrink: 0;
}

.benefit-icon-bg {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #089b42, #089b42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.benefit-text {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

/* Botões padronizados */
.diferencial-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.diferencial-buttons .btn {
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.diferencial-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #028D31, #16a34a);
    color: white;
    box-shadow: 0 8px 25px rgba(2, 141, 49, 0.3);
}

.diferencial-buttons .btn-call {
    background: #f0dd10;
    color: white;
    box-shadow: 0 8px 25px rgba(240, 221, 16, 0.3);
}

.diferencial-buttons .btn svg {
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .diferencial-section {
        padding: 70px 0;
    }
    
    .diferencial-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .diferencial-image {
        order: -1;
    }
    
    .diferencial-content {
        order: 1;
        max-width: 100%;
    }
    
    .diferencial-title {
        font-size: 2.2rem;
    }
    
    .diferencial-description p {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 40px;
    }
    
    .highlight-card {
        grid-column: 1;
    }
    
    .benefit-card {
        padding: 22px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(3, 105, 161, 0.08);
        border: 1px solid rgba(3, 105, 161, 0.08);
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: left;
        gap: 12px;
    }
    
    .benefit-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(3, 105, 161, 0.12);
    }
    
    .highlight-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(3, 105, 161, 0.08);
        box-shadow: 0 6px 20px rgba(3, 105, 161, 0.06);
    }
    
    .highlight-card::before {
        display: none;
    }
    
    .highlight-card .benefit-icon-bg {
        background: linear-gradient(135deg, #089b42, #089b42);
    }
    
    .benefit-icon-bg {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(8, 155, 66, 0.2);
        flex-shrink: 0;
    }
    
    .benefit-content {
        text-align: left;
        flex: 1;
    }
    
    .benefit-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .benefit-text {
        font-size: 14px;
        color: #64748b;
    }
    
    .diferencial-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .diferencial-buttons .btn {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
    
    .diferencial-img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .diferencial-section {
        padding: 50px 0;
    }
    
    .diferencial-wrapper {
        gap: 40px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .diferencial-title {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    
    .diferencial-description {
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        gap: 16px;
        margin-bottom: 35px;
    }
    
    .benefit-card {
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 6px 20px rgba(3, 105, 161, 0.06);
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: left;
        gap: 10px;
    }
    
    .benefit-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(3, 105, 161, 0.1);
    }
    
    .highlight-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(3, 105, 161, 0.08);
        box-shadow: 0 6px 20px rgba(3, 105, 161, 0.06);
    }
    
    .highlight-card::before {
        display: none;
    }
    
    .highlight-card .benefit-icon-bg {
        background: linear-gradient(135deg, #089b42, #089b42);
    }
    
    .benefit-icon-bg {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(8, 155, 66, 0.15);
        flex-shrink: 0;
    }
    
    .benefit-content {
        text-align: left;
        flex: 1;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .benefit-text {
        font-size: 13px;
        line-height: 1.4;
        color: #64748b;
    }
    
    .diferencial-buttons .btn {
        padding: 14px 24px;
        font-size: 13px;
        gap: 10px;
    }
    
    .diferencial-img {
        max-width: 320px;
    }
}

/* Terceira Dobra - Nossos Serviços */
.servicos-section {
    background: linear-gradient(135deg, #f7ffef 0%, #e8f5e8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.servicos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(3, 105, 161, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(2, 141, 49, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.servicos-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.servicos-subtitle {
    display: inline-block;
    color: #089b42;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(8, 155, 66, 0.1);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
}

.servicos-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
}

.servicos-description {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.servico-card {
    background: white;
    border: 1px solid rgba(3, 105, 161, 0.1);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 260px;
    justify-content: center;
}

.servico-card::before {
    display: none;
}

.servico-icon-wrapper {
    margin-bottom: 20px;
}

.servico-icon-bg {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #089b42, #089b42);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(8, 155, 66, 0.2);
}

.servico-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.servico-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.servico-text {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.5;
    font-weight: 400;
}

/* Imagem central */
.servicos-center {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.center-image-wrapper {
    position: relative;
    display: inline-block;
}

.rafael-center-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 24px;
}

/* Botões padronizados */
.servicos-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.servicos-buttons .btn {
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.servicos-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #028D31, #16a34a);
    color: white;
    box-shadow: 0 8px 25px rgba(2, 141, 49, 0.3);
}

.servicos-buttons .btn-call {
    background: #dbcd00;
    color: white;
    box-shadow: 0 8px 25px rgba(240, 221, 16, 0.3);
}

.servicos-buttons .btn svg {
    flex-shrink: 0;
}

/* Quarta Dobra - Atendimento 24 Horas */
.atendimento-section {
    background: linear-gradient(135deg, #089b42 0%, #089b42 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.atendimento-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(2, 141, 49, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.atendimento-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Conteúdo Principal */
.atendimento-content {
    color: white;
}

.atendimento-header {
    margin-bottom: 50px;
}

.badge-24h {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.badge-24h svg {
    color: #61ce70;
}

.atendimento-title {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.atendimento-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 0;
}

.atendimento-description strong {
    color: #61ce70;
    font-weight: 700;
}

/* Grid de Benefícios */
.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.beneficio-card::before {
    display: none;
}

.beneficio-icon {
    width: 48px;
    height: 48px;
    background: rgba(97, 206, 112, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #61ce70;
    flex-shrink: 0;
}

.beneficio-content {
    flex: 1;
}

.beneficio-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.beneficio-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* Visual da Imagem */
.atendimento-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.atendimento-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
}

/* Indicador de Status Online - MANTIDO */
.status-indicator {
    position: absolute;
    bottom: -10px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.status-siren {
    font-size: 14px;
}

.status-text {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    font-family: 'Montserrat', sans-serif;
}

/* Animação apenas para o status dot - MANTIDA */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Rodapé */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #61ce70;
}

.footer-separator {
    color: #666;
    font-size: 14px;
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
        margin-top: 40px;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 10px;
    }
}

/* Botão Flutuante de Contato - Oculto no Desktop */
.floating-contact {
    display: none;
}

/* Desktop - botão flutuante removido */
@media (min-width: 769px) {
    .floating-contact {
        display: none;
    }
}

/* Tablet - mantém oculto também */
@media (max-width: 768px) and (min-width: 481px) {
    .floating-contact {
        display: none;
    }
}

.floating-btn {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background: #dac800;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(218, 200, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.floating-btn:active {
    /* Removido para performance */
}

.floating-menu {
    position: absolute;
    bottom: 89px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
}

.floating-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-width: 140px;
    justify-content: flex-start;
}

.whatsapp-option {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-option {
    background: #dac800;
}

.floating-option svg {
    flex-shrink: 0;
}

.floating-option span {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Responsividade para terceira dobra */
@media (max-width: 768px) {
    .servicos-section {
        padding: 70px 0;
    }
    
    .servicos-header {
        margin-bottom: 50px;
    }
    
    .servicos-title {
        font-size: 2.2rem;
    }
    
    .servicos-description {
        font-size: 16px;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
        max-width: 400px;
    }
    
    .servico-card {
        height: auto;
        min-height: 200px;
        padding: 25px 20px;
    }
    
    .servicos-center {
        grid-column: 1;
        grid-row: 3;
        margin: 20px 0;
        order: 3;
    }
    
    .rafael-center-img {
        max-width: 300px;
    }
    
    .servico-icon-bg {
        width: 56px;
        height: 56px;
    }
    
    .servico-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .servico-text {
        font-size: 16.1px;
    }
    
    .servicos-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .servicos-buttons .btn {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .servicos-section {
        padding: 50px 0;
    }
    
    .servicos-header {
        margin-bottom: 40px;
    }
    
    .servicos-title {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    
    .servicos-description {
        font-size: 18px;
    }
    
    .servicos-grid {
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .servico-card {
        min-height: 180px;
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .servico-icon-bg {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }
    
    .servico-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .servico-text {
        font-size: 16.1px;
        line-height: 1.4;
    }
    
    .rafael-center-img {
        max-width: 280px;
    }
    
    .servicos-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .servicos-buttons .btn {
        padding: 16px 28px;
        font-size: 13px;
        gap: 8px;
    }
    
    .servico-icon-bg {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

/* Páginas Legais */
.legal-page {
    /* Remover se páginas legais não existem */
}

.legal-content {
    /* Remover se páginas legais não existem */
}

.legal-content h1 {
    /* Remover se páginas legais não existem */
}

.last-updated {
    /* Remover se páginas legais não existem */
}

.legal-section {
    /* Remover se páginas legais não existem */
}

.legal-section h2 {
    /* Remover se páginas legais não existem */
}

.legal-section h3 {
    /* Remover se páginas legais não existem */
}

.legal-section p {
    /* Remover se páginas legais não existem */
}

.legal-section ul {
    /* Remover se páginas legais não existem */
}

.legal-section li {
    /* Remover se páginas legais não existem */
}

.legal-section a {
    /* Remover se páginas legais não existem */
}

.back-link {
    /* Remover se páginas legais não existem */
}

/* Otimizar responsividade - remover media queries duplicadas */
@media (max-width: 768px) {
    .legal-content {
        /* Remover se páginas legais não existem */
    }
    
    .legal-content h1 {
        /* Remover se páginas legais não existem */
    }
    
    .legal-section h2 {
        /* Remover se páginas legais não existem */
    }
    
    .legal-section ul {
        /* Remover se páginas legais não existem */
    }
}

/* Responsividade para quarta dobra */
@media (max-width: 768px) {
    .atendimento-section {
        padding: 70px 0;
    }
    
    .atendimento-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .atendimento-visual {
        order: -1;
    }
    
    .atendimento-content {
        order: 1;
    }
    
    .atendimento-title {
        font-size: 2.5rem;
    }
    
    .atendimento-description {
        font-size: 16px;
    }
    
    .beneficios-grid {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .beneficio-card {
        padding: 16px;
        flex-direction: row;
        text-align: left;
    }
    
    .beneficio-content {
        align-items: flex-start;
        text-align: left;
    }
    
    .beneficio-text {
        font-size: 16.1px;
    }
    
    .atendimento-img {
        max-width: 400px;
    }
    
    .status-indicator {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 480px) {
    .atendimento-section {
        padding: 50px 0;
    }
    
    .atendimento-wrapper {
        gap: 40px;
    }
    
    .atendimento-title {
        font-size: 2rem;
    }
    
    .atendimento-description {
        font-size: 18px;
    }
    
    .beneficio-card {
        padding: 14px;
        gap: 12px;
    }
    
    .beneficio-icon {
        width: 40px;
        height: 40px;
    }
    
    .beneficio-title {
        font-size: 15px;
    }
    
    .beneficio-text {
        font-size: 16.1px;
    }
    
    .atendimento-img {
        max-width: 320px;
    }
    
    .status-indicator {
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Quinta Dobra - Mais Serviços e Orçamento Final */
.mais-servicos-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.orcamento-top {
    text-align: center;
    margin-bottom: 80px;
}

.orcamento-top-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.orcamento-top-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mais-servicos-content {
    text-align: center;
    margin-bottom: 80px;
}

.mais-servicos-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mais-servicos-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.servicos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.servico-item {
    background: #ffffff;
    color: #089b42;
    border: 2px solid #089b42;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(8, 155, 66, 0.1);
    cursor: pointer;
    white-space: nowrap;
}

.servico-icon {
    background: #089b42;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.servico-nome {
    font-size: 14px;
    color: #089b42;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.servicos-coluna {
    display: contents;
}

.orcamento-final {
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 0 20px;
    box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.5);
}

.orcamento-final-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Botão Flutuante de Contato - sem animações */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background: #dac800;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(218, 200, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.floating-menu {
    position: absolute;
    bottom: 89px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
}

.floating-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-width: 140px;
    justify-content: flex-start;
}

.whatsapp-option {
    background: linear-gradient(135deg, #028D31 0%, #16a34a 100%);
}

.phone-option {
    background: #dac800;
}

.floating-option svg {
    flex-shrink: 0;
}

.floating-option span {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Rodapé */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-separator {
    color: #666;
    font-size: 14px;
}

/* Container de botões padronizado */
.cta-buttons,
.diferencial-buttons,
.servicos-buttons,
.orcamento-top-buttons,
.orcamento-final-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

/* Responsividade geral */
@media (max-width: 768px) {
    .cta-buttons,
    .diferencial-buttons,
    .servicos-buttons,
    .orcamento-top-buttons,
    .orcamento-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mais-servicos-section {
        padding: 60px 0;
    }
    
    .orcamento-top-title,
    .mais-servicos-title,
    .orcamento-final-title {
        font-size: 2rem;
    }
    
    .orcamento-top-description,
    .mais-servicos-description {
        font-size: 16px;
    }
    
    .servicos-lista {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 100%;
        justify-content: center;
        padding: 0 10px;
    }
    
    .servico-item {
        font-size: 13px;
        padding: 12px 16px;
        width: 100%;
        min-height: 50px;
        justify-content: center;
        text-align: center;
        border-radius: 20px;
    }
    
    .orcamento-final {
        margin: 0 10px;
        padding: 40px 20px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 59px;
        height: 59px;
    }
    
    .floating-option {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .floating-option svg {
        width: 20px;
        height: 20px;
    }
    
    .footer {
        padding: 30px 0;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .orcamento-top-title,
    .mais-servicos-title,
    .orcamento-final-title {
        font-size: 1.8rem;
    }
    
    .orcamento-top-description,
    .mais-servicos-description {
        font-size: 19px;
    }
    
    .servicos-lista {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        justify-content: center;
        padding: 0 20px;
    }

    .servico-item {
        font-size: 14px;
        padding: 15px 20px;
        width: 100%;
        min-height: 55px;
        justify-content: center;
        text-align: center;
        border-radius: 25px;
        box-shadow: 0 3px 10px rgba(20, 55, 71, 0.15);
    }

    .servico-nome {
        font-size: 14px;
        text-align: center;
    }

    .servico-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .orcamento-final {
        margin: 0 5px;
        padding: 30px 15px;
    }
    
    /* Footer Fixo Mobile */
    .floating-contact {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 16px;
        gap: 16px;
    }
    
    .floating-btn {
        display: none;
    }
    
    .floating-menu {
        position: static;
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 16px;
        opacity: 1;
        visibility: visible;
    }
    
    .floating-option {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 16px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        color: white;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        white-space: nowrap;
        min-width: auto;
    }
    
    .floating-option svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .footer {
        padding: 25px 0 80px 0; /* Espaço extra para o footer fixo */
        margin-top: 40px;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 10px;
    }
} 

/* ==================== ESTILOS MODERNOS - DOBRAS REFORMULADAS ==================== */

/* Terceira Dobra - Serviços Modernizada */
.servicos-section-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
}

.servicos-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(3, 105, 161, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(2, 141, 49, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.servicos-header-modern {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.servicos-subtitle-modern {
    display: inline-block;
    background: linear-gradient(135deg, #089b42, #089b42);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.servicos-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.servicos-description-modern {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

.servicos-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    max-width: 900px;
    margin: 0 auto 60px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
}

.servico-item-modern {
    background: white;
    padding: 30px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.servico-item-modern:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.servico-item-modern.servico-destaque {
    background: linear-gradient(135deg, #f7ffef 0%, #e8f5e8 100%);
    border: 2px solid #10b981;
}

.servico-icon-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.servico-icon-modern svg {
    color: #089b42;
    flex-shrink: 0;
}

.servico-titulo-modern {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.servico-descricao-modern {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}



.servicos-cta-modern {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.servicos-cta-modern .btn {
    margin: 0;
}



@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quinta Dobra - Serviços Completos Modernizada */
.servicos-completos-modern {
    background: linear-gradient(135deg, #f7ffef 0%, #e8f5e8 100%);
    padding: 80px 0;
    position: relative;
}

.servicos-completos-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.servicos-completos-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #028D31, #16a34a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.servicos-completos-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.servicos-completos-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

.servicos-grid-completo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto 60px;
    background: #cbd5e1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #cbd5e1;
}

.servico-card-completo {
    background: white;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.servico-card-completo:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.servico-icon-completo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid;
}

.servico-icon-azul {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.servico-icon-verde {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.servico-icon-roxo {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.servico-icon-laranja {
    background: rgba(8, 155, 66, 0.1);
    border-color: rgba(8, 155, 66, 0.3);
    color: #089b42;
}

.servico-icon-rosa {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.servico-icon-vermelho {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.servico-content-completo h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.servico-descricao-completo {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.servicos-extras {
    margin-bottom: 50px;
}

.servicos-extras-header {
    text-align: center;
    margin-bottom: 30px;
}

.servicos-extras-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.servicos-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.servico-extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
}

.servicos-cta-final {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content {
    margin-bottom: 30px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.cta-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* .cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
} */

.cta-buttons .btn {
    margin: 0;
}

/* Segunda Dobra Modernizada */
.diferencial-section-modern {
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.diferencial-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(8, 155, 66, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.diferencial-header-modern {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out;
}

.diferencial-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 155, 66, 0.1);
    color: #089b42;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.diferencial-title-modern {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

/* Evitar quebra de linha em "de mais" apenas no desktop */
@media (min-width: 769px) {
    .no-break {
        white-space: nowrap;
    }
}

.diferencial-description-modern {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.diferencial-description-modern strong {
    color: #1e293b;
    font-weight: 700;
}

.diferencial-image-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.diferencial-img-modern {
    width: 100%;
    max-width: 460px; /* 15% maior que 400px */
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.diferencial-content-modern {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.diferencial-benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 800px;
}

.diferencial-benefits-left,
.diferencial-benefits-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.benefit-item-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(8, 155, 66, 0.2);
}

.benefit-item-modern.benefit-highlight {
    background: linear-gradient(135deg, rgba(247, 255, 239, 0.95) 0%, rgba(232, 245, 232, 0.95) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.benefit-icon-modern {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.benefit-icon-verde {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    color: #10b981;
}

.benefit-icon-azul {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: #3b82f6;
}

.benefit-icon-laranja {
    background: linear-gradient(135deg, rgba(8, 155, 66, 0.15) 0%, rgba(8, 155, 66, 0.08) 100%);
    color: #089b42;
}

.benefit-icon-dourado {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
    color: #f59e0b;
}

.benefit-content-modern {
    flex: 1;
    position: relative;
    z-index: 1;
}

.benefit-title-modern {
    font-size: 19px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.benefit-text-modern {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}



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

.diferencial-cta-modern .btn {
    min-width: 250px;
}

/* Responsividade para seções modernizadas */
@media (max-width: 768px) {
    .servicos-title-modern,
    .servicos-completos-title {
        font-size: 2rem;
    }
    
    .servicos-grid-modern {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .servicos-cta-modern {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .servicos-cta-modern .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .servicos-grid-completo {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .servicos-extras-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Segunda Dobra Modernizada - Mobile */
    .diferencial-section-modern {
        padding: 60px 0;
    }
    
    .diferencial-header-modern {
        margin-bottom: 50px;
    }
    
    .diferencial-title-modern {
        font-size: 2.2rem;
    }
    
    .diferencial-description-modern {
        font-size: 16px;
    }
    
    .diferencial-content-modern {
        gap: 40px;
    }
    
    .diferencial-image-modern {
        margin-bottom: 30px;
    }
    
    .diferencial-img-modern {
        max-width: 354px; /* 1% maior que 350px */
    }
    
    .diferencial-benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    

    
    .diferencial-benefits-left,
    .diferencial-benefits-right {
        gap: 20px;
    }
    
    .benefit-item-modern {
        padding: 20px;
    }
    
    .diferencial-cta-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .diferencial-cta-modern .btn {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .servicos-section-modern,
    .servicos-completos-modern {
        padding: 50px 0;
    }
    
    .servicos-title-modern,
    .servicos-completos-title {
        font-size: 1.8rem;
    }
    
    .servico-item-modern,
    .servico-card-completo {
        padding: 20px;
    }
    
    .servicos-cta-modern {
        gap: 12px;
    }
    
    .servicos-cta-modern .btn {
        max-width: 320px;
    }
    
    .servicos-cta-final {
        padding: 25px;
        margin: 0 15px;
    }
    

    
    /* Segunda Dobra Modernizada - Mobile Small */
    .diferencial-section-modern {
        padding: 40px 0;
    }
    
    .diferencial-header-modern {
        margin-bottom: 40px;
    }
    
    .diferencial-title-modern {
        font-size: 1.8rem;
    }
    
    .diferencial-description-modern {
        font-size: 15px;
    }
    
    .diferencial-content-modern {
        gap: 30px;
    }
    
    .benefit-item-modern {
        padding: 16px;
        gap: 12px;
    }
    
    .benefit-icon-modern {
        width: 40px;
        height: 40px;
    }
    
    .benefit-title-modern {
        font-size: 16px;
    }
    
    .benefit-text-modern {
        font-size: 13px;
    }
    

} 