/* ============================================
   ESPAÇO METAMORFOSE - CSS COMPLETO
   Design Profissional e Responsivo
   ============================================ */

/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --primary-color: #1a1a1a;
    --primary-light: #333333;
    --secondary-color: #e91e63;
    --secondary-light: #f48fb1;
    --accent-color: #ff4081;
    --white: #ffffff;
    --light-bg: #fafafa;
    --text-dark: #1a1a1a;
    --text-medium: #424242;
    --text-light: #757575;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transições e Sombras */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    
    /* Tipografia */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;
}

/* Reset Básico */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* Header Otimizado */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar {
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

/* Logo Compacta */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding: 0.5rem;
}

.logo-img {
    width: 180px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 2px;
    filter: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid rgba(233, 30, 99, 0.2);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1;
}

.logo-text .tagline {
    font-size: 0.55rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

/* Navegação */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

/* Hero Section com Vídeo */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Container do vídeo */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Imagem de fallback */
.hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(233, 30, 99, 0.2) 50%,
        rgba(255, 64, 129, 0.3) 100%
    ),
    url('../images/hero-pattern.svg') center/cover;
    z-index: 1;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
    transition: opacity 1s ease-out;
}

/* Indicador de carregamento do vídeo */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(233, 30, 99, 0.3);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: video-loading 1s linear infinite;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

.hero-video-container.loading::before {
    opacity: 1;
}

@keyframes video-loading {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Overlay escuro para legibilidade */
.hero-video .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(233, 30, 99, 0.1) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Conteúdo do hero */
.hero-video .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* Badge do hero */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--secondary-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Título principal */
.hero-video .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.title-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo */
.hero-video .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Estatísticas */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Botões do hero */
.hero-video .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-video .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
    text-transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-video .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

.hero-video .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-video .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Elementos de confiança */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: var(--secondary-color);
    background: rgba(233, 30, 99, 0.1);
}

.scroll-arrow i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero antigo - compatibilidade */
.hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    padding: var(--spacing-xl);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Seções */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
}

/* Seção de Serviços */
.servicos-section {
    background: var(--light-bg);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.servico-categoria {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.servico-categoria:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.categoria-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background: var(--light-bg);
}

.categoria-icone {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.categoria-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.categoria-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.servicos-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.servico-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    background: var(--light-bg);
    transition: var(--transition-fast);
}

.servico-item:hover {
    background: rgba(233, 30, 99, 0.1);
}

.servico-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.servico-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.categoria-footer {
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: var(--spacing-lg);
}

.servicos-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    color: var(--white);
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

/* Seção de Contato */
.contato {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.contato-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
    width: 20px;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.mapa-container {
    margin-top: var(--spacing-lg);
}

.mapa-container h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.mapa-container iframe {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Formulário Moderno */
.contato-form {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary-color);
}

.contato-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.contato-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

.form-group {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
}

.form-group:focus-within label::after {
    width: 30px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition-normal);
    background: var(--light-bg);
    resize: vertical;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
    transform: translateY(-1px);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    appearance: none;
}

.form-group textarea {
    min-height: 120px;
    font-family: var(--font-primary);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 1rem;
    border: 2px dashed #ccc;
    border-radius: var(--radius-md);
    background: var(--light-bg);
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
}

.form-group input[type="file"]:hover {
    border-color: var(--secondary-color);
    background: rgba(233, 30, 99, 0.05);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: center;
}

/* Checkbox moderno */
.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.form-group.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Botão do formulário */
.contato-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.contato-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-normal);
}

.contato-form .btn-primary:hover::before {
    left: 100%;
}

.contato-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
}

.mensagem-resposta {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.mensagem-resposta.sucesso {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensagem-resposta.erro {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsivo */
/* Mobile: Extra pequeno (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    .header {
        padding: 0.3rem 0;
    }
    
    .hero-video {
        min-height: 500px;
        margin-top: 60px;
    }
    
    .hero-video .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-video .hero-subtitle {
        font-size: clamp(0.95rem, 1.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-trust {
        gap: 0.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
}

/* Mobile: Tablet pequeno (481px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-wrapper {
        min-height: 50px;
    }
    
    .logo {
        gap: 0.3rem;
    }
    
    /* Grid de serviços em coluna única no mobile */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .logo-img {
        width: 140px;
        height: 65px;
        object-fit: contain;
        background: rgba(255, 255, 255, 0.95);
        padding: 1px;
        filter: none;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        border: 2px solid rgba(233, 30, 99, 0.2);
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .logo-text h1 {
        font-size: 0.95rem;
    }
    
    .logo-text .tagline {
        font-size: 0.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .categoria-header {
        flex-direction: column;
        text-align: center;
    }
    
    .servicos-lista {
        grid-template-columns: 1fr;
    }
    
    /* Formulário responsivo */
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contato-form {
        padding: var(--spacing-lg);
    }
    
    .contato-form h3 {
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contato-form .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .testemunhos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    /* Responsividade Hero Video */
    .hero-video {
        min-height: 600px;
        height: 100vh;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-video .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .hero-video .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Footer Profissional */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    padding: 3rem 0 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 25%, 
        #ff6b6b 50%, 
        var(--accent-color) 75%, 
        var(--secondary-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* Seção da marca */
.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.logo-info h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 0.3rem 0;
    font-weight: 700;
}

.logo-info p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Seções do footer */
.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-section h4 i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

/* Links do footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
    background: rgba(233, 30, 99, 0.1);
}

.footer-links a i {
    font-size: 0.8rem;
    width: 15px;
    opacity: 0.8;
}

/* Informações de contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links span {
    color: #666666;
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 0;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* ============================================ */
/* GALERIA DE TRABALHOS */
/* ============================================ */

/* Galeria de Trabalhos */
.galeria {
    background: var(--light-bg);
    padding: var(--spacing-xl) 0;
}

/* Galeria Desabilitada */
.galeria-disabled {
    position: relative;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeria-disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);
    z-index: 5;
    pointer-events: none;
}

.galeria-disabled:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.galeria-disabled .featured-work {
    cursor: pointer;
    user-select: none;
}

.galeria-disabled .featured-work:hover {
    transform: scale(1.02);
}

/* Featured Work com Vídeo */
.featured-work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 0 2rem;
    align-items: center;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
    aspect-ratio: 16/9;
    min-height: 350px;
}

.video-container.video-error .video-fallback {
    display: flex !important;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: inherit;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(233, 30, 99, 0.1) 0%, 
        rgba(74, 144, 226, 0.1) 100%);
    z-index: 1;
    border-radius: 20px;
}

.reforma-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.video-container:hover .reforma-video {
    transform: scale(1.02);
}

.instagram-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #e4405f, #ffdc80);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.4);
}

.instagram-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.6);
    text-decoration: none;
    color: white;
}

.work-details {
    padding: 2rem;
}

.work-details h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.work-details .work-category {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-details .work-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.work-details .work-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.work-details .work-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1rem;
}

.work-details .work-features li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.work-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-instagram {
    background: linear-gradient(45deg, #e4405f, #ffdc80);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(228, 64, 95, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(33, 37, 41, 0.2);
    text-decoration: none;
}

/* Placeholder para vídeo não encontrado - Estilos adicionais */
.video-fallback::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-60px, -60px, 0); }
}

.video-fallback .play-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    font-size: 2rem;
    position: relative;
    z-index: 10;
}

.video-fallback .play-icon::before {
    content: '▶';
    margin-left: 3px;
    color: white;
}

.video-fallback .fallback-text {
    text-align: center;
    z-index: 10;
    position: relative;
}

.video-fallback .fallback-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.video-fallback .fallback-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    color: white;
}
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.featured-video {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-dark);
}

.reforma-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.instagram-badge {
    background: linear-gradient(135deg, #e4405f, #fd1d1d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
    animation: pulse-instagram 3s ease-in-out infinite;
}

@keyframes pulse-instagram {
    0%, 100% { box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(228, 64, 95, 0.5); }
}

.featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.work-category {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-description {
    margin: 2rem 0;
}

.work-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.work-description i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.work-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.detail-item i {
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
}

.work-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-instagram {
    background: linear-gradient(135deg, #e4405f, #fd1d1d);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.btn-orcamento {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-orcamento:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Grid de galeria */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.galeria-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    user-select: none;
}

.galeria-disabled .galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.galeria-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-bg), #f8f8f8);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.galeria-image-placeholder i {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

/* Cores específicas para cada categoria */
.galeria-image-placeholder.cortina {
    background: linear-gradient(135deg, #ff4081, #e91e63);
}

.galeria-image-placeholder.sofa {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.galeria-image-placeholder.vestido {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.galeria-image-placeholder.tapete {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.galeria-image-placeholder.jaqueta {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.galeria-image-placeholder.mais {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.galeria-image-placeholder.cortina i,
.galeria-image-placeholder.sofa i,
.galeria-image-placeholder.vestido i,
.galeria-image-placeholder.tapete i,
.galeria-image-placeholder.jaqueta i,
.galeria-image-placeholder.mais i {
    color: white;
    opacity: 0.9;
}

.galeria-item h4 {
    color: var(--color-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.galeria-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Video Fallback */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade da Galeria */
/* Responsive Design para Galeria Featured Work */
@media (max-width: 1024px) {
    .featured-work {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-container {
        min-height: 300px;
    }
    
    .work-details {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .work-details h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .featured-work {
        padding: 0 1rem;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .video-container {
        min-height: 250px;
    }
    
    .work-actions {
        flex-direction: column;
    }
    
    .btn-instagram,
    .btn-secondary {
        justify-content: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .work-details h3 {
        font-size: 1.8rem;
    }
    
    .work-details {
        padding: 1.5rem;
    }
    
    .instagram-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* ============================================ */
/* MODAL COMING SOON */
/* ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.coming-soon-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.modal-body h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-body p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem 2rem;
    text-align: center;
}

.modal-footer .btn {
    min-width: 120px;
    padding: 12px 24px;
    border-radius: 25px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .coming-soon-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================================ */
/* CATEGORIA DE SERVIÇO COM POPUP */
/* ============================================ */

.servico-popup {
    cursor: pointer;
    transition: all 0.3s ease;
}

.servico-popup:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.servicos-preview {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.preview-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preview-icon i {
    font-size: 2.5rem;
    opacity: 0.7;
}

.preview-icon span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

/* ============================================ */
/* MODAL DE SERVIÇOS */
/* ============================================ */

.services-modal {
    max-width: 800px;
    width: 95%;
}

.services-modal-body {
    padding: 1rem;
    text-align: center;
}

.services-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.services-image:hover {
    transform: scale(1.02);
}

.image-fallback {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.fallback-icon {
    background: var(--secondary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.image-fallback h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-fallback p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.image-fallback small {
    color: var(--text-light);
    font-style: italic;
}

/* Responsive para modal de serviços */
@media (max-width: 768px) {
    .services-modal {
        width: 95%;
        margin: 1rem auto;
    }
    
    .services-modal-body {
        padding: 1rem;
    }
    
    .services-image {
        border-radius: 10px;
    }
    
    .image-fallback {
        padding: 2rem 1rem;
    }
    
    .fallback-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================================ */
/* SEÇÃO QUEM SOMOS - RESPONSIVIDADE MELHORADA */
/* ============================================ */

/* Desktop - Layout padrão */
.about-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
    margin-bottom: 3rem !important;
}

.about-text {
    padding-right: 1rem;
}

.about-text h3 {
    font-size: 1.5rem !important;
    color: var(--secondary-color) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem !important;
    line-height: 1.7;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet - 768px a 1024px */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem !important;
    }
    
    .about-text p {
        font-size: 1rem !important;
    }
    
    .about-text h3 {
        font-size: 1.3rem !important;
    }
}

/* Mobile - até 768px */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .about-text {
        padding-right: 0 !important;
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .about-text p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .about-image > div {
        width: 100% !important;
        padding: 2rem 1.5rem !important;
        border-radius: 12px;
        text-align: center;
    }
    
    .about-image i {
        font-size: 3rem !important;
    }
    
    .about-image h3 {
        font-size: 1.2rem !important;
    }
}

/* Extra pequeno - até 480px */
@media (max-width: 480px) {
    .about-content {
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .about-text h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.7rem !important;
    }
    
    .about-text p {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.5;
    }
    
    .about-image > div {
        padding: 1.5rem 1rem !important;
    }
    
    .about-image i {
        font-size: 2.5rem !important;
    }
    
    .about-image h3 {
        font-size: 1rem !important;
    }
    
    .about-image p {
        font-size: 0.85rem !important;
    }
}

/* Melhorias gerais para todos os textos inline */
@media (max-width: 768px) {
    [style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    
    [style*="font-size: 1.5rem"] {
        font-size: 1.2rem !important;
    }
    
    .section {
        padding: 2rem 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Valores grid responsivo */
.valores-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .valor-item {
        padding: 1.5rem !important;
    }
    
    .valor-item i {
        font-size: 2rem !important;
    }
    
    .valor-item h4 {
        font-size: 1rem !important;
    }
    
    .valor-item p {
        font-size: 0.9rem !important;
    }
}