/* =============================================
   SEÇÃO DE ORÇAMENTO INTERATIVO
   Aquaflex Aquecedores - Estilos Ultra Modernos
   Prefixo: orc-
   Versão: 1.0
   ============================================= */

/* ===== VARIÁVEIS E RESET ===== */
.orc-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

/* ===== EFEITOS DE FUNDO ===== */
.orc-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 85, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(38, 147, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Efeito de luz passando */
.orc-light-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: orcSweepLight 8s linear infinite;
    pointer-events: none;
}

@keyframes orcSweepLight {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Partículas flutuantes */
.orc-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.orc-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 85, 0, 0.4);
    border-radius: 50%;
    animation: orcFloatParticle 15s linear infinite;
}

.orc-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.orc-particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
    background: rgba(38, 147, 255, 0.4);
}

.orc-particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.orc-particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 14s;
    background: rgba(40, 167, 69, 0.4);
}

.orc-particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes orcFloatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ===== HEADER DA SEÇÃO ===== */
.orc-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.orc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
    margin-bottom: 20px;
    animation: orcPulseGlow 2s ease-in-out infinite;
}

@keyframes orcPulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 85, 0, 0.5);
    }
}

.orc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #010f34;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #010f34 0%, #ff5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orc-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #788094;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BARRA DE PROGRESSO ===== */
.orc-progress-wrapper {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.orc-progress-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.orc-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #ff5500 0%, #ff7733 100%);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
}

.orc-progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: orcProgressGlow 2s linear infinite;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes orcProgressGlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}

.orc-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
}

.orc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}

.orc-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #788094;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.orc-step span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #788094;
    transition: color 0.3s ease;
}

.orc-step.active .orc-step-circle {
    background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
    border-color: #ff5500;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 85, 0, 0.4);
    transform: scale(1.1);
}

.orc-step.active span {
    color: #ff5500;
    font-weight: 700;
}

.orc-step.completed .orc-step-circle {
    background: linear-gradient(135deg, #28a745 0%, #34d058 100%);
    border-color: #28a745;
    color: white;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.orc-step.completed span {
    color: #28a745;
}

/* ===== WIZARD CONTAINER ===== */
.orc-wizard-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.orc-wizard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5500 0%, #2693FF 50%, #28a745 100%);
}

.orc-wizard-step {
    display: none;
    animation: orcFadeInUp 0.5s ease-out;
}

.orc-wizard-step.active {
    display: block;
}

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

.orc-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #010f34;
    text-align: center;
    margin-bottom: 40px;
}

/* ===== CARDS DE SERVIÇO ===== */
.orc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.orc-service-card {
    position: relative;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.orc-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5500 0%, #ff7733 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.orc-service-card:hover {
    transform: translateY(-5px);
    border-color: #ff5500;
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.15);
}

.orc-service-card:hover::before {
    transform: scaleX(1);
}

.orc-service-card.selected {
    border-color: #ff5500;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05) 0%, rgba(255, 85, 0, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.2);
}

.orc-service-card.selected::before {
    transform: scaleX(1);
}

.orc-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.6s ease;
}

.orc-service-card:hover .orc-card-shine {
    transform: translateX(100%) translateY(100%);
}

.orc-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.orc-icon-orange {
    background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.3);
}

.orc-icon-green {
    background: linear-gradient(135deg, #28a745 0%, #34d058 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.orc-icon-blue {
    background: linear-gradient(135deg, #2693FF 0%, #4da3ff 100%);
    box-shadow: 0 8px 25px rgba(38, 147, 255, 0.3);
}

.orc-icon-purple {
    background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.3);
}

.orc-service-card:hover .orc-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.orc-service-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #010f34;
    margin-bottom: 10px;
}

.orc-service-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #788094;
    margin-bottom: 15px;
}

.orc-service-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.orc-service-badges span {
    background: #f8f9fa;
    color: #788094;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.orc-service-card:hover .orc-service-badges span {
    background: rgba(255, 85, 0, 0.1);
    color: #ff5500;
}

/* ===== FORMULÁRIO ===== */
.orc-form-group {
    margin-bottom: 30px;
}

.orc-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #010f34;
    margin-bottom: 12px;
}

.orc-label i {
    color: #ff5500;
    font-size: 18px;
}

/* Radio Cards Grid */
.orc-radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.orc-radio-card {
    position: relative;
}

.orc-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.orc-radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orc-radio-content i {
    font-size: 28px;
    color: #788094;
    transition: all 0.3s ease;
}

.orc-radio-content span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #010f34;
}

.orc-radio-card:hover .orc-radio-content {
    border-color: #ff5500;
    background: rgba(255, 85, 0, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.1);
}

.orc-radio-card input[type="radio"]:checked + .orc-radio-content {
    border-color: #ff5500;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.1) 0%, rgba(255, 85, 0, 0.05) 100%);
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.15);
}

.orc-radio-card input[type="radio"]:checked + .orc-radio-content i {
    color: #ff5500;
    transform: scale(1.1);
}

/* Botões de Urgência */
.orc-urgency-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.orc-urgency-btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #010f34;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orc-urgency-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.orc-urgency-btn:hover {
    border-color: #ff5500;
    background: rgba(255, 85, 0, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.1);
}

.orc-urgency-btn:hover i {
    transform: scale(1.15);
}

.orc-urgency-btn.selected {
    border-color: #ff5500;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.1) 0%, rgba(255, 85, 0, 0.05) 100%);
    color: #ff5500;
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.15);
}

/* Input e Textarea */
.orc-input,
.orc-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #010f34;
    background: white;
    transition: all 0.3s ease;
}

.orc-input:focus,
.orc-textarea:focus {
    outline: none;
    border-color: #ff5500;
    box-shadow: 0 0 0 4px rgba(255, 85, 0, 0.1);
}

.orc-textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Checkbox Personalizado */
.orc-consent {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.orc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.orc-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.orc-checkbox-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.orc-checkbox-label input[type="checkbox"]:checked + .orc-checkbox-custom {
    background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
    border-color: #ff5500;
}

.orc-checkbox-label input[type="checkbox"]:checked + .orc-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.orc-checkbox-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #788094;
    line-height: 1.5;
}

/* ===== BOTÕES DE NAVEGAÇÃO ===== */
.orc-navigation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.orc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.orc-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.orc-btn:hover::before {
    width: 300px;
    height: 300px;
}

.orc-btn-primary {
    background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.3);
}

.orc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 85, 0, 0.4);
}

.orc-btn-secondary {
    background: white;
    color: #010f34;
    border: 2px solid #e9ecef;
}

.orc-btn-secondary:hover {
    border-color: #010f34;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.orc-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    font-size: 18px;
    padding: 18px 40px;
}

.orc-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.orc-btn i {
    position: relative;
    z-index: 1;
}

.orc-btn span {
    position: relative;
    z-index: 1;
}

/* ===== PÁGINA DE SUCESSO ===== */
.orc-success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.orc-success-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #34d058 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.3);
    animation: orcSuccessPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes orcSuccessPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.orc-success-title {
    color: #28a745;
}

.orc-success-message {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #788094;
    margin-bottom: 40px;
    line-height: 1.6;
}

.orc-summary-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.orc-summary-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #010f34;
    margin-bottom: 20px;
    text-align: center;
}

.orc-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.orc-summary-item:last-child {
    border-bottom: none;
}

.orc-summary-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #788094;
}

.orc-summary-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #010f34;
}

.orc-final-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.orc-contact-info {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.orc-contact-info p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #010f34;
    margin-bottom: 15px;
}

.orc-phones {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.orc-phones a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ff5500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.orc-phones a:hover {
    color: #cc4400;
}

/* ===== CONTATO RÁPIDO ===== */
.orc-quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.orc-quick-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orc-quick-contact-card i {
    font-size: 36px;
    color: #ff5500;
}

.orc-quick-contact-card:first-child i {
    color: #25D366;
}

.orc-quick-contact-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #788094;
    margin-bottom: 5px;
}

.orc-quick-contact-card a {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #010f34;
    text-decoration: none;
    transition: color 0.3s ease;
}

.orc-quick-contact-card:hover {
    transform: translateY(-5px);
    border-color: #ff5500;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.15);
}

.orc-quick-contact-card:hover a {
    color: #ff5500;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .orc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .orc-section {
        padding: 60px 0;
    }

    .orc-title {
        font-size: 36px;
    }

    .orc-subtitle {
        font-size: 16px;
    }

    .orc-wizard-container {
        padding: 30px 20px;
    }

    .orc-step-title {
        font-size: 24px;
    }

    .orc-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .orc-progress-steps {
        gap: 10px;
    }

    .orc-step span {
        font-size: 11px;
    }

    .orc-step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .orc-radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orc-urgency-buttons {
        flex-direction: column;
    }

    .orc-urgency-btn {
        width: 100%;
    }

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

    .orc-navigation-buttons {
        flex-direction: column-reverse;
    }

    .orc-btn {
        width: 100%;
        justify-content: center;
    }

    .orc-quick-contact {
        grid-template-columns: 1fr;
    }

    .orc-final-actions {
        width: 100%;
    }

    .orc-btn-whatsapp {
        width: 100%;
    }

    .orc-phones {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .orc-header {
        margin-bottom: 40px;
    }

    .orc-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .orc-title {
        font-size: 28px;
    }

    .orc-service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .orc-service-card h4 {
        font-size: 18px;
    }

    .orc-radio-grid {
        grid-template-columns: 1fr;
    }

    .orc-success-circle {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }
}







/* ===== AVISO DE PRIVACIDADE ===== */
.orc-privacy-notice {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(38, 147, 255, 0.05) 0%, rgba(38, 147, 255, 0.02) 100%);
    border: 2px solid rgba(38, 147, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    align-items: flex-start;
}

.orc-privacy-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2693FF 0%, #4da3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(38, 147, 255, 0.3);
}

.orc-privacy-content h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #010f34;
    margin-bottom: 8px;
}

.orc-privacy-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #788094;
    line-height: 1.6;
    margin: 0;
}

.orc-privacy-content a {
    color: #2693FF;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.orc-privacy-content a:hover {
    color: #1a75cc;
}

.orc-consent {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.orc-checkbox-text strong {
    color: #010f34;
}

/* Responsividade do aviso de privacidade */
@media (max-width: 768px) {
    .orc-privacy-notice {
        flex-direction: column;
        gap: 15px;
    }

    .orc-privacy-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .orc-privacy-content h5 {
        font-size: 15px;
    }

    .orc-privacy-content p {
        font-size: 13px;
    }
}