:root {
    /* Colors Light Mode - Vulpez Palette */
    --primary-color: #EF7B14;
    --secondary-color: #773089;
    --accent-color: #FFF3DA;
    --dark-purple: #773089;
    
    --bg-primary: #ffffff;
    --bg-secondary: #FFF3DA;
    --bg-dark: #1e293b;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    --border-color: #e2e8f0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}

/* Navbar */
.navbar {
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.3rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-logo {
    width: 45px;
    height: 45px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(119, 48, 137, 0.3));
}

.brand-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(249, 115, 22, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.theme-toggle {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF3DA 0%, #ffffff 50%, #FFF3DA 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(239, 123, 20, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 123, 20, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-flow 20s linear infinite;
    z-index: 0;
}

@keyframes grid-flow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-shapes::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 50%, rgba(239, 123, 20, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(119, 48, 137, 0.18) 0%, transparent 50%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-shape 15s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, rgba(14, 165, 233, 0.1) 70%);
    top: -300px;
    right: -200px;
    animation: float-shape-1 25s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.5) 0%, rgba(2, 132, 199, 0.1) 70%);
    bottom: -250px;
    left: -150px;
    animation: float-shape-2 20s ease-in-out infinite;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.7) 0%, rgba(125, 211, 252, 0.2) 70%);
    top: 40%;
    left: 45%;
    animation: float-shape-3 30s ease-in-out infinite;
}

/* Adicionar partículas flutuantes */
.hero-bg-shapes::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(239, 123, 20, 0.9) 2px, transparent 2px),
        radial-gradient(circle, rgba(119, 48, 137, 0.9) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 243, 218, 0.9) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 150px 150px;
    background-position: 0 0, 50px 50px, 100px 100px;
    animation: particle-flow 60s linear infinite;
    opacity: 0.3;
}

/* Removido overlay oceano e keyframes ocean-drifts */

/* Revertendo cores das shapes para a paleta original */
.shape-1 { background: radial-gradient(circle, rgba(239, 123, 20, 0.5) 0%, rgba(239, 123, 20, 0.1) 70%); }
.shape-2 { background: radial-gradient(circle, rgba(119, 48, 137, 0.5) 0%, rgba(119, 48, 137, 0.1) 70%); }
.shape-3 { background: radial-gradient(circle, rgba(255, 243, 218, 0.7) 0%, rgba(255, 243, 218, 0.2) 70%); }

@keyframes particle-flow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

@keyframes float-shape-1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% { 
        transform: translate(50px, -80px) scale(1.1) rotate(90deg);
    }
    50% { 
        transform: translate(-30px, -40px) scale(0.9) rotate(180deg);
    }
    75% { 
        transform: translate(70px, 20px) scale(1.05) rotate(270deg);
    }
}

@keyframes float-shape-2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% { 
        transform: translate(-60px, -50px) scale(1.15) rotate(120deg);
    }
    66% { 
        transform: translate(40px, 30px) scale(0.85) rotate(240deg);
    }
}

@keyframes float-shape-3 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translate(80px, -100px) scale(1.2);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50px, 50px) scale(0.8);
        opacity: 0.3;
    }
    75% { 
        transform: translate(60px, -60px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.15), rgba(119, 48, 137, 0.15));
    border: 2px solid rgba(239, 123, 20, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: slide-in-left 1s ease-out;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.3;
        transform: translateX(100%);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-image {
    position: relative;
    animation: fade-in-up 1s ease-out;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(119, 48, 137, 0.3);
    transform-style: preserve-3d;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.hero-image:hover .hero-image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.2), rgba(119, 48, 137, 0.2));
    mix-blend-mode: overlay;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--bg-primary);
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float-card 4s ease-in-out infinite;
    border: 2px solid rgba(239, 123, 20, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.floating-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: transparent;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(239, 123, 20, 0.3);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -8%;
    animation-delay: -1.5s;
}

.card-3 {
    top: 45%;
    right: -10%;
    animation-delay: -3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

/* Ondas animadas */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    animation: wave-motion 20s ease-in-out infinite;
}

.wave-2 {
    animation: wave-motion 25s ease-in-out infinite reverse;
    opacity: 0.7;
}

.wave-3 {
    animation: wave-motion 30s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes wave-motion {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) scaleY(1.2);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 40px rgba(239, 123, 20, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0%, 100% {
        left: -50%;
    }
    50% {
        left: 150%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(239, 123, 20, 0.5);
    color: white;
}

.pulse-button {
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(239, 123, 20, 0.4);
    }
    50% {
        box-shadow: 0 15px 60px rgba(239, 123, 20, 0.6);
    }
}

.btn-outline-primary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Sections */
.section-padding {
    padding: 6rem 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.15), rgba(119, 48, 137, 0.15));
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(239, 123, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-badge:hover::before {
    opacity: 0.1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.bg-light {
    background-color: var(--bg-secondary);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Service Cards */
.service-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(239, 123, 20, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(239, 123, 20, 0.4);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list i {
    color: var(--primary-color);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

/* Brands Section */
.brands-section {
    background: var(--bg-primary);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Case Filters */
.case-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* Case Cards */
.case-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.95), rgba(119, 48, 137, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-link {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transform: scale(0);
    transition: var(--transition);
}

.case-card:hover .case-link {
    transform: scale(1);
}

.case-content {
    padding: 2rem;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.case-tags .badge {
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.15), rgba(119, 48, 137, 0.15));
    color: var(--primary-color);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid rgba(239, 123, 20, 0.3);
}

.case-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.case-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.case-results {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-item strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.result-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Alinhar nome e empresa na mesma linha ao lado da foto */
.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-info h4 {
    margin: 0;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-shape 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float-shape 25s ease-in-out infinite reverse;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FFF3DA 0%, #ffffff 50%, #FFF3DA 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 123, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-shape 20s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(119, 48, 137, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-shape 25s ease-in-out infinite reverse;
}

.contact-card {
    background: var(--bg-primary);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.05), rgba(119, 48, 137, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(239, 123, 20, 0.4);
    transition: var(--transition);
    position: relative;
}

.contact-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition);
    z-index: -1;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card:hover .contact-card-icon::before {
    opacity: 0.7;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.contact-card:hover h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.1), rgba(119, 48, 137, 0.1));
    border-radius: 50px;
    border: 2px solid rgba(239, 123, 20, 0.2);
    transition: var(--transition);
}

.contact-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(239, 123, 20, 0.4);
}

.contact-link i {
    transition: var(--transition);
}

.contact-link:hover i {
    transform: translateX(5px);
}

.contact-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-social a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.1), rgba(119, 48, 137, 0.1));
    border: 2px solid rgba(239, 123, 20, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(239, 123, 20, 0.4);
}

.contact-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-schedule span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.1), rgba(119, 48, 137, 0.1));
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(239, 123, 20, 0.2);
    transition: var(--transition);
}

.contact-schedule span:hover {
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.2), rgba(119, 48, 137, 0.2));
    transform: scale(1.05);
}

.contact-section .btn-primary {
    box-shadow: 0 15px 50px rgba(239, 123, 20, 0.5);
    animation: pulse-button-strong 2s ease-in-out infinite;
}

@keyframes pulse-button-strong {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(239, 123, 20, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 70px rgba(239, 123, 20, 0.7);
        transform: scale(1.02);
    }
}

.contact-section .btn-primary:hover {
    animation: none;
    transform: translateY(-5px) scale(1.05);
}

/* Responsive ajustes para contato */
@media (max-width: 768px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .contact-social {
        flex-wrap: wrap;
    }
    
    .contact-section .btn {
        width: 100%;
    }
}

/* Contact */
/* Contact Form */
/* Mantido para o modal de agendamento */
.form-control {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand .brand-logo {
    width: 185px;
    height: 160px;
    filter: drop-shadow(0 4px 8px rgba(239, 123, 20, 0.3));
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter .form-control {
    flex: 1;
}

.footer-newsletter .btn {
    width: 50px;
    padding: 0;
}

.footer-newsletter-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(239, 123, 20, 0.5);
}

/* Modal */
.modal-content {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 24px;
}

.modal-header {
    border-bottom: 2px solid var(--border-color);
    padding: 1.5rem 2rem;
}

.modal-title {
    color: var(--text-primary);
    font-weight: 700;
}

.btn-close {
    filter: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

/* Calendar */
.calendar-container {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.btn-calendar-nav {
    width: 35px;
    height: 35px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.btn-calendar-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.calendar-day:hover:not(.disabled) {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.today {
    border-color: var(--primary-color);
}

/* Time Slots */
.time-slot {
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.time-slot:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.partner-logos-section {
    background: radial-gradient(circle at top, rgba(255, 243, 218, 0.4), transparent 55%);
    position: relative;
    overflow: hidden;
}

.partner-logos-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 123, 20, 0.12), rgba(119, 48, 137, 0.12));
    opacity: 0.6;
    pointer-events: none;
}

.partner-logos-section .container {
    position: relative;
    z-index: 1;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 220px;
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    filter: grayscale(30%) saturate(90%);
}

.partner-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
    filter: grayscale(0%) saturate(110%);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.case-item {
    animation: fade-in 0.5s ease-out;
}

/* Hide cases based on filter */
.case-item.hide {
    display: none;
}
