:root {
    --primary-color: #F97316;
    --secondary-color: #EA580C;
    --accent-color: #FDBA74;
    --dark-bg: #0A0A0A;
    --light-bg: #1A1A1A;
    --card-bg: #1E1E1E;
    --white: #FFFFFF;
    --dark-gray: #F5F5F5;
    --medium-gray: #9CA3AF;
    --light-gray: #262626;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --gradient-card: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(249, 115, 22, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: var(--dark-bg);
    color: var(--dark-gray);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

.bg-animation::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(0 0 0);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #f87316;
}

.nav-menu a:hover::before {
    width: 100%;
    left: 0;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section com Vídeo Nítido */
.hero {
    padding: 10rem 0 6rem;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1); /* Mantém o vídeo nítido e com cores vivas */
}

/* Remove o overlay escuro do vídeo */
.video-overlay {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
}

.content-wrapper {
    background: rgb(0 0 0 / 0%); /* Fundo escuro translúcido */
    /* backdrop-filter: blur(10px); */ /* Efeito de desfoque no fundo */
    padding: 3rem 2rem;
    /* border-radius: 2rem; */
    /* border: 1px solid rgba(249, 115, 22, 0.3); */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
    /* max-width: 800px; */
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: var(--dark-gray);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4); */
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

/* Remova completamente estas seções do CSS */
.hero-visual,
.hero-graphic,
.graphic-element,
.chart-icon {
    display: none;
}

/* Responsividade para o hero com vídeo nítido */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .content-wrapper {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .content-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}


/* Service Approach Section */
.services-approach {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
}

.services-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.approach-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.approach-tab {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.approach-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.approach-tab.active,
.approach-tab:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.approach-tab.active::before,
.approach-tab:hover::before {
    left: 0;
}

.approach-content {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.approach-content.active {
    display: block;
}

.services-category h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-gray);
}

/* Services Grid Enhanced */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--dark-bg);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.differentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.differential-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.differential-item span {
    color: var(--dark-gray);
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-container {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    animation: orbit 10s linear infinite;
}

.orbit:nth-child(1) {
    width: 200px;
    height: 200px;
}

.orbit:nth-child(2) {
    width: 280px;
    height: 280px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.rocket-container i {
    font-size: 4rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: var(--dark-gray);
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgb(26 26 26);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--medium-gray);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Service Detail Modal */
.service-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes rotateFloat {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .hero-visual,
    .about-visual {
        display: flex;
        justify-content: center;
    }
    
  
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .cta-button {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgb(0 0 0 / 98%);
        backdrop-filter: blur(20px);
        padding: 2rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        gap: 1rem;
    }
    
    .nav-menu.active li {
        width: 100%;
    }
    
    .nav-menu.active a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 0.5rem;
        background: rgb(0 0 0);
    }
    
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .approach-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .approach-tab {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .about-visual {
        display: none;
    }
    
    .differentials {
        gap: 1.25rem;
    }
    
    .contact-container {
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .approach-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .services-category h3 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
        border-radius: 1.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content h2,
    .contact-info h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .about-content p,
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .differential-item {
        gap: 0.75rem;
    }
    
    .differential-item i {
        font-size: 1.1rem;
    }
    
    .differential-item span {
        font-size: 0.95rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .contact-item span {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.75rem 1.25rem;
        border-radius: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
        border-radius: 0.75rem;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 2rem 1.25rem;
        width: 95%;
        max-height: 85vh;
        border-radius: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .modal-content p {
        font-size: 0.95rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
/* Cases Section Enhanced */
.cases {
    padding: 6rem 0;
    background: var(--light-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.case-card {
    background: var(--card-bg);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 1px solid #ff0000; */
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-10px);
    border-color: rgb(13 0 255);
}

.case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.case-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
}

.case-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.case-action-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.case-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.case-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.case-details-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.case-details-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Case Detail Modal */
.case-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.case-modal-content {
    background: var(--card-bg);
    border-radius: 2rem;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.case-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.case-modal-close:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.case-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.case-modal-info {
    padding: 3rem;
}

.case-modal-header {
    margin-bottom: 2rem;
}

.case-modal-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.case-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.case-modal-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.case-modal-details {
    margin-bottom: 2rem;
}

.case-modal-details h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.case-modal-features {
    list-style: none;
    padding: 0;
}

.case-modal-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--medium-gray);
}

.case-modal-features li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.case-modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-modal-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.case-modal-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.case-modal-btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.case-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Responsive Design for Cases */
@media (max-width: 1200px) {
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .case-modal-body {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .case-content {
        padding: 1.5rem;
    }
    
    .case-modal-info {
        padding: 2rem 1.5rem;
    }
    
    .case-modal-title {
        font-size: 1.5rem;
    }
    
    .case-modal-actions {
        flex-direction: column;
    }
    
    .case-modal-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .case-image {
        height: 200px;
    }
    
    .case-placeholder {
        font-size: 2rem;
    }
    
    .case-overlay {
        padding: 1rem;
    }
    
    .case-action-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .case-content {
        padding: 1.25rem;
    }
    
    .case-content h3 {
        font-size: 1.25rem;
    }
    
    .case-content p {
        font-size: 0.95rem;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .metric {
        padding: 0.75rem;
    }
    
    .metric-value {
        font-size: 1.25rem;
    }
}
/* Correção do tamanho das métricas nos cases */
.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.metric {
    text-align: center;
    padding: 0.5rem 0.25rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    min-height: auto;
}

.metric-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 600;
    line-height: 1.2;
}

/* Versão ainda menor se quiser mais compacto */
.case-metrics.compact {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.case-metrics.compact .metric {
    padding: 0.4rem 0.2rem;
}

.case-metrics.compact .metric-value {
    font-size: 1rem;
}

.case-metrics.compact .metric-label {
    font-size: 0.7rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .case-metrics {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }
    
    .metric {
        padding: 0.4rem 0.2rem;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .case-metrics {
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .metric {
        padding: 0.3rem 0.15rem;
    }
    
    .metric-value {
        font-size: 0.9rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
}
/* Garantir que os cases sejam visíveis */
#cases-container {
    min-height: 400px;
}

.case-card {
    opacity: 1 !important;
    visibility: visible !important;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #1daa61;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgb(0 0 0);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* animation: pulse-whatsapp 2s ease-in-out infinite; */
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        left: 1rem;
        font-size: 1.6rem;
    }
}

/* Video Background Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 10, 10, 0.4) 0%, 
        rgba(249, 115, 22, 0.2) 100%
    );
    border-radius: 20px;
}

/* Ajustes responsivos para o vídeo */
@media (max-width: 1024px) {
    .video-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .video-container {
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 250px;
    }
}
/* Correção específica para alinhamento dos botões no mobile */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        text-align: center;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }
    
    /* Garantir que os ícones fiquem alinhados */
    .btn-primary i,
    .btn-secondary i {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    /* Ajuste específico para o container de conteúdo */
    .content-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn-primary, 
    .btn-secondary {
        max-width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .content-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
}

/* Garantir que os botões tenham comportamento consistente */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, 
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Versão alternativa mais compacta se necessário */
.hero-buttons.compact {
    gap: 1rem;
}

.hero-buttons.compact .btn-primary,
.hero-buttons.compact .btn-secondary {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

/* WhatsApp Redirect Button Animation */
.submit-btn.whatsapp-redirect {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

/* Loading state for WhatsApp redirect */
.submit-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}
/* Estilos para os logos dos cases */
.case-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    padding: 2rem;
}

.case-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 1rem;
}

.case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-bg);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

/* Remove o placeholder antigo */
.case-placeholder {
    display: none;
}

/* Ajustes responsivos para os logos */
@media (max-width: 768px) {
    .case-logo-container {
        padding: 1.5rem;
    }
    
    .case-logo {
        max-width: 70%;
        max-height: 70%;
    }
}

@media (max-width: 480px) {
    .case-logo-container {
        padding: 1rem;
    }
    
    .case-logo {
        max-width: 60%;
        max-height: 60%;
    }
}