* {
    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, #f8fafc 0%, #e2e8f0 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(0, 77, 175, 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: #004DAF;
    text-shadow: 2px 2px 4px rgba(0, 77, 175, 0.2);
}

.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;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 25px;
}

/* 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: linear-gradient(135deg, #004DAF, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 77, 175, 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: 550px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* Elementos decorativos */
.image-decoration {
    position: absolute;
    border-radius: 20px;
    z-index: 1;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 77, 175, 0.1), rgba(0, 77, 175, 0.05));
    top: -30px;
    right: -30px;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(2, 141, 49, 0.1), rgba(2, 141, 49, 0.05));
    bottom: -20px;
    left: -20px;
}

/* 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;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
    
    .hero-image {
        width: 295px;
        max-width: 295px;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 20px 0;
    }
    
    .content-wrapper {
        gap: 25px;
    }
    
    .main-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }
    
    .description {
        margin-bottom: 25px;
    }
    
    .description p {
        font-size: 18px;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .cta-buttons {
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .hero-image {
        width: 295px;
        max-width: 295px;
    }

    .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, #f8fafc 0%, #e2e8f0 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(0, 77, 175, 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;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.section-subtitle {
    display: inline-block;
    color: #004DAF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(0, 77, 175, 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(0, 77, 175, 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, #004DAF, #1d4ed8);
    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: linear-gradient(135deg, #004DAF, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 77, 175, 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(0, 77, 175, 0.08);
        border: 1px solid rgba(0, 77, 175, 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(0, 77, 175, 0.12);
    }
    
    .highlight-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(0, 77, 175, 0.08);
        box-shadow: 0 6px 20px rgba(0, 77, 175, 0.06);
    }
    
    .highlight-card::before {
        display: none;
    }
    
    .highlight-card .benefit-icon-bg {
        background: linear-gradient(135deg, #004DAF, #1d4ed8);
    }
    
    .benefit-icon-bg {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(0, 77, 175, 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(0, 77, 175, 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(0, 77, 175, 0.1);
    }
    
    .highlight-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(0, 77, 175, 0.08);
        box-shadow: 0 6px 20px rgba(0, 77, 175, 0.06);
    }
    
    .highlight-card::before {
        display: none;
    }
    
    .highlight-card .benefit-icon-bg {
        background: linear-gradient(135deg, #004DAF, #1d4ed8);
    }
    
    .benefit-icon-bg {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 77, 175, 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, #f8fafc 0%, #e2e8f0 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(0, 77, 175, 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: #004DAF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(0, 77, 175, 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(0, 77, 175, 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, #004DAF, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 77, 175, 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;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* 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: linear-gradient(135deg, #004DAF, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 77, 175, 0.3);
}

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

/* Quarta Dobra - Atendimento 24 Horas */
.atendimento-section {
    background: linear-gradient(135deg, #004DAF 0%, #1d4ed8 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;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 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-dot {
    width: 8px;
    height: 8px;
    background: #61ce70;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.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 */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background: linear-gradient(135deg, #004DAF 0%, #004DAF 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 77, 175, 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;
    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, #25D366 0%, #128C7E 100%);
}

.phone-option {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A24 100%);
}

.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: #004DAF;
    border: 2px solid #004DAF;
    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(20, 55, 71, 0.1);
    cursor: pointer;
    white-space: nowrap;
}

.servico-icon {
    background: #004DAF;
    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: #004DAF;
    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: linear-gradient(135deg, #17a52c 0%, #04b01e 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 77, 175, 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: linear-gradient(135deg, #004DAF 0%, #1d4ed8 100%);
}

.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;
    }
    
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 59px;
        height: 59px;
    }
    
    .floating-menu {
        bottom: 79px;
    }
    
    .floating-option {
        padding: 10px 17px;
        font-size: 14px;
        min-width: 132px;
        gap: 10px;
    }
    
    .floating-option svg {
        width: 22px;
        height: 22px;
    }
    
    .footer {
        padding: 25px 0;
        margin-top: 40px;
    }
    
    .footer-copyright,
    .footer-link {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 10px;
    }
} 