:root {
    --bg-primary: #030507;
    --bg-secondary: #080b10;
    --bg-elevated: #0c1017;
    --accent: #1a3a6e;
    --accent-light: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.15);
    --gold: #c9a227;
    --gold-light: #e3b939;
    --gold-glow: rgba(201, 162, 39, 0.12);
    --text: #eaedf1;
    --text-secondary: #8b929c;
    --text-muted: #555b66;
    --surface: rgba(255, 255, 255, 0.02);
    --surface-hover: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(201, 162, 39, 0.25);
    --shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    position: relative;
    max-width: 100vw;
}

/* Textura sutil e gradientes atmosféricos */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        /* Vinheta escura nas bordas */
        radial-gradient(ellipse 120% 80% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.4) 100%),
        /* Brilho dourado sutil vindo do topo */
        radial-gradient(ellipse 100% 40% at 50% -10%, rgba(201, 162, 39, 0.06) 0%, transparent 70%),
        /* Luz ambiente azul na esquerda */
        radial-gradient(ellipse 40% 60% at -5% 60%, rgba(37, 99, 235, 0.04) 0%, transparent 70%),
        /* Detalhe dourado na direita */
        radial-gradient(ellipse 30% 50% at 105% 30%, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
}

/* Linhas diagonais sutis como textura de tecido premium */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.005) 2px,
        rgba(255, 255, 255, 0.005) 4px
    );
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.gradient-text {
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(3, 5, 7, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, 
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.header.menu-open {
    background: rgba(3, 5, 7, 0.98);
    border-bottom-color: transparent;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    pointer-events: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu li a:hover::after {
    transform: scaleX(1);
}

.nav-menu li a:hover {
    color: var(--text);
    background: transparent;
}

.nav-menu li a.active { color: var(--gold); }
.nav-menu li a.active::after { transform: scaleX(1); }
.nav-menu svg { width: 14px; height: 14px; opacity: 0.6; }

.nav-cta {
    background: transparent !important;
    color: var(--gold) !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    margin-left: 16px;
    border: 1px solid var(--gold) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    color: var(--bg-primary) !important;
    border-color: var(--gold) !important;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.hero {
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 90px 24px 30px;
    position: relative;
    overflow: visible;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        var(--bg-primary);
}

/* Grid com linhas douradas sutis */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

/* Luz ambiente difusa - efeito estático premium */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content { 
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
}

.hero-tag svg { width: 14px; height: 14px; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 440px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats { display: flex; gap: 40px; }

.stat {
    position: relative;
    padding-left: 16px;
}

.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    border-radius: 2px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number::after { color: var(--gold); }
.stat:nth-child(1) .stat-number::after { content: '+'; }
.stat:nth-child(2) .stat-number::after { content: '+'; }
.stat:nth-child(3) .stat-number::after { content: '%'; }

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
    border-radius: 0;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.1);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--border-gold);
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid var(--border-gold);
    border-radius: 0;
    top: 30%;
    left: 60%;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.15;
    pointer-events: none;
}

.hero-decor::after {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid var(--border-gold);
    border-radius: 0;
}

section { padding: 120px 0; }

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

.sobre {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-gold) 50%, transparent 100%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    position: relative;
}

.sobre-content::before {
    content: 'SOBRE';
    position: absolute;
    top: -40px;
    right: 0;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    color: var(--text);
    opacity: 0.02;
    letter-spacing: -4px;
    pointer-events: none;
    white-space: nowrap;
}

.sobre-text .lead {
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 400;
}

.sobre-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.feature-cref {
    align-items: flex-start;
}

.feature-cref .feature-icon {
    margin-top: 2px;
}

.cref-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cref-label {
    line-height: 1.4;
}

.cref-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    padding: 6px 12px;
    background: rgba(201, 162, 39, 0.08);
    border-left: 2px solid var(--gold);
    width: fit-content;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.sobre-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3/4;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.1);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--border-gold);
    z-index: -1;
}

.sobre-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.servicos { 
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.servicos::before {
    content: 'SERVIÇOS';
    position: absolute;
    bottom: 80px;
    left: -5%;
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 400;
    color: var(--text);
    opacity: 0.015;
    letter-spacing: -4px;
    pointer-events: none;
    white-space: nowrap;
}

/* Trust Section */
.servicos-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 48px 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-item svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

.resultados {
    background: var(--bg-primary);
    overflow: hidden;
    overflow: hidden;
    position: relative;
}

.resultados::before {
    content: 'RESULTADOS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(4rem, 18vw, 16rem);
    font-weight: 400;
    color: var(--text);
    opacity: 0.015;
    letter-spacing: -4px;
    pointer-events: none;
    white-space: nowrap;
}

.resultados::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-gold) 50%, transparent 100%);
}

.carousel-wrapper {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.carousel {
    overflow: visible;
    position: relative;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
}

.carousel.dragging {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    align-items: center;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-track.no-transition {
    transition: none !important;
}

.carousel-track.jumping,
.carousel-track.jumping .carousel-slide,
.carousel-track.jumping .carousel-slide *,
.carousel-track.jumping .resultado-card,
.carousel-track.jumping .resultado-card * {
    transition: none !important;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 48%;
    margin: 0 1%;
    opacity: 0.35;
    transform: scale(0.82);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 10;
}

.carousel-slide.adjacent {
    opacity: 0.55;
    transform: scale(0.88);
    z-index: 5;
}

.resultado-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.carousel-slide.active .resultado-card {
    border-color: var(--border-gold);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.resultado-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.resultado-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(3, 5, 7, 0.85) 70%, transparent 100%);
}

.resultado-tempo {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 500;
    border-radius: 0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.resultado-info p {
    color: var(--text);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    opacity: 0.85;
    font-weight: 300;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background: transparent;
    border-color: var(--gold);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    color: var(--text);
    transition: var(--transition);
}

.carousel-nav:hover svg {
    color: var(--gold);
}

.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

.carousel-progress {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.carousel-progress-dot {
    width: 40px;
    height: 2px;
    background: var(--border);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-progress-dot.active {
    background: var(--gold);
    width: 48px;
}
/* ============================
   SEÇÃO DE CONTATO - SPLIT LAYOUT PREMIUM
   ============================ */

.contato {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-gold) 50%, transparent 100%);
}

/* Layout Principal Split */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

/* ===== COLUNA ESQUERDA - CONTEÚDO ===== */
.contato-content {
    display: flex;
    flex-direction: column;
}

.contato-header {
    margin-bottom: 40px;
}

.contato-header .section-tag {
    margin-bottom: 16px;
}

.contato-header .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.contato-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 440px;
}

/* CTA Principal */
.contato-cta-principal {
    margin-bottom: 32px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    margin-bottom: 20px;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
    color: #25D366;
}

.cta-badge span {
    font-size: 0.8rem;
    color: #25D366;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Botão WhatsApp Premium */
.contato-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
}

.contato-whatsapp-btn:hover {
    border-color: #25D366;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.15);
    transform: translateY(-2px);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin-left: 16px;
}

.whatsapp-icon svg {
    width: 36px;
    height: 36px;
    color: #25D366;
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px;
    flex: 1;
}

.whatsapp-content .whatsapp-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
}

.whatsapp-content .whatsapp-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--text);
}

.whatsapp-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    border-left: 1px solid var(--border);
    transition: all 0.3s ease;
}

.whatsapp-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.contato-whatsapp-btn:hover .whatsapp-arrow {
    background: rgba(37, 211, 102, 0.1);
    border-color: transparent;
}

.contato-whatsapp-btn:hover .whatsapp-arrow svg {
    color: #25D366;
    transform: translateX(4px);
}

/* Garantia */
.cta-garantia {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.cta-garantia svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Links Secundários */
.contato-secundario {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contato-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contato-link svg {
    width: 20px;
    height: 20px;
    color: #E1306C;
}

.contato-link:hover {
    color: var(--gold);
}

.contato-divider {
    color: var(--border);
    font-size: 0.7rem;
}

.contato-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contato-location svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

/* ===== COLUNA DIREITA - VISUAL ===== */
.contato-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Depoimento */
.contato-depoimento {
    position: relative;
    padding: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    margin: 0;
}

.depoimento-aspas {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 24px;
}

.contato-depoimento p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.autor-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.autor-info strong {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.autor-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

.autor-stars {
    display: flex;
    gap: 2px;
}

.autor-stars svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

/* Horários */
.contato-horarios {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(201, 162, 39, 0.04);
    border: 1px solid var(--border-gold);
}

.contato-horarios h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 500;
    margin: 0;
}

.contato-horarios p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: right;
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

.contato-horarios p strong {
    color: var(--text);
    font-weight: 500;
}

.footer {
    background: transparent;
    padding: 40px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-gold) 50%, transparent 100%);
}

.footer-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-decoration: none;
    padding: 20px 0;
}

.signature-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

.signature-line:last-child {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.signature-content {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.footer-signature:hover .signature-content {
    opacity: 1;
    transform: scale(1.02);
}

.footer-signature:hover .signature-line {
    background: linear-gradient(90deg, transparent 0%, var(--gold) 100%);
}

.footer-signature:hover .signature-line:last-child {
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.signature-text {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.syncore-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.4s ease;
}

.footer-signature:hover .syncore-logo {
    filter: grayscale(0%) brightness(1);
}

.signature-brand {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 100px 24px 50px;
        overflow: visible;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content { 
        max-width: 100%;
        order: 2;
        min-height: auto;
    }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta { justify-content: center; margin-bottom: 40px; }
    .hero-stats { justify-content: center; }
    .hero-visual { 
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .hero-image-frame { max-width: 280px; }
    
    .sobre-content { grid-template-columns: 1fr; gap: 48px; }
    .sobre-image { order: -1; }
    .image-frame { max-width: 300px; }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto 60px;
    }
    
    .servicos-trust {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 28px;
    }
    
    .trust-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-wrapper { padding: 0; }
    .carousel-slide { 
        width: 60%;
        margin: 0 2%;
    }
    
    /* Contato Responsivo 1024px */
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contato-visual {
        order: -1;
    }
    
    .contato-depoimento {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    
    .header {
        padding: 0;
        height: auto;
    }
    
    .nav {
        align-items: center;
        padding: 4px 12px;
        min-height: 0;
        gap: 0;
    }
    
    .logo {
        display: flex;
        align-items: center;
        line-height: 0;
        padding: 0;
        margin: 0;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
        display: block;
        padding: 0;
        margin: 0;
    }
    
    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
        margin: 0;
    }
    
    .nav-menu {
        margin-top: 0;
    }
    
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
    .nav {
        flex-wrap: wrap;
        position: relative;
    }
    
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }
    
    .menu-overlay {
        display: none;
    }
    
    .nav-menu {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 0;
        max-height: 0;
        overflow: hidden;
        background: transparent;
        flex-direction: column;
        gap: 0;
        padding: 0;
        opacity: 0;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        order: 3;
        border-radius: 0;
        margin-top: 0;
    }
    
    .nav-menu.active {
        height: auto;
        max-height: 500px;
        padding: 16px 0 16px;
        margin-top: 0;
        opacity: 1;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    
    .nav-menu li a {
        justify-content: flex-start;
        padding: 14px 0;
        background: transparent;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .nav-menu li a svg {
        width: 18px;
        height: 18px;
        opacity: 0.5;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a:active {
        background: transparent;
        color: var(--gold);
    }
    
    .nav-menu li a:hover svg,
    .nav-menu li a:active svg {
        opacity: 1;
        color: var(--gold);
    }
    
    .nav-cta {
        margin-left: 0 !important;
        margin-top: 12px;
        border-bottom: none !important;
        padding: 14px 24px !important;
        justify-content: center !important;
        border: 1px solid var(--gold) !important;
    }
    
    .nav-toggle { display: flex; }
    
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .hero { 
        height: auto;
        min-height: auto;
        padding: 100px 20px 40px;
        overflow: visible;
    }
    
    .hero-wrapper {
        gap: 24px;
    }
    
    .hero-visual {
        margin-bottom: 16px;
    }
    
    .hero-image-frame {
        max-width: 200px;
    }
    
    .hero-image {
        object-position: center center;
    }
    
    .hero-content {
        padding-bottom: 20px;
    }
    
    .hero-tag {
        padding: 6px 14px;
        font-size: 0.6rem;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        margin-bottom: 28px;
        gap: 12px;
    }
    
    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.75rem;
    }

    .hero-stats {
        flex-direction: row; 
        gap: 12px;
        justify-content: center;
    }
    
    .stat { 
        padding-left: 10px;
        padding-top: 0;
    }
    
    .stat::before {
        left: 0;
        top: 4px;
        bottom: 4px;
        right: auto;
        width: 2px;
        height: auto;
        margin: 0;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.58rem;
    }
    
    .carousel-wrapper { padding: 0; }
    .carousel-nav { display: none; }
    .carousel-slide { 
        width: 88%;
        margin: 0 1.5%;
        transform: scale(0.92);
        opacity: 0.5;
    }
    .carousel-slide.active {
        transform: scale(1);
        opacity: 1;
    }
    .carousel-slide.adjacent {
        transform: scale(0.92);
        opacity: 0.6;
    }
    .resultado-card img { 
        height: auto;
        aspect-ratio: 1 / 0.85;
        object-fit: cover;
        object-position: center;
    }
    .resultado-info { padding: 20px; }
    
    /* Contato Responsivo 768px */
    .contato-whatsapp-btn {
        flex-direction: column;
    }
    
    .whatsapp-icon {
        margin: 16px 0 0 0;
    }
    
    .whatsapp-content {
        padding: 16px 20px;
        text-align: center;
    }
    
    .whatsapp-arrow {
        width: 100%;
        height: 48px;
        border-left: none;
        border-top: 1px solid var(--border);
    }
    
    .contato-secundario {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .contato-depoimento {
        padding: 28px;
    }
    
    .depoimento-aspas {
        font-size: 4rem;
        top: 12px;
        left: 18px;
    }
    
    .depoimento-autor {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-image-frame { max-width: 260px; }
    
    .carousel-slide { 
        width: 90%;
        margin: 0 1%;
        opacity: 0.5;
    }
    .carousel-slide.active {
        opacity: 1;
    }
    .carousel-slide.adjacent {
        opacity: 0.6;
    }
    .resultado-card img { 
        height: auto;
        aspect-ratio: 1 / 0.85;
        object-fit: cover;
        object-position: center;
    }
    
    /* Contato Responsivo 480px */
    .contato-header .section-title {
        font-size: 1.8rem;
    }
    
    .contato-lead {
        font-size: 0.95rem;
    }
    
    .whatsapp-content .whatsapp-number {
        font-size: 1.2rem;
    }
    
    .cta-garantia {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .contato-secundario {
        flex-direction: column;
        align-items: center;
    }
    
    .contato-divider {
        display: none;
    }
    
    .contato-depoimento p {
        font-size: 1rem;
    }
    
    .contato-horarios {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contato-horarios p {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

/* =============================================
   FLIP CARDS - SERVIÇOS 3D
   ============================================= */

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto 60px auto;
    perspective: 2000px;
}

.servico-card-wrapper {
    height: 580px;
    perspective: 2000px;
}

.servico-card-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.servico-card-wrapper.flipped .servico-card-flip {
    transform: rotateY(180deg);
}

.servico-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
}

.servico-card-front {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.servico-card-front.featured {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, var(--bg-elevated) 100%);
    border-color: var(--border-gold);
    padding-top: 56px;
}

.servico-card-back {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), var(--bg-elevated));
    border: 1px solid var(--border-gold);
    transform: rotateY(180deg);
    padding-top: 56px;
    box-shadow: 
        0 8px 40px rgba(201, 162, 39, 0.12),
        inset 0 1px 0 rgba(201, 162, 39, 0.15);
}

.servico-card-back.featured {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.12), var(--bg-elevated));
    padding-top: 56px;
}

/* Badge */
.servico-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.servico-badge.upgrade-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

/* Header */
.servico-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servico-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.servico-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.servico-card-face h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--white);
}

.servico-tagline {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Description */
.servico-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

/* Benefits */
.servico-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.servico-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.4;
}

.servico-benefits li svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer & CTA */
.servico-footer {
    margin-top: 24px;
}

.servico-cta-btn {
    width: 100%;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Botão "Saber mais" / "Quero começar" - DISCRETO (sem dieta) */
.servico-card-front .servico-cta-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
    font-weight: 400;
    font-size: 0.88rem;
    padding: 12px 24px;
}

.servico-card-front .servico-cta-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
    transform: none;
    box-shadow: none;
}

.servico-card-front .servico-cta-btn svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.servico-card-front .servico-cta-btn:hover svg {
    opacity: 0.8;
    transform: none;
}

/* Botão "Quero o completo" - DISCRETO (verso com dieta) */
.servico-card-back .servico-cta-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.4);
    font-weight: 500;
    box-shadow: none;
}

.servico-card-back .servico-cta-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    transform: none;
    box-shadow: none;
}

.servico-card-back .servico-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.servico-card-back .servico-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Botão TURBINAR COM DIETA - DESTAQUE (mas elegante) */
.servico-upgrade-btn {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: none;
}

.servico-upgrade-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.servico-upgrade-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: none;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.25);
}

.servico-upgrade-btn:hover svg {
    transform: none;
}

/* Back Button (Voltar) */
.servico-back-btn {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 400;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.servico-back-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.servico-back-btn:hover {
    color: var(--white);
}

.servico-back-btn:hover svg {
    transform: translateX(-4px);
}

/* Hover Effects */
.servico-card-wrapper:not(.flipped):hover .servico-card-front {
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 162, 39, 0.25);
}

.servico-card-wrapper.flipped:hover .servico-card-back {
    box-shadow: 
        0 16px 56px rgba(201, 162, 39, 0.2),
        inset 0 1px 0 rgba(201, 162, 39, 0.2);
}

/* Flip Cards Responsive */
@media (max-width: 900px) {
    .servicos-grid {
        gap: 32px;
        max-width: 800px;
    }
    
    .servico-card-wrapper {
        height: 560px;
    }
    
    .servico-card-face {
        padding: 32px 28px;
    }
    
    .servico-card-front.featured,
    .servico-card-back {
        padding-top: 52px;
    }
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 420px;
    }
    
    .servico-card-wrapper {
        height: 620px;
    }
    
    .servico-card-face {
        padding: 28px 24px;
    }
    
    .servico-card-front.featured,
    .servico-card-back {
        padding-top: 50px;
    }
    
    .servico-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .servico-card-face h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .servico-card-wrapper {
        height: 600px;
    }
    
    .servico-card-face {
        padding: 24px 20px;
    }
    
    .servico-card-front.featured,
    .servico-card-back {
        padding-top: 48px;
    }
    
    .servico-icon {
        width: 50px;
        height: 50px;
    }
    
    .servico-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .servico-card-face h3 {
        font-size: 1.3rem;
    }
    
    .servico-desc {
        font-size: 0.88rem;
    }
    
    .servico-benefits li {
        font-size: 0.85rem;
    }
    
    .servico-cta-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .servico-upgrade-btn {
        padding: 12px 20px;
        font-size: 0.82rem;
    }
}
