* {
    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: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 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.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(2, 141, 49, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23004DAF" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    pointer-events: none;
}

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

/* Badge de Emergência */
.hero-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    color: #dc2626;
}


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

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

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

.title-gradient {
    background: linear-gradient(135deg, #004DAF 0%, #1d4ed8 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 77, 175, 0.3);
}

.title-highlight {
    background: linear-gradient(135deg, #028D31 0%, #16a34a 50%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(2, 141, 49, 0.3);
}

.title-subtitle {
    font-size: 0.6em;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
    position: relative;
}

.title-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #004DAF, #028D31);
    border-radius: 2px;
}

.description {
    margin-bottom: 30px;
}

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

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

/* Destaques Rápidos */
.quick-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 77, 175, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
    box-shadow: 0 4px 20px rgba(0, 77, 175, 0.15);
    border-color: rgba(0, 77, 175, 0.2);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #004DAF, #1d4ed8);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 14px;
    height: 14px;
}

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

/* Botões Modernos */
.btn {
    padding: 18px 32px;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #028D31 0%, #16a34a 50%, #22c55e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(2, 141, 49, 0.3);
    border: 1px solid rgba(2, 141, 49, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(2, 141, 49, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #004DAF 0%, #1d4ed8 50%, #3b82f6 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 77, 175, 0.3);
    border: 1px solid rgba(0, 77, 175, 0.2);
}

.btn-secondary:hover {
    box-shadow: 0 12px 35px rgba(0, 77, 175, 0.4);
}

.btn svg {
    flex-shrink: 0;
}

.btn:hover svg {
}

/* Texto de confiança aprimorado */
.trust-text {
}

.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 77, 175, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #004DAF;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 77, 175, 0.2), transparent);
}

.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 25px 70px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-image:hover {
}

/* Elementos decorativos aprimorados */
.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.15), rgba(0, 77, 175, 0.05));
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

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

.decoration-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    border-radius: 50%;
    animation-delay: 4s;
}


/* Badge de Emergência na Imagem */
.emergency-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95), rgba(239, 68, 68, 0.9));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    z-index: 3;
}

.emergency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
}


/* 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%;
    }
    
    .hero-badge {
        margin-bottom: 30px;
    }
    
    .badge-content {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .main-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .title-subtitle {
        font-size: 0.5em;
    }
    
    .description {
        margin-bottom: 20px;
    }
    
    .description p {
        font-size: 16px;
    }
    
    .quick-highlights {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .highlight-item {
        justify-content: center;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        min-width: auto;
        font-size: 14px;
        padding: 16px 24px;
    }
    
    .hero-image {
        width: 295px;
        max-width: 295px;
    }

    .trust-stats {
        gap: 16px;
        padding: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }

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

    .decoration-1,
    .decoration-2,
    .decoration-3 {
        display: none;
    }
    
    .emergency-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .badge-emergency {
        font-size: 15.4px !important; /* Aumentado de 12px para 15.4px (+28.3% para compensar menor base) */
        padding: 10px 28px !important; /* Reduzido de 14px para 10px na altura */
        gap: 10px !important;
    }
}

@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;
    }
    
    .badge-emergency {
        font-size: 15.4px !important; /* Aumentado de 12px para 15.4px (+28.3% para compensar menor base) */
        padding: 10px 28px !important; /* Reduzido de 14px para 10px na altura */
        gap: 10px !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 {
        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 {
        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;
}

/* Rodapé */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: white;
}

.footer-separator {
    color: #64748b;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}



/* 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, #028D31 0%, #028D31 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(2, 141, 49, 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: #25D366;
}

.phone-option {
    background: #3b82f6;
}

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

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



/* ===== NOVA PRIMEIRA DOBRA REFORMULADA ===== */

/* Hero Section Nova */
.hero-section-new {
    min-height: 70vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    pointer-events: none;
}

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

/* Badge de Emergência Novo */
.hero-badge-new {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.badge-emergency {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px; /* Reduzido de 16px para 12px na altura */
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.badge-emergency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.badge-emergency:hover::before {
    left: 100%;
}

.emergency-pulse {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}


/* Grid Principal */
.hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Garantir centralização no desktop */
@media (min-width: 769px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

/* Conteúdo Principal */
.hero-content {
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-main {
    color: white;
    text-transform: uppercase;
    font-weight: 900;
}

.title-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-weight: 900;
}

.title-sub {
    font-size: 0.69em;
    color: #2ebd60;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-description strong {
    color: #ffffff;
    font-weight: 700;
}



/* Botões de Ação Modernos */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
    justify-content: center;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
        font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-phone {
    background: #3b82f6;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-phone:hover {
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

/* Estatísticas de Confiança */
.trust-stats-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number-new {
    font-size: 28px;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label-new {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider-new {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Estilos para a imagem do Google */
.google-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 5px;
}

.google-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    padding: 8px;
}

.google-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Seção da Imagem */
.hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.image-frame {
    position: relative;
    z-index: 2;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-new {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    display: block;
}



/* Animações */


/* Responsividade */
@media (max-width: 768px) {
    .hero-section-new {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-badge-new {
        margin-bottom: 20px;
    }
    
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image-section {
        order: -1;
    }
    
    .hero-title {
    font-size: 2.75rem; /* Aumentado de 2.5rem para 2.75rem (+10%) */
    margin-bottom: 20px;
    }
    
    .title-main {
        font-size: 1.1em; /* Aumentado em 10% relativo ao hero-title */
    }
    
    .title-sub {
        font-size: 0.75em; /* Aumentado em 30% de 0.58em */
    }
    
    .badge-emergency {
        font-size: 15.4px !important; /* Aumentado de 14px para 15.4px (+10%) */
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .benefits-cards {
        justify-content: center;
    margin-bottom: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-stats-new {
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number-new {
        font-size: 24px;
    }
    
    .hero-image-new {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .container-new {
        padding: 0 15px;
    }
    
    .hero-badge-new {
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem; /* Aumentado de 2rem para 2.2rem (+10%) */
    }
    
    .title-main {
        font-size: 1.1em; /* Aumentado em 10% relativo ao hero-title */
    }
    
    .title-sub {
        font-size: 0.75em; /* Aumentado em 30% de 0.58em */
    }
    
    .badge-emergency {
        font-size: 15.4px !important; /* Aumentado de 14px para 15.4px (+10%) */
    }
    
    .hero-description {
        font-size: 17px;
    }
    


    .btn-modern {
        padding: 14px 24px;
    font-size: 14px;
    }
    
    .trust-stats-new {
        gap: 16px;
        padding: 16px;
    }
    
    .stat-number-new {
        font-size: 20px;
    }
    
    .hero-image-new {
        max-width: 280px;
    }
    
    .google-image-container {
        padding: 15px;
        margin-top: 20px;
    }
    
    .google-image {
        max-width: 352px; /* Aumentado de 320px para 352px (+10%) */
        border-radius: 8px;
        padding: 6px;
    }
} 

/* ===== SEGUNDA DOBRA REVOLUCIONÁRIA ===== */

/* Seção Revolucionária */
.revolutionary-section {
    min-height: auto;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.revolutionary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.revolutionary-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    pointer-events: none;
}

.revolutionary-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Elementos Decorativos Flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}


/* Layout Assimétrico */
.asymmetric-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 5;
}

/* Lado do Conteúdo */
.content-side {
    color: white;
    padding-left: 40px;
    position: relative;
    z-index: 10;
}

.content-block {
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.revolutionary-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #2ebd60;
    border-radius: 50%;
}


.revolutionary-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line-1 {
    color: #ffffff;
}

.title-line-2 {
    background: linear-gradient(135deg, #2ebd60 0%, #2ebd60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.revolutionary-description {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 0;
    max-width: 500px;
}

.revolutionary-description strong {
    color: #ffffff;
    font-weight: 700;
}

/* Lista de Diferenciais Única */
.unique-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2ebd60, #2ebd60);
    opacity: 0;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-highlight {
    border-color: rgba(46, 189, 96, 0.3);
    background: linear-gradient(135deg, rgba(46, 189, 96, 0.1), rgba(46, 189, 96, 0.05));
}

.feature-highlight::before {
    opacity: 1;
}

.feature-number {
    font-size: 24px;
    font-weight: 900;
    color: #2ebd60;
    font-family: 'Montserrat', sans-serif;
    min-width: 40px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.feature-content p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

/* Lado Visual */
.visual-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-composition {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.main-image-container {
    position: relative;
    z-index: 3;
}

.image-distortion-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(46, 189, 96, 0.2), rgba(46, 189, 96, 0.2));
    border-radius: 30px;
    filter: blur(30px);
    z-index: 1;
}


.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 24px;
    z-index: 2;
}

.revolutionary-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}



/* Elementos Visuais */
.visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    text-align: center;
}

.stat-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 2s;
}

.stat-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}


.stat-number {
    font-size: 16px;
    font-weight: 900;
    color: #2ebd60;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
}

/* Seção de Contato Integrada */
.integrated-contact {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.contact-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.contact-header p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
}

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

.revolutionary-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.revolutionary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.revolutionary-btn:hover::before {
    left: 100%;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-phone {
    background: #3b82f6;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-phone:hover {
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .revolutionary-section {
        padding: 80px 0;
    }
    
    .asymmetric-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .content-side {
        padding-left: 0;
        order: 2;
    }
    
    .visual-side {
        order: 1;
    }
    
    .revolutionary-title {
        font-size: 2.5rem;
    }
    
    .unique-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
        text-align: left;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .revolutionary-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .image-composition {
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    .revolutionary-section {
        padding: 60px 0;
    }
    
    .revolutionary-container {
        padding: 0 15px;
    }
    
    .revolutionary-title {
        font-size: 2rem;
    }
    
    .asymmetric-layout {
        gap: 40px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .revolutionary-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .image-composition {
        max-width: 336px;
    }
    
    .stat-bubble {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 12px;
    }
    
    .stat-label {
        font-size: 8px;
    }
} 

/* ===== TERCEIRA DOBRA - NOSSOS SERVIÇOS ===== */

.terceira-dobra-servicos {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
}

.terceira-dobra-servicos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header da Seção */
.header-servicos {
        text-align: center;
    margin-bottom: 80px;
}

.badge-servicos {
    display: inline-block;
    background: rgba(0, 77, 175, 0.1);
    color: #004DAF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 77, 175, 0.2);
}

.titulo-servicos {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.palavra-azul {
    color: #004DAF;
}

.palavra-verde {
    color: #10B981;
}

.palavra-cinza {
    color: #64748b;
}

.subtitulo-servicos {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Serviços */
.grid-servicos {
        display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card-servico {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-servico:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icone-servico {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.card-servico h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.card-servico p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.status-servico {
    display: inline-block;
    background: linear-gradient(135deg, #004DAF, #1d4ed8);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-emergencia {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

/* Seção de Contato */
.secao-contato-servicos {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.info-contato h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.info-contato p {
    color: #64748b;
    line-height: 1.6;
}

.botoes-contato {
    display: flex;
    gap: 20px;
}

.btn-whatsapp-servicos,
.btn-telefone-servicos {
    display: flex;
    align-items: center;
        gap: 10px;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-whatsapp-servicos {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.btn-whatsapp-servicos:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-telefone-servicos {
    background: linear-gradient(135deg, #004DAF, #1d4ed8);
    color: white;
}

.btn-telefone-servicos:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow: 0 10px 20px rgba(0, 77, 175, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .terceira-dobra-servicos {
        padding: 80px 0;
    }
    
    .titulo-servicos {
        font-size: 2.5rem;
    }
    
    .grid-servicos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-servico {
        padding: 25px;
    }
    
    .secao-contato-servicos {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }
    
    .botoes-contato {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-whatsapp-servicos,
    .btn-telefone-servicos {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .titulo-servicos {
        font-size: 2rem;
    }
    
    .subtitulo-servicos {
        font-size: 1.1rem;
    }
    
    .card-servico {
        padding: 20px;
    }
    
    .secao-contato-servicos {
        padding: 25px;
    }
}

/* Fim dos estilos da terceira dobra *//* T
ext Shadow para melhor legibilidade dos botões */
.btn-whatsapp,
.btn-phone,
.btn-call,
.btn-whatsapp-servicos,
.btn-telefone-servicos,
.diferencial-buttons .btn-whatsapp,
.diferencial-buttons .btn-call,
.servicos-buttons .btn-whatsapp,
.servicos-buttons .btn-call,
.revolutionary-btn {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}