/* ========================================
   CONFIGURAÇÕES BASE - IDÊNTICAS À PÁGINA SOBRE
   ======================================== */
   *, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul, ol, li, figure {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #C9A848; /* Dourado - EXATAMENTE IGUAL À SOBRE */
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.65);
    --font-main: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   HEADER - PADRONIZADO ENTRE PÁGINAS
   ======================================== */
header {
    background-color: rgba(3, 3, 3, 0.8);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease;
    border-radius: 0;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* Menu Mobile - PADRONIZADO */
nav {
    position: relative;
}

.menu-icon {
    display: block;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 2rem;
}

.menu.menu-visible {
    display: flex;
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: block;
}

.menu-logo {
    margin-bottom: 2rem;
}

.menu-logo img {
    max-width: 120px;
    height: auto;
}

.menu ul {
    list-style: none;
    width: 100%;
    padding: 0;
}

.menu ul li {
    text-align: center;
    margin: 1rem 0;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #C9A848;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Menu Desktop - PADRONIZADO */
@media (min-width: 1024px) {
    header {
        width: 95%;
        max-width: 1400px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .menu-icon {
        display: none;
    }
    
    .menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transform: none;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }
    
    .close-menu,
    .menu-logo {
        display: none;
    }
    
    .menu ul {
        display: flex;
        align-items: center;
        gap: 3rem;
        width: auto;
        justify-content: center;
    }
    
    .menu ul li {
        margin: 0;
    }
    
    .menu ul li a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        position: relative;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .menu ul li a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .menu ul li a:hover {
        background-color: rgba(201, 168, 72, 0.1);
        color: var(--primary-color);
    }
    
    .menu ul li a:hover::after {
        width: 70%;
    }
    
    .menu ul li a[aria-current="page"] {
        color: var(--primary-color);
        background-color: rgba(201, 168, 72, 0.15);
    }
    
    .menu ul li a[aria-current="page"]::after {
        width: 70%;
    }
    
    .overlay {
        display: none !important;
    }
}

/* Desktop Large - Ainda mais centralizado */
@media (min-width: 1440px) {
    header {
        width: 90%;
        max-width: 1600px;
        padding: 1.5rem 3rem;
    }
    
    .menu ul {
        gap: 4rem;
    }
    
    .menu ul li a {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
}

/* ========================================
   HERO SECTION - PADRONIZADA
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 20s ease-in-out;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--text-color);
}

.hero-text {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease 0.5s forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-separator {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta-container {
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(201, 168, 72, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 168, 72, 0.4);
    background: linear-gradient(135deg, #e6c456, var(--primary-color));
}

.hero-cta i {
    font-size: 1.1rem;
}

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

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    position: relative;
    margin: 0 auto;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

/* ========================================
   SEÇÃO DE VÍDEO - PADRONIZADA
   ======================================== */
.video-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(201, 168, 72, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(201, 168, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.section-separator {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

.highlight-accent {
    color: var(--primary-color);
}

.video-container {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: opacity 0.6s ease;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) contrast(1.1);
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(201, 168, 72, 0.4);
}

.play-button i {
    font-size: 1.8rem;
    color: #000;
    margin-left: 4px;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(201, 168, 72, 0.6);
}

.video-caption {
    text-align: center;
    padding: 0 2rem;
}

.video-tag {
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 168, 72, 0.3);
}

.video-caption h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 15px rgba(201, 168, 72, 0.3);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   SEÇÃO PORTFOLIO - FILTRO CORRIGIDO
   ======================================== */
.portfolio-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(201, 168, 72, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(201, 168, 72, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(201, 168, 72, 0.3);
    padding: 0.8rem 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-main);
    font-weight: 500;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 72, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.filter-btn.active {
    color: #000;
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(201, 168, 72, 0.4);
}

/* GRID CORRIGIDO - AGORA OS ITENS SOBEM CORRETAMENTE */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    /* CORREÇÃO CRÍTICA - Força compactação automática */
    grid-auto-flow: row dense;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Importante: sem position absolute aqui */
}

/* CORREÇÃO CRÍTICA - Display none remove completamente do layout */
.portfolio-item.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 72, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(201, 168, 72, 0.2);
}

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

.portfolio-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) contrast(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: opacity 0.6s ease;
}

.portfolio-card:hover .portfolio-image-container img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: color 0.6s ease;
}

.portfolio-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.portfolio-actions {
    margin-top: auto;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border: 2px solid rgba(201, 168, 72, 0.3);
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 72, 0.4);
}

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

.portfolio-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 72, 0.05) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.portfolio-card:hover .portfolio-hover-effect {
    opacity: 1;
}

.portfolio-more {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(201, 168, 72, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 168, 72, 0.4);
    background: linear-gradient(135deg, #e6c456, var(--primary-color));
}

/* Modal de Vídeo - Padronizado */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 72, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* ========================================
   SEÇÃO SERVIÇOS - PADRONIZADA
   ======================================== */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #070707 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(201, 168, 72, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(201, 168, 72, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #e6c456);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(201, 168, 72, 0.2);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.service-description {
    margin-bottom: 1.5rem;
    flex: 1;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.service-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(10px);
    opacity: 0.8;
    transition: all 0.6s ease;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-right: 1rem;
    width: 16px;
}

.service-cta {
    margin-top: auto;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(201, 168, 72, 0.3);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
    transform: translateY(15px);
    opacity: 0.8;
}

.btn-service:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 72, 0.4);
}

.service-card:hover .service-icon {
    transform: translateY(0) scale(1.1);
    opacity: 1;
}

.service-card:hover .service-title {
    transform: translateY(0);
    color: var(--primary-color);
}

.service-card:hover .service-description {
    transform: translateY(0);
}

.service-card:hover .service-description p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features li {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover .btn-service {
    transform: translateY(0);
    opacity: 1;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 72, 0.1) 0%,
        transparent 50%,
        rgba(201, 168, 72, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.service-card:hover .service-hover-effect {
    opacity: 1;
}

/* Processo de Trabalho */
.services-process-section {
    margin: 6rem 0;
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.process-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
}

.process-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.services-process {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.8s; }

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    line-height: 1;
    text-shadow: 0 2px 15px rgba(201, 168, 72, 0.3);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.process-step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.process-divider {
    position: relative;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-line {
    height: 2px;
    background: linear-gradient(to right, rgba(201, 168, 72, 0.3), rgba(201, 168, 72, 0.8), rgba(201, 168, 72, 0.3));
    width: 100%;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

/* CTA Personalizado */
.custom-packages {
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    padding: 5rem 0;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.custom-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.custom-packages-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.custom-packages-content h3 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-packages-content p {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    font-weight: 300;
}

.custom-packages .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.custom-packages .btn-primary:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}

/* ========================================
   FOOTER - IDÊNTICO À PÁGINA SOBRE
   ======================================== */
.main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: var(--text-color);
    position: relative;
    margin-top: auto;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-column {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-tagline strong {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    background: rgba(201, 168, 72, 0.1);
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border: 2px solid rgba(201, 168, 72, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 72, 0.3);
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.3rem;
}

.footer-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(201, 168, 72, 0.2);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(201, 168, 72, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 168, 72, 0.4);
    background: linear-gradient(135deg, #e6c456, var(--primary-color));
}

.cta-button i {
    font-size: 1.1rem;
}

.footer-middle {
    padding: 2.5rem 0;
    background: rgba(26, 26, 26, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-area {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coverage-title i {
    font-size: 1.3rem;
}

.coverage-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.primary-location {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(201, 168, 72, 0.3);
}

.secondary-locations {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.5;
}

.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.site-credits {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   MODAL DE CONTATO MOBILE - FOOTER
   ======================================== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.active .contact-modal-content {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.contact-modal-close:hover {
    background: rgba(201, 168, 72, 0.1);
}

.contact-modal h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border: 2px solid rgba(201, 168, 72, 0.3);
    border-radius: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.contact-option.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.contact-option i {
    font-size: 1.5rem;
}

/* ========================================
   ANIMAÇÕES GLOBAIS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ========================================
   RESPONSIVIDADE UNIFICADA
   ======================================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-separator {
        width: 80px;
        margin-bottom: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .video-container {
        flex-direction: column;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-process {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-divider {
        width: 2px;
        height: 30px;
    }
    
    .process-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, rgba(201, 168, 72, 0.3), rgba(201, 168, 72, 0.8), rgba(201, 168, 72, 0.3));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-content {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .video-container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .video-wrapper {
        width: 60%;
    }
    
    .video-caption {
        width: 40%;
        text-align: left;
        padding: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
    
    .footer-tagline {
        text-align: left;
        margin: 0 0 1.5rem 0;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .footer-title,
    .footer-links {
        text-align: left;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-links {
        align-items: flex-start;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .coverage-content {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 800px;
    }
    
    .hero-title {
        margin-bottom: 2rem;
    }
    
    .hero-separator {
        width: 120px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .services-process {
        flex-direction: row;
        gap: 0;
    }
    
    .process-divider {
        width: 60px;
        height: auto;
    }
    
    .process-line {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, rgba(201, 168, 72, 0.3), rgba(201, 168, 72, 0.8), rgba(201, 168, 72, 0.3));
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
    
    .footer-brand {
        grid-column: auto;
        display: block;
        text-align: left;
    }
    
    .footer-tagline {
        max-width: none;
    }
    
    .footer-top {
        padding: 5rem 0 4rem;
    }
    
    .footer-middle {
        padding: 3rem 0;
    }
    
    .coverage-content {
        flex-direction: row;
        gap: 3rem;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        gap: 5rem;
    }
    
    .footer-top {
        padding: 6rem 0 5rem;
    }
}

/* ========================================
   ACESSIBILIDADE E PERFORMANCE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-image {
        transition: none;
    }
    
    .hero-image:hover {
        transform: none;
    }
    
    .hero-text {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .hero-separator,
    .scroll-indicator {
        animation: none;
        opacity: 1;
    }
    
    .scroll-arrow {
        animation: none;
    }
    
    .footer-column {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .service-card,
    .stat-item,
    .process-step {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .social-link,
    .cta-button,
    .contact-item,
    .footer-links li a {
        transition: none;
    }
    
    .social-link:hover,
    .cta-button:hover {
        transform: none;
    }
}

/* Focus states para acessibilidade */
.hero-cta:focus,
.btn-primary:focus,
.btn-service:focus,
.portfolio-link:focus,
.filter-btn:focus,
.social-link:focus,
.cta-button:focus,
.footer-links a:focus,
.legal-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* ========================================
   OTIMIZAÇÕES DE PERFORMANCE
   ======================================== */
.hero-image,
.video-thumbnail,
.portfolio-card,
.service-card {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.cta-button,
.btn-primary,
.btn-service,
.social-link {
    will-change: transform;
}
