/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0B1A2F;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navbar Profissional - Estilo Moderno */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(11, 26, 47, 0.95) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(11, 26, 47, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 0.75rem 0;
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(11, 26, 47, 0.98) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

/* Brand/Logo Styling */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand:hover {
    color: #3B82F6 !important;
    transform: translateY(-1px);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #1E3A8A);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.brand-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: #3B82F6 !important;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3B82F6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Melhorar experiência do dropdown trigger */
.nav-item.dropdown .nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-item.dropdown .nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.nav-item.dropdown .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #1E3A8A);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item.dropdown .nav-link:hover::before {
    width: 80%;
}

/* Dropdown Styling */
.dropdown-menu {
    background: rgba(11, 26, 47, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 280px;
}

.dropdown-header {
    color: #3B82F6;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3B82F6 !important;
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    border-color: rgba(59, 130, 246, 0.2);
    margin: 0.5rem 0;
}

/* Mega Menu Styling */
.mega-menu {
    background: rgba(11, 26, 47, 0.98) !important;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 2rem 0;
    margin-top: 0.5rem;
    min-width: 900px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation: megaMenuFadeIn 0.3s ease-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

@keyframes megaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu-section {
    padding: 0 1rem;
}

.mega-menu-header {
    color: #3B82F6;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
}

.mega-menu-header i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.5rem;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-menu-item:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3B82F6 !important;
    transform: translateX(8px);
    border-color: rgba(59, 130, 246, 0.3);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.mega-menu-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    margin-right: 0.75rem;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.mega-menu-item:hover i {
    transform: scale(1.1);
}

.mega-menu-item div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.item-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.mega-menu-item:hover .item-desc {
    color: rgba(59, 130, 246, 0.8);
}

/* CTA Section in Mega Menu */
.mega-menu-cta {
    padding: 0 1rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    color: #3B82F6;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-title i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-features {
    margin-bottom: 1.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.cta-card .btn {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.cta-card .btn:hover {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Contact Info in Navbar */
.navbar-contact {
    display: flex;
    align-items: center;
}

.navbar-phone {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.navbar-phone:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
    transform: translateY(-1px);
    text-decoration: none;
}

.navbar-phone i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: #3B82F6;
}

/* WhatsApp Button in Navbar */
.navbar-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

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

.navbar-whatsapp:hover::before {
    left: 100%;
}

.navbar-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .brand-icon {
        width: 35px;
        height: 35px;
    }
    
    .brand-icon i {
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem !important;
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .dropdown-menu {
        background: rgba(11, 26, 47, 0.98);
        border: none;
        box-shadow: none;
        margin-top: 0;
        border-radius: 8px;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        border-radius: 6px;
    }
    
    .navbar-contact,
    .navbar-whatsapp {
        display: none;
    }
    
    /* Mega Menu Mobile Styles */
    .mega-menu {
        min-width: auto;
        width: 100%;
        left: 0 !important;
        transform: none !important;
        padding: 1rem 0;
        margin-top: 0.25rem;
    }
    
    .mega-menu .container {
        padding: 0 1rem;
    }
    
    .mega-menu .row {
        margin: 0;
    }
    
    .mega-menu .col-lg-3,
    .mega-menu .col-md-6 {
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .mega-menu-section {
        padding: 0;
    }
    
    .mega-menu-header {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        margin-bottom: 0.75rem;
    }
    
    .mega-menu-item {
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .mega-menu-item i {
        font-size: 1rem;
        width: 20px;
        margin-right: 0.5rem;
    }
    
    .item-title {
        font-size: 0.9rem;
    }
    
    .item-desc {
        font-size: 0.75rem;
    }
    
    .cta-card {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .cta-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-text {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-feature {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        width: 30px;
        height: 30px;
    }
    
    .brand-icon i {
        font-size: 0.9rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.55rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        min-width: 250px;
    }
}

/* Hero Section - Estilo TeamViewer */
.hero-section {
    background: linear-gradient(135deg, #0B1A2F 0%, #1E3A8A 50%, #3B82F6 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: 60px 60px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

.hero-image i {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Botões personalizados - Estilo TeamViewer */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(45deg, #3B82F6, #1E3A8A);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(45deg, #1E3A8A, #3B82F6);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: #0B1A2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-success {
    background: linear-gradient(45deg, #10B981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    color: #fff;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(45deg, #059669, #10B981);
}

/* Cards de serviços - Estilo Clean */
.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 26, 47, 0.1);
    border-color: #3B82F6;
}

.service-card .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    background: #fff;
    overflow: hidden;
}

.service-card .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #1E3A8A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
    color: #3B82F6;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    transform: scale(1.05);
}

.service-card:hover .service-icon i {
    color: #fff !important;
}

/* Preços e tags de preço - Estilo Clean */
.price-tag {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

/* Opções de backup - Estilo Clean */
.backup-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.backup-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.backup-option:hover {
    background: #E2E8F0;
    border-color: #3B82F6;
    transform: translateX(3px);
}

.backup-size {
    font-weight: 600;
    color: #0B1A2F;
}

.backup-price {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

/* Opções de visita - Estilo Clean */
.visit-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.visit-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.visit-option:hover {
    background: #E2E8F0;
    border-color: #3B82F6;
    transform: translateX(3px);
}

.visit-type {
    font-weight: 600;
    color: #0B1A2F;
}

.visit-price {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
}

/* Informações remotas - Estilo Clean */
.remote-info {
    text-align: center;
}

.remote-coverage {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Outros serviços - Estilo Clean */
.other-services ul {
    margin: 0;
    padding: 0;
}

.other-services li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #374151;
}

/* Cards de preços - Estilo Clean */
.pricing-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 26, 47, 0.1);
    border-color: #3B82F6;
}

.pricing-card.featured {
    border-color: #3B82F6;
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 15px;
    right: -25px;
    background: #3B82F6;
    color: #fff;
    padding: 4px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    background: linear-gradient(135deg, #0B1A2F, #1E3A8A);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

/* Cards de cobertura - Estilo Clean */
.coverage-card .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    background: #fff;
}

.coverage-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 26, 47, 0.1);
    border-color: #3B82F6;
}

/* Seção de contato - Estilo Clean */
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.contact-item a {
    color: #3B82F6;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: #1E3A8A;
    text-decoration: none !important;
}

/* Área de cobertura - Estilo Clean */
.coverage-list {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(11, 26, 47, 0.08);
    border: 1px solid #E5E7EB;
}

.coverage-item h6 {
    color: #0B1A2F;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.coverage-item ul {
    margin: 0;
    padding: 0;
}

.coverage-item li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #F1F5F9;
    color: #374151;
}

.coverage-item li:last-child {
    border-bottom: none;
}

/* Formulário - Estilo Clean */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #fff;
}

.form-label {
    font-weight: 600;
    color: #0B1A2F;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

/* Seções - Estilo Clean */
section {
    padding: 4rem 0;
}

.section-title {
    color: #0B1A2F;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* Footer - Estilo TeamViewer */
footer {
    background: linear-gradient(135deg, #0B1A2F 0%, #1E3A8A 100%) !important;
    color: #fff;
    border-top: 3px solid #3B82F6;
}

/* Seções do Footer */
.footer-section {
    margin-bottom: 1rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features do Footer */
.footer-features .feature-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-features .feature-item i {
    font-size: 0.8rem;
}

/* Links do Footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #3B82F6;
    padding-left: 5px;
}

/* Informações de Contato Footer */
.contact-info-footer .contact-item-footer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-info-footer .contact-item-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-footer .contact-item-footer a:hover {
    color: #3B82F6;
}

.contact-info-footer .contact-item-footer i {
    color: #3B82F6;
    width: 16px;
}

/* Horários */
.schedule-info {
    margin-top: 0.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.schedule-day {
    font-weight: 500;
}

.schedule-time {
    color: #3B82F6;
    font-weight: 600;
}

/* Redes Sociais */
.social-section {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #3B82F6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Newsletter */
.newsletter-section {
    margin-bottom: 1rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form .input-group {
    max-width: 300px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    color: #ffffff;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
    padding: 0.5rem 1rem;
}

/* Área de Cobertura Footer */
.coverage-footer {
    text-align: center;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.coverage-city {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.coverage-city:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Copyright e Links Legais */
.copyright p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.copyright small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #3B82F6;
}

/* Bordas do Footer */
.border-top {
    border-top: 1px solid rgba(59, 130, 246, 0.2) !important;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .coverage-cities {
        gap: 0.5rem;
    }
    
    .coverage-city {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.2rem;
    }
    
    .newsletter-form .input-group {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .coverage-cities {
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-city {
        width: fit-content;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Animações de entrada - Estilo Clean */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Classes de animação */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Responsividade - Estilo Clean */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 90px;
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .backup-option, .visit-option {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .price-tag {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }
    
    .backup-price, .visit-price {
        font-size: 0.9rem;
    }
}

/* Efeitos de hover para links */
a {
    transition: all 0.3s ease;
}

/* Loading spinner para formulário */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Toast notifications - Estilo Clean */
.toast {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(11, 26, 47, 0.15);
    border: none;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Foco visível para navegação por teclado */
.navbar-nav .nav-link:focus,
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

/* Melhorias de contraste */
.text-muted {
    color: #6B7280 !important;
}

/* Efeitos de profundidade - Estilo Clean */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(11, 26, 47, 0.1) !important;
}

/* Gradientes personalizados - Estilo TeamViewer */
.bg-primary {
    background: linear-gradient(45deg, #3B82F6, #1E3A8A) !important;
}

/* Efeitos de glassmorphism - Estilo Clean */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Seção de preços - Estilo Clean */
.pricing-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

/* Badges e tags - Estilo Clean */
.badge-primary {
    background: linear-gradient(45deg, #3B82F6, #1E3A8A);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

.badge-warning {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Efeitos de partículas - Estilo Clean */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: particle-float 25s infinite linear;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
} 

/* Página de Formatação - Estilos Específicos */

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
}

.breadcrumb-item.active {
    color: #ffffff !important;
}

/* Price Highlight */
.price-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-tag-large {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    margin-bottom: 0.5rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
	color:#fff;
}

/* Service Included Cards */
.service-included-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    height: 100%;
}

.service-included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #3B82F6;
}

.service-included-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-included-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-included-card:hover .service-included-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

/* Process Steps */
.process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #3B82F6;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: #ffffff;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #0B1A2F;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.accordion-button:hover {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: #ffffff;
}

.accordion-body {
    padding: 1.5rem;
    background: #F8FAFC;
    color: #0B1A2F;
    line-height: 1.6;
}

/* Formatação Form */
#formatacaoForm .form-control,
#formatacaoForm .form-select {
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

#formatacaoForm .form-control:focus,
#formatacaoForm .form-select:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#formatacaoForm .form-label {
    font-weight: 600;
    color: #0B1A2F;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.bg-primary {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A) !important;
}

/* Responsividade para Formatação */
@media (max-width: 768px) {
    .price-tag-large {
        padding: 0.8rem 1.5rem;
        font-size: 1.5rem;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .service-included-card,
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .service-included-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-included-icon i {
        font-size: 1.5rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .price-tag-large {
        padding: 0.6rem 1.2rem;
        font-size: 1.3rem;
    }
    
    .price-large {
        font-size: 1.8rem;
    }
    
    .service-included-card,
    .process-step {
        padding: 1.2rem 0.8rem;
    }
    
    .service-included-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-included-icon i {
        font-size: 1.2rem;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
} 

/* Tabela de Preços */
.pricing-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.pricing-table {
    margin: 0;
    border: none;
}

.pricing-table thead th {
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    color: #ffffff;
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-row {
    border-bottom: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.pricing-row:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 1.5rem 1rem;
    border: none;
    vertical-align: middle;
}

/* Células de Serviço */
.service-cell {
    width: 25%;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon-table {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-name {
    font-weight: 600;
    color: #0B1A2F;
    margin: 0;
    font-size: 1rem;
}

.service-category {
    color: #6B7280;
    font-size: 0.85rem;
}

/* Células de Preço */
.price-cell {
    width: 20%;
    text-align: center;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
}

.price-note {
    color: #6B7280;
    font-size: 0.8rem;
}

.price-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.price-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0.8rem;
    background: #F1F5F9;
    border-radius: 6px;
    font-size: 0.9rem;
}

.tier-size {
    color: #0B1A2F;
    font-weight: 500;
}

.tier-price {
    color: #3B82F6;
    font-weight: 600;
}

/* Células de Descrição */
.description-cell {
    width: 40%;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

.service-features i {
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: #6B7280;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

.price-note {
    font-size: 0.8rem;
    color: #9CA3AF;
    text-align: center;
    font-style: italic;
}

.service-action {
    margin-top: auto;
}

.service-action .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.service-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1F2937, #374151);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>');
    background-size: 30px 30px;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsividade para serviços profissionais */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.25rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
} 

/* Estilos para a seção de Processo Detalhado */
.process-detail-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(11, 26, 47, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E3A8A);
    border-radius: 20px 20px 0 0;
}

.process-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 26, 47, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.process-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.process-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.process-detail-card:hover .process-detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.process-detail-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.process-detail-title h4 {
    color: #0B1A2F;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.process-detail-title .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.process-detail-content {
    color: #4B5563;
}

.process-detail-content .lead {
    color: #1F2937;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.checklist-item i {
    color: #10B981;
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.checklist-item span {
    line-height: 1.5;
    font-size: 0.95rem;
}

.checklist-item strong {
    color: #0B1A2F;
    font-weight: 600;
}

.process-detail-content .alert {
    border: none;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.process-detail-content .alert-info {
    background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
    color: #1E40AF;
}

.process-detail-content .alert-success {
    background: linear-gradient(135deg, #D1FAE5, #ECFDF5);
    color: #065F46;
}

.process-detail-content .alert-warning {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
    color: #92400E;
}

.process-detail-content .alert-primary {
    background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
    color: #1E40AF;
}

.process-summary {
    margin-top: 3rem;
}

.process-summary .card {
    border-radius: 20px;
    overflow: hidden;
}

.process-summary .card-body {
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.timeline-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.timeline-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0B1A2F;
    text-align: center;
}

.timeline-arrow {
    color: #3B82F6;
    font-size: 1.2rem;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { 
        transform: translateX(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(5px);
        opacity: 1;
    }
}

/* Responsividade para a seção de processo detalhado */
@media (max-width: 992px) {
    .process-detail-card {
        padding: 1.5rem;
    }
    
    .process-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-detail-icon {
        align-self: center;
    }
    
    .process-timeline {
        gap: 0.5rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-icon i {
        font-size: 1rem;
    }
    
    .timeline-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .process-detail-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .process-detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .process-detail-icon i {
        font-size: 1.5rem;
    }
    
    .process-detail-title h4 {
        font-size: 1.1rem;
    }
    
    .checklist-item {
        padding: 0.25rem;
    }
    
    .checklist-item span {
        font-size: 0.9rem;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
    
    .timeline-arrow i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .process-detail-card {
        padding: 1rem;
    }
    
    .process-detail-icon {
        width: 45px;
        height: 45px;
    }
    
    .process-detail-icon i {
        font-size: 1.3rem;
    }
    
    .process-detail-title h4 {
        font-size: 1rem;
    }
    
    .process-detail-title .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .checklist-item {
        gap: 0.5rem;
    }
    
    .checklist-item i {
        font-size: 1rem;
    }
    
    .checklist-item span {
        font-size: 0.85rem;
    }
    
    .process-detail-content .alert {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
    }
    
    .timeline-icon i {
        font-size: 0.9rem;
    }
    
    .timeline-item span {
        font-size: 0.75rem;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 28px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
} 