/* Reset e Variáveis - Design Profissional */
:root {
    /* Cores Principais - Mantendo Paleta Original */
    --color-orange: #FF6B35;
    --color-pink: #FF1744;
    --color-purple: #9C27B0;
    --color-cyan: #00D9FF;
    --color-yellow: #FFD700;
    
    /* Cores de Fundo - Profissionais */
    --color-dark: #0a0a0f;
    --color-dark-secondary: #1a1a2e;
    --color-dark-tertiary: #252540;
    --color-light: #ffffff;
    --color-gray: #94A3B8;
    --color-gray-light: #e0e0e5;
    --color-ink: #050509;
    
    /* Glassmorphism Profissional */
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 10, 18, 0.65);
    --glass-bg-light: rgba(15, 15, 25, 0.5);
    
    /* Sombras Profissionais - Mais Sutis */
    --shadow-strong: 0 20px 60px rgba(5, 5, 9, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.25);
    --shadow-glow-purple: 0 0 20px rgba(156, 39, 176, 0.25);
    
    /* Gradientes - Mantendo Paleta Original */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF1744 50%, #9C27B0 100%);
    --gradient-secondary: linear-gradient(135deg, #9C27B0 0%, #FF1744 50%, #FF6B35 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #9C27B0 100%);
    --gradient-glow: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.2), transparent 60%),
                     radial-gradient(circle at 80% 0%, rgba(156, 39, 176, 0.18), transparent 60%);
    
    /* Sombras com Cores - Mais Sutis */
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.12);
    --shadow-md: 0 4px 16px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.18);
    --shadow-xl: 0 16px 48px rgba(255, 107, 53, 0.2);
    
    /* Animações - Mais Discretas */
    --reveal-distance: 30px;
    --reveal-duration: 0.8s;
    --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --reveal-delay: 0s;
    --floating-speed: 25s;
    
    /* Transições Profissionais */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Bordas - Mais Conservadoras */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-ink);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(1800px 1000px at -5% -5%, rgba(255, 107, 53, 0.15), transparent 60%),
        radial-gradient(1600px 900px at 105% 5%, rgba(156, 39, 176, 0.12), transparent 60%),
        radial-gradient(1200px 800px at 50% 85%, rgba(255, 107, 53, 0.1), transparent 65%),
        linear-gradient(135deg, rgba(5, 5, 9, 0.96) 0%, rgba(10, 10, 18, 0.98) 50%, rgba(5, 5, 9, 0.96) 100%);
    animation: bgShift 30s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: url('data:image/svg+xml,%3Csvg width="304" height="304" viewBox="0 0 304 304" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="p" width="60" height="60" patternUnits="userSpaceOnUse"%3E%3Cpath d="M0 60 60 0ZM60 60l-60-60" fill="none" stroke="rgba(255,255,255,0.015)" stroke-width="1"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100%25" height="100%25" fill="url(%23p)" /%3E%3C/svg%3E');
    opacity: 0.7;
}

@keyframes rotateMesh { to { transform: rotate(1turn) } }

@keyframes bgShift {
    0% { 
        transform: translate3d(0, 0, 0) scale(1); 
        filter: brightness(1);
    }
    100% { 
        transform: translate3d(0, -10px, 0) scale(1.01); 
        filter: brightness(1.02);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-glow);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.glass-panel::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-lg) - 1px);
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(560px 460px at 5% 25%, rgba(255, 143, 107, 0.25), rgba(255, 143, 107, 0.0) 65%),
        radial-gradient(460px 420px at 90% 60%, rgba(108, 82, 255, 0.2), rgba(108, 82, 255, 0.0) 65%),
        radial-gradient(360px 260px at 60% 20%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.0) 60%);
    animation: sectionBubbles 26s ease-in-out infinite alternate;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

@keyframes sectionBubbles {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(0, -10px, 0); }
}

@keyframes revealFadeUp {
    0% {
        opacity: 0;
        transform: translate3d(0, var(--reveal-distance), 0) scale(0.96);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes revealFadeRight {
    0% {
        opacity: 0;
        transform: translate3d(-var(--reveal-distance), 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes revealFadeLeft {
    0% {
        opacity: 0;
        transform: translate3d(var(--reveal-distance), 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes revealZoom {
    0% {
        opacity: 0;
        transform: scale(0.94);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatSoft {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(18px, -14px, 0) scale(1.04); }
    100% { transform: translate3d(-18px, 12px, 0) scale(0.97); }
}

.reveal {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0);
    transition-property: opacity, transform, filter;
    transition-duration: var(--reveal-duration);
    transition-timing-function: var(--reveal-ease);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
    filter: blur(4px);
}

.reveal[data-animate="fade-right"] {
    transform: translate3d(-var(--reveal-distance), 0, 0);
}

.reveal[data-animate="fade-left"] {
    transform: translate3d(var(--reveal-distance), 0, 0);
}

.reveal[data-animate="zoom-in"] {
    transform: scale(0.94);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.reveal.is-visible[data-animate="zoom-in"] {
    transform: scale(1);
}

.reveal.is-visible[data-animate="fade-right"],
.reveal.is-visible[data-animate="fade-left"] {
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        filter: none !important;
    }
    body::before,
    .hero::before,
    .gradient-orb,
    .servico-card,
    .projeto-card {
        animation: none !important;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 9, 0.88);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(3, 3, 6, 0.4);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    transition: var(--transition);
    display: block;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-fallback {
    display: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-link {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-orange);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding-top: 140px;
    padding-bottom: 5rem;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
      radial-gradient(600px 500px at 15% 30%, rgba(255, 145, 110, 0.4), rgba(255, 145, 110, 0.0) 60%),
      radial-gradient(760px 520px at 85% 20%, rgba(165, 85, 255, 0.35), rgba(165, 85, 255, 0.0) 62%),
      radial-gradient(420px 320px at 55% 75%, rgba(255, 230, 125, 0.25), rgba(255, 230, 125, 0.0) 60%);
    animation: heroBubbles 22s ease-in-out infinite alternate;
}

@keyframes heroBubbles {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(0, -12px, 0); }
}

@keyframes heroFloatMobile {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, 6px, 0); }
    100% { transform: translate3d(0, -4px, 0); }
}

.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(10,10,15,0) 0%, rgba(10,10,15,0.8) 60%, rgba(10,10,15,1) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatSoft var(--floating-speed) ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--color-orange);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-pink);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--color-purple);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: var(--color-orange);
    top: 20%;
    right: 10%;
    animation-delay: 7s;
    opacity: 0.2;
}


.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    padding: 4rem 3.5rem;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
    top: -80px;
    right: -60px;
    filter: blur(30px);
    opacity: 0.6;
}

.hero-content::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-xl) - 1px);
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    padding: 1.125rem 2.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-light);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active { 
    transform: translateY(0);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-md) - 1px);
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--color-light);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background: transparent;
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.btn-secondary:hover::before {
    opacity: 0.1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
    top: -60px;
    right: 10%;
    pointer-events: none;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.6;
    font-weight: 400;
}

.panel-block {
    background: linear-gradient(var(--color-dark-secondary), var(--color-dark-secondary)) padding-box,
                var(--gradient-primary) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 2.5rem;
}

.panel-block h2 { font-size: 1.75rem; margin-bottom: 1.25rem }
.panel-block h3 { font-size: 1.5rem; margin: 1.5rem 0 1rem }
.panel-block p { color: var(--color-gray); line-height: 1.8 }
.panel-block ul { color: var(--color-gray); line-height: 2; padding-left: 1.5rem }

.img-responsive { width: 100%; display: block; object-fit: cover; border-radius: 12px }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important }
}

*::-webkit-scrollbar { width: 10px }
*::-webkit-scrollbar-track { background: rgba(255,255,255,0.06) }
*::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #FF6B35, #9C27B0); border-radius: 999px }

/* Serviços */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Animação de dedo para indicar swipe */
.swipe-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 15;
    opacity: 0;
    pointer-events: none;
    animation: swipeHint 4s ease-in-out infinite;
}

.swipe-indicator .finger-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swipe-indicator .finger-icon svg {
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 2px 10px rgba(255, 107, 53, 0.5));
    animation: swipeMove 2s ease-in-out infinite;
}

.swipe-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(156, 39, 176, 0.2));
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes swipeHint {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px) scale(0.9);
    }
    15% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.9);
    }
}

@keyframes swipeMove {
    0% {
        transform: translateX(-50px);
        opacity: 0.4;
    }
    15% {
        transform: translateX(-25px);
        opacity: 0.7;
    }
    30% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(25px);
        opacity: 1;
    }
    65% {
        transform: translateX(50px);
        opacity: 0.7;
    }
    80% {
        transform: translateX(25px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-50px);
        opacity: 0.4;
    }
}

/* Mostrar apenas em mobile/tablet */
@media (max-width: 1024px) {
    .swipe-indicator {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .swipe-indicator {
        display: none;
    }
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    will-change: transform;
    align-items: stretch;
}

.carousel-track .servico-card,
.carousel-track .projeto-card {
    flex-shrink: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
    color: var(--color-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.carousel-btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    pointer-events: none;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: none;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.25);
    border: 1px solid rgba(255, 107, 53, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gradient-primary);
    width: 36px;
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(255, 107, 53, 0.35);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: transparent;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none;
    background-image: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
    overflow: visible;
    z-index: 0;
}

.servico-card::before {
    display: none;
}

.servico-card::after {
    display: none;
}

.servico-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.3);
}

.servico-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.servico-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-light);
}

.servico-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-light);
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.servico-card p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.servico-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.servico-features li {
    padding: 0.4rem 0;
    color: var(--color-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.servico-features li::before {
    content: '✓';
    color: var(--color-orange);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.875rem;
    line-height: 1;
}

/* Projetos */
.projetos {
    background: transparent;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.projeto-card {
    background: transparent;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none;
    background-image: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
    z-index: 0;
}

.projeto-card::before {
    display: none;
}

.projeto-card::after {
    display: none;
}

.projeto-card:hover {
    transform: translateY(-6px);
    border-color: rgba(156, 39, 176, 0.3);
}

.projeto-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.projeto-demo-frame {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 18px 40px rgba(0,0,0,0.45);
}

.projeto-iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform-origin: top left;
    background: #111;
}

.projeto-iframe.preview {
    pointer-events: none;
}

.projeto-placeholder {
    width: 80px;
    height: 80px;
    color: var(--color-light);
    opacity: 0.8;
}

.projeto-placeholder svg {
    width: 100%;
    height: 100%;
}

.projeto-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.projeto-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.projeto-content p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.projeto-content .btn {
    margin-top: auto;
    align-self: center;
    min-height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.projeto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-orange);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-fast);
}

.tag:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Orçamento */
.orcamento {
    background: transparent;
}

.orcamento-context {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.context-card {
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.context-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
    pointer-events: none;
}

.context-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    background: rgba(255, 107, 53, 0.1);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    margin-bottom: 0.75rem;
}

.context-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.context-step {
    background: rgba(12, 12, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.context-step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.2), transparent 60%);
    pointer-events: none;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.context-step h4 {
    font-size: 1rem;
}

.orcamento-container {
    max-width: 800px;
    margin: 0 auto;
}

.orcamento-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
}

.orcamento-main { min-width: 0 }

.orcamento-summary { position: relative }

.summary-card {
    position: sticky;
    top: 110px;
    background: rgba(8, 8, 18, 0.7);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(20px);
}

.summary-help {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .orcamento-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .orcamento-context { grid-template-columns: 1fr; }
  .context-steps { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}

.orcamento-progress {
    margin-bottom: 3rem;
}

.step-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.option-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    min-height: 230px;
}

.option-card input {
    align-self: flex-start;
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.15);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.option-tag {
    font-size: 0.85rem;
    color: var(--color-gray);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.0)) padding-box, var(--gradient-primary) border-box;
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 12.5%;
    background-size: 200% 100%;
    animation: progressGlow 6s linear infinite;
}

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

.progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.06) 0px,
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px,
        transparent calc(100% / 9)
    );
}

.progress-text {
    text-align: center;
    display: block;
    color: var(--color-gray);
    font-size: 0.875rem;
}

.orcamento-form {
    background: rgba(10, 10, 20, 0.65);
    padding: 3.25rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-strong);
    background-image:
      radial-gradient(120% 120% at 30% 15%, rgba(255,255,255,0.08), rgba(255,255,255,0) 40%),
      radial-gradient(160% 160% at 90% 10%, rgba(255, 174, 152, 0.12), rgba(255,174,152,0) 40%);
    backdrop-filter: blur(22px);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-step h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(8, 8, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(14px);
    position: relative;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: var(--color-orange);
    background: rgba(255, 107, 53, 0.06);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-orange);
}

.radio-option.active,
.checkbox-option.active {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 25px 50px rgba(0,0,0,0.55);
    background: linear-gradient(180deg, rgba(8,8,18,0.85), rgba(8,8,18,0.65)) padding-box,
                radial-gradient(120% 120% at 10% 0%, rgba(255, 174, 152, 0.25), rgba(255,174,152,0) 45%) border-box;
}

.radio-option.active .radio-content strong,
.checkbox-option.active .radio-content strong { color: #fff }
.radio-option.active .radio-content span,
.checkbox-option.active .radio-content span { color: #cfcfd6 }

.radio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.radio-content strong {
    font-size: 1.125rem;
    color: var(--color-light);
}

.radio-content span {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.category-variations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-box {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(10, 10, 15, 0.65);
    padding: 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.category-box[aria-hidden="true"] {
    display: none;
}

.category-box-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-box-header small {
    color: var(--color-gray);
}

.categoria-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-light);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.35rem;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.choice-grid .radio-option {
    height: 100%;
}

.checkbox-option span {
    color: var(--color-light);
    font-size: 1rem;
}

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

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-dark);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    color: var(--color-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.resumo-container {
    background: linear-gradient(var(--color-dark), var(--color-dark)) padding-box,
                var(--gradient-primary) border-box;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    margin-bottom: 2rem;
}

.resumo-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

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

.resumo-item strong {
    color: var(--color-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.resumo-item span {
    color: var(--color-gray);
}

.orcamento-valor {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.valor-estimado {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.valor-label {
    font-size: 1rem;
    opacity: 0.9;
}

.valor-numero {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.valor-nota {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.final-cta {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.final-cta p {
    color: var(--color-gray);
}

.final-cta small {
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 600px) {
    .option-grid,
    .choice-grid {
        grid-template-columns: 1fr;
    }
    .option-card {
        min-height: auto;
    }
    .context-steps {
        grid-template-columns: 1fr;
    }
    .final-cta {
        padding: 1.5rem;
    }
}

/* Feedbacks */
.feedback {
    background: transparent;
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feedback-form {
    background: var(--color-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.feedback-form h3 {
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
}

.star {
    background: transparent;
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--color-orange);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.star.active,
.star:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--color-orange);
}

.feedback-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feedback-card {
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    background-image:
      radial-gradient(120% 120% at 30% 15%, rgba(255,255,255,0.1), rgba(255,255,255,0) 40%);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feedback-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.feedback-id { display: flex; align-items: center; gap: 0.75rem }
.feedback-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--gradient-primary); color: var(--color-light); font-weight: 700 }
.feedback-role { color: var(--color-gray); font-size: 0.9rem }

.feedback-name {
    font-weight: 600;
}

.feedback-stars {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feedback-message {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(6, 6, 12, 0.95), rgba(5, 5, 9, 1));
    padding: 4.5rem 0 2.5rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem }
.footer-section h4 { font-size: 1.125rem; color: var(--color-light); margin-bottom: 1rem }
.footer-section ul { list-style: none; padding: 0; margin: 0 }
.footer-section ul li { margin: 0.5rem 0 }
.footer-section a { color: var(--color-light); text-decoration: none; transition: color .2s ease }
.footer-section a:hover { color: #ffffff }
.footer-links ul, .footer-contact ul { list-style: none; padding: 0; margin: 0 }
.footer-links li, .footer-contact li { margin: .5rem 0 }
.footer-links a, .footer-contact a { color: var(--color-light); text-decoration: none; transition: color .2s ease }
.footer-links a:hover, .footer-contact a:hover { color: #ffffff }
.logo-container { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem }
.logo-text { letter-spacing: 2px; font-weight: 700 }

.footer-title { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.footer-brand p { color: var(--color-gray) }
.social { display: flex; gap: .75rem; margin-top: 1rem }
.social a { width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; background: linear-gradient(var(--color-dark), var(--color-dark)) padding-box, var(--gradient-primary) border-box; border: 1px solid transparent; color: var(--color-light); transition: transform .2s ease }
.social a svg { filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.35)) }
.social a:hover { transform: translateY(-2px) }

.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: .75rem }
.newsletter-form input[type="email"] { background: #121422; border: 2px solid rgba(255, 107, 53, 0.18); border-radius: 14px; padding: .95rem 1rem; color: var(--color-light); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) }
.newsletter-form input[type="email"]::placeholder { color: var(--color-gray) }

.footer-legal { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 107, 53, 0.25); color: var(--color-light) }
.footer-legal a { color: var(--color-light); text-decoration: none }
.footer-legal a:hover { color: #ffffff }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr } .newsletter-form { grid-template-columns: 1fr } }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-light);
}

.footer-section p {
    color: var(--color-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    color: var(--color-gray);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-dark-secondary);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.modal-icon svg {
    width: 50px;
    height: 50px;
}

.modal-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        background: rgba(5, 5, 12, 0.96);
        backdrop-filter: blur(22px);
        width: 100%;
        padding: 2.5rem 1.5rem 3rem;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        border-radius: 0 0 24px 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.05rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .orcamento-form {
        padding: 2rem 1.5rem;
    }

    .form-navigation {
        flex-direction: column;
    }

    .form-navigation .btn {
        width: 100%;
    }

    .valor-numero {
        font-size: 2rem;
    }

    .carousel-wrapper {
        padding: 0;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-track {
        gap: 1rem;
    }

    .carousel-track .servico-card,
    .carousel-track .projeto-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .servico-card,
    .projeto-card {
        padding: 2rem;
    }

    .servico-card h3,
    .projeto-content h3 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        animation: heroFloatMobile 12s ease-in-out infinite alternate;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .servicos-grid,
    .projetos-grid {
        grid-template-columns: 1fr;
    }

    .carousel-wrapper {
        padding: 0;
    }

    .carousel-btn {
        display: none;
    }

    .servico-card,
    .projeto-card {
        padding: 1.5rem;
    }

    .servico-card h3,
    .projeto-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .servico-card p,
    .projeto-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .servico-features li {
        font-size: 0.875rem;
        padding: 0.4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .orcamento-form {
        padding: 1.5rem 1rem;
    }

    .form-step h3 {
        font-size: 1.5rem;
    }

    .radio-option,
    .checkbox-option {
        padding: 1rem;
    }

    .radio-content strong {
        font-size: 1rem;
    }

    .radio-content span {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .feedback-container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .feedback-list { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
    .carousel-wrapper {
        padding: 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}


.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0; background: none }


.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.hint {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin: -0.5rem 0 1rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.35);
    border-radius: 999px;
    color: var(--color-light);
    font-size: 0.85rem;
    transition: var(--transition);
}

.chip:hover { transform: translateY(-1px); box-shadow: 0 0 18px rgba(255, 107, 53, 0.35); }

@media (max-width: 600px) {
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .nav { padding: 1rem; }
    .btn { padding: 0.85rem 1.35rem; }
}
