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

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

:root {
    --primary-color: #0d92c7;
    --primary-dark: #0a7ba8;
    --text-light: #f8f9fa;
    --text-muted: #e9ecef;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

/* Navigation Styles */
.navbar-custom {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
}

.navbar-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

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

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

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 82%) 0%, rgb(0 0 0 / 89%) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 0.5s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .text-primary {
    color: var(--primary-color) !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-container {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-cta-btn {
    background: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 146, 199, 0.4);
}

.hero-cta-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);
    transition: left 0.5s ease;
}

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

.hero-trust-badge {
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 1.4s forwards;
    font-weight: 500;
}

.hero-trust-badge i {
    color: var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .navbar-custom {
        padding: 0.5rem 0;
    }
    
    .navbar-custom.scrolled {
        padding: 0.3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-trust-badge {
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Video Background - Versão Corrigida */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    object-position: center;
    z-index: 1;
    /* Forçar exibição do vídeo */
    display: block !important;
    opacity: 1;
}

/* Fallback sempre visível até o vídeo carregar */
.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
    /* Adicionar padrão visual mais interessante */
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(13, 146, 199, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 146, 199, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
}

/* Adicionar efeito de loading para o vídeo */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(13, 146, 199, 0.3);
    border-top: 3px solid #0d92c7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-video-container.video-loaded::before {
    opacity: 0;
    pointer-events: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



/* Solutions Section Styles */
.solutions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(13, 146, 199, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(13, 146, 199, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Solution Cards */
.solution-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 146, 199, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #17a2b8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(13, 146, 199, 0.15);
    border-color: var(--primary-color);
}

/* Solution Icon */
.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #17a2b8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.solution-card:hover .solution-icon::before {
    transform: translateX(100%);
}

.solution-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: transform 0.4s ease;
}

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

/* Solution Content */
.solution-content {
    flex: 1;
}

.solution-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-title {
    color: var(--primary-color);
}

.solution-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Solution Link */
.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.solution-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.solution-link:hover::after {
    width: 100%;
}

.solution-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(3px);
}

/* Solutions CTA */
.solutions-cta {
    padding: 2rem;
    background: rgba(13, 146, 199, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(13, 146, 199, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.cta-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 146, 199, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-card {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-cta {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .solution-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .solution-icon i {
        font-size: 1.8rem;
    }
    
    .solution-title {
        font-size: 1.3rem;
    }
    
    .solutions-cta {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.9rem;
    }
    
    .solution-card {
        padding: 1.8rem 1.2rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon i {
        font-size: 1.6rem;
    }
    
    .solution-title {
        font-size: 1.2rem;
    }
    
    .solution-description {
        font-size: 0.95rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

:root {
    --primary-color: #0d92c7;
    --primary-dark: #0a7ba8;
}




/* Results Section Styles */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(13, 146, 199, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(13, 146, 199, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.results-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.results-section .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Result Cards */
.result-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(13, 146, 199, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    text-align: center;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #17a2b8, var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover::before {
    opacity: 1;
}

.result-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 146, 199, 0.15);
    border-color: var(--primary-color);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Result Icon */
.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #17a2b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.result-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover .result-icon::after {
    opacity: 1;
}

.result-icon i {
    font-size: 2.2rem;
    color: #ffffff;
    transition: transform 0.4s ease;
    z-index: 1;
    position: relative;
}

.result-card:hover .result-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(13, 146, 199, 0.3);
}

.result-card:hover .result-icon i {
    transform: scale(1.1);
}

/* Result Metric */
.result-metric {
    margin-bottom: 1rem;
    position: relative;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    display: inline-block;
    transition: all 0.3s ease;
}

.metric-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0.2rem;
}

.metric-trend {
    position: absolute;
    top: 17px;
    right: 80px;
    background: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.result-card[data-result="1"] .metric-trend {
    background: #dc3545;
}

.result-card[data-result="1"] .metric-trend i {
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Result Content */
.result-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.result-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.result-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Result Badge */
.result-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(13, 146, 199, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.result-card:hover .result-badge {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Results CTA */
.results-cta {
    padding: 2rem;
    background: rgba(13, 146, 199, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(13, 146, 199, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #2c3e50 !important;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.results-cta .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-cta .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13, 146, 199, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-card {
    animation: zoomIn 0.8s ease forwards;
}

.animate-cta {
    animation: fadeInUp 0.8s ease forwards;
}

/* Counter Animation */
.counting {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-section {
        padding: 80px 0;
    }
    
    .results-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .results-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .result-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .result-icon i {
        font-size: 2rem;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .metric-symbol {
        font-size: 2rem;
    }
    
    .result-title {
        font-size: 1.2rem;
    }
    
    .results-cta {
        padding: 1.5rem;
    }
    
    .metric-trend {
        right: -25px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .results-section .section-title {
        font-size: 1.9rem;
    }
    
    .result-card {
        padding: 1.8rem 1.2rem;
    }
    
    .result-icon {
        width: 60px;
        height: 60px;
    }
    
    .result-icon i {
        font-size: 1.8rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .metric-symbol {
        font-size: 1.8rem;
    }
    
    .result-description {
        font-size: 0.95rem;
    }
    
    .result-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

:root {
    --primary-color: #0d92c7;
    --primary-dark: #0a7ba8;
}




/* CTA Final Section Styles */
.cta-final-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a7ba8 50%, #085d7a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Overlay */
.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

/* Elementos Decorativos Flutuantes */
.cta-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.element-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

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

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
}

/* CTA Title */
.cta-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease 0.3s forwards;
}

.highlight-text {
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* CTA Subtitle */
.cta-subtitle2 {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 1s ease 0.6s forwards;
}

/* CTA Button */
.cta-button-container {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 1s ease 0.9s forwards;
}

.btn-cta-primary {
    background: #ffffff;
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    min-width: 350px;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 146, 199, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary:hover .btn-glow {
    left: 100%;
}

/* Support Text */
.cta-support-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 1s ease 1.2s forwards;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 1s ease 1.5s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    animation: slideUpFade 1s ease 2s forwards;
    z-index: 100;
    cursor: pointer;
}

.btn-scroll-top {
    width: 50px;
    height: 50px;
    background: rgb(17 152 192);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-scroll-top:hover {
    background: rgba(17, 151, 192, 0.603);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-final-section {
        padding: 80px 0;
        min-height: 90vh;
    }
    
    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 280px;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-cta-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: 250px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .trust-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Utility Classes */
:root {
    --primary-color: #0d92c7;
    --primary-dark: #0a7ba8;
}

/* Efeitos especiais para interação */
.cta-content:hover .floating-element {
    animation-duration: 4s;
}

/* Melhorias de acessibilidade */
.btn-cta-primary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.btn-scroll-top:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Estados de loading */
.cta-content > * {
    opacity: 0;
    transform: translateY(40px);
}

.cta-content.loaded > * {
    animation-play-state: running;
}



/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #0a2233 0%, #0d1b2a 50%, #1a1a2e 100%);
    color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(13, 146, 199, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 146, 199, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Main Footer */
.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #17a2b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: brandPulse 3s ease-in-out infinite;
}

@keyframes brandPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(13, 146, 199, 0.4); }
}

.brand-highlight {
    color: var(--primary-color);
    position: relative;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8c5d1;
    margin-bottom: 2rem;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(13, 146, 199, 0.1);
    border: 1px solid rgba(13, 146, 199, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #b8c5d1;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(13, 146, 199, 0.2);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.badge-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Footer Navigation */
.footer-nav {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: #b8c5d1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-color);
    background: rgba(13, 146, 199, 0.1);
    transform: translateX(5px);
    padding-left: 1rem;
}

.footer-link i {
    font-size: 0.9rem;
    width: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
}

/* Extra Links */
.footer-extra-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.extra-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.extra-link {
    color: #8a9ba8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.extra-link:hover {
    color: var(--primary-color);
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(13, 146, 199, 0.1);
    border-color: rgba(13, 146, 199, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #17a2b8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: #8a9ba8;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Social Media */
.social-media {
    margin-bottom: 2rem;
}

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

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.github {
    background: linear-gradient(135deg, #333333, #1a1a1a);
}

.social-link i {
    color: white;
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.social-link:hover .social-tooltip {
    opacity: 1;
}

/* Newsletter */
.newsletter-signup {
    padding: 1.5rem;
    background: rgba(13, 146, 199, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(13, 146, 199, 0.2);
}

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

.newsletter-description {
    font-size: 0.9rem;
    color: #b8c5d1;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(10px);
}

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

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: none;
    border: none;
}

.btn-newsletter {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright-text {
    margin: 0;
    color: #8a9ba8;
    font-size: 0.9rem;
}

.current-year {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom-links {
    text-align: right;
}

.made-with {
    color: #8a9ba8;
    font-size: 0.9rem;
}

.heart-icon {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #17a2b8);
    width: 0%;
    transition: width 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .brand-name {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 1rem;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 1.6rem;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .newsletter-signup {
        padding: 1rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-input {
        border-radius: 15px 15px 0 0;
        margin-bottom: 0;
    }
    
    .btn-newsletter {
        border-radius: 0 0 15px 15px;
        padding: 1rem;
    }
}

/* Utility Classes */
:root {
    --primary-color: #0d92c7;
    --primary-dark: #0a7ba8;
}

/* Loading Animation */
.footer-section * {
    animation-fill-mode: both;
}

.footer-section.loaded .footer-brand {
    animation: fadeInUp 0.8s ease 0.2s;
}

.footer-section.loaded .footer-nav {
    animation: fadeInUp 0.8s ease 0.4s;
}

.footer-section.loaded .footer-contact {
    animation: fadeInUp 0.8s ease 0.6s;
}

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

/* Hover Effects Enhancement */
.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.footer-link:hover::before {
    transform: scaleY(1);
}

/* Accessibility Improvements */
.footer-link:focus,
.social-link:focus,
.contact-value:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Performance Optimizations */
.footer-section * {
    will-change: auto;
}

.footer-section:hover * {
    will-change: transform;
}



/* Modal de Contato Styles */
:root {
    --primary-color: #0d92c7;
    --primary-dark: #0a7ba8;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
}

/* Modal Base */
.modal-custom {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.modal-custom .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.modal-custom .modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.btn-close-custom {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.btn-close-custom i {
    font-size: 1rem;
}

/* Seção WhatsApp */
.whatsapp-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem 2rem;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whatsapp-content {
    position: relative;
    z-index: 2;
}

.whatsapp-icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-icon-bg i {
    font-size: 2.5rem;
    color: white;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.whatsapp-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.whatsapp-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Benefícios WhatsApp */
.whatsapp-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.whatsapp-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.whatsapp-benefits i {
    color: #25d366;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Botão WhatsApp */
.btn-whatsapp-modal {
    background: #25d366;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-modal:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp-modal i {
    font-size: 1.3rem;
}

/* Indicador Online */
.online-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    justify-content: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

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

/* Decorações WhatsApp */
.whatsapp-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: -40px;
    animation: float 4s ease-in-out infinite reverse;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 10%;
    animation: float 5s ease-in-out infinite;
}

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

/* Seção do Formulário */
.form-section {
    padding: 2.5rem 2rem;
    background: white;
    height: 100%;
    min-height: 500px;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4b4b4b;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Formulário */
.contact-form {
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: var(--danger-color);
}

.optional {
    color: var(--medium-gray);
    font-weight: 400;
    font-size: 0.85rem;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
}

.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    color: #464646 !important;
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 146, 199, 0.15);
    background: white;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    font-size: 1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.textarea-icon {
    top: 1.2rem;
    transform: none;
}

.form-control-custom:focus + .input-border {
    transform: scaleX(1);
}

.form-control-custom:focus ~ .input-icon {
    color: var(--primary-color);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Contador de caracteres */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 0.3rem;
}

.char-counter.warning {
    color: var(--warning-color);
}

.char-counter.danger {
    color: var(--danger-color);
}

/* Checkbox customizado */
.custom-checkbox {
    position: relative;
}

.custom-checkbox .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    margin-top: 0.1rem;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .form-check-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--medium-gray);
    margin-left: 0.5rem;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Botão de envio */
.form-actions {
    margin-top: 2rem;
}

.btn-submit-form {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-submit-form:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 146, 199, 0.3);
}

.btn-submit-form:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Badge de segurança */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.security-badge i {
    color: var(--success-color);
}

/* Mensagem de sucesso */
.success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.success-content {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successBounce 0.6s ease;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-content h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

/* Validação de formulário */
.form-control-custom.is-invalid {
    border-color: var(--danger-color);
    background: #fff5f5;
}

.form-control-custom.is-valid {
    border-color: var(--success-color);
    background: #f0fff4;
}

.invalid-feedback {
    display: block;
    font-size: 0.85rem;
    color: var(--danger-color);
    margin-top: 0.3rem;
    padding-left: 0.5rem;
}

.valid-feedback {
    display: block;
    font-size: 0.85rem;
    color: var(--success-color);
    margin-top: 0.3rem;
    padding-left: 0.5rem;
}

/* Efeito Ripple */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animações de entrada */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Loading states */
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .modal-lg {
        max-width: 90%;
    }
    
    .whatsapp-section,
    .form-section {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-title {
        font-size: 1.5rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .modal-custom .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .whatsapp-section {
        padding: 1.5rem;
        text-align: center;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .whatsapp-title {
        font-size: 1.4rem;
    }
    
    .whatsapp-description {
        font-size: 0.95rem;
    }
    
    .btn-whatsapp-modal {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-control-custom {
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    }
    
    .input-icon {
        left: 0.9rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .modal-lg {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    .modal-custom {
        border-radius: 15px;
    }
    
    .whatsapp-section,
    .form-section {
        padding: 1.2rem;
    }
    
    .whatsapp-icon-bg {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-icon-bg i {
        font-size: 2rem;
    }
    
    .whatsapp-title {
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .btn-submit-form {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog,
    .whatsapp-icon-bg i,
    .status-dot,
    .decoration-circle,
    .success-icon,
    .btn-ripple {
        animation: none !important;
        transition: none !important;
    }
}

/* Estados de foco para acessibilidade */
.btn-whatsapp-modal:focus,
.btn-submit-form:focus,
.form-control-custom:focus,
.form-check-input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .form-section {
        background: #fff;
        color: #494949;
    }
    
    .form-title {
        color: #4d4d4d;
    }
    
    .form-control-custom {
        background: #fff;
        border-color: #404040;
        color: #e9ecef;
    }
    
    .form-control-custom:focus {
        background: #fff;
    }
    
    .success-message {
        background: #fff;
    }
}

/* Melhorias de performance */
.modal-custom * {
    will-change: auto;
}

.modal-custom.show * {
    will-change: transform, opacity;
}

/* Indicadores visuais adicionais */
.form-control-custom:valid:not(:placeholder-shown) {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 2.94 2.94L7.83 7.09 8.77 8.03 5.24 11.56z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

/* Transições suaves */
.form-control-custom,
.btn-whatsapp-modal,
.btn-submit-form,
.input-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sombras e profundidade */
.modal-custom {
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.whatsapp-section {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-section {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Otimizações finais */
.modal-backdrop.show {
    opacity: 0.7;
    backdrop-filter: blur(3px);
}


/* Botão WhatsApp Fixo no Rodapé */
.whatsapp-fixed-footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.btn-whatsapp-fixed {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    min-width: 60px;
    justify-content: center;
}

.btn-whatsapp-fixed:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.btn-whatsapp-fixed i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-whatsapp-fixed:hover i {
    transform: scale(1.1);
}

.whatsapp-text {
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Animação de pulsação */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.btn-whatsapp-fixed {
    animation: whatsapp-pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-fixed-footer {
        bottom: 15px;
        right: 15px;
    }
    
    .btn-whatsapp-fixed {
        padding: 15px;
        border-radius: 50%;
        min-width: 60px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .btn-whatsapp-fixed i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-fixed-footer {
        bottom: 10px;
        right: 10px;
    }
    
    .btn-whatsapp-fixed {
        width: 55px;
        height: 55px;
        padding: 12px;
    }
    
    .btn-whatsapp-fixed i {
        font-size: 24px;
    }
}

/* Efeito de entrada */
.whatsapp-fixed-footer {
    animation: slideInUp 0.5s ease-out;
}

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

/* Esconder quando scroll para cima (opcional) */
.whatsapp-fixed-footer.hidden {
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}
