/* ============================================
   VICTORIOUS GLASS - Styles
   Paleta: Cinza Escuro (#1a1a1a) e Dourado Metálico
   ============================================ */

:root {
    --color-black: #1a1a1a;
    --color-black-light: #2a2a2a;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-gold-dark: #B8941F;
    --color-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --color-gold-gradient-radial: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    --color-white: #FFFFFF;
    --color-gray-dark: #3a3a3a;
    --color-gray: #4a4a4a;
    --color-gray-light: #999999;
    --color-green-dark: #1a3d2e;
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: var(--font-primary);
    color: var(--color-white);
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
    background-color: var(--color-black-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: default;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Custom Cursor Effect */
.cursor-gold {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23D4AF37" opacity="0.5"/></svg>') 12 12, auto;
}

a, button, .btn {
    cursor: pointer;
}

a:hover, button:hover, .btn:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23D4AF37"/></svg>') 12 12, pointer;
}

/* ============================================
   PARTICLES CANVAS
   ============================================ */

.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4; /* Reduzido de 0.6 para 0.4 */
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

@media (max-width: 768px) {
    .particles-canvas {
        display: none; /* Desabilitar em mobile para melhor performance */
    }
}

/* ============================================
   FLOATING SHAPES
   ============================================ */

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--color-gold-gradient-radial);
    filter: blur(40px);
    opacity: 0.2; /* Reduzido de 0.3 para 0.2 */
    animation: floatShape 20s infinite ease-in-out;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

@media (max-width: 768px) {
    .shape {
        display: none; /* Desabilitar em mobile */
    }
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -50px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 20%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    top: 20%;
    right: 20%;
    animation-duration: 28s;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

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

.instagram .container {
    overflow-x: visible;
    overflow-y: visible;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    z-index: 1000;
    padding: 0.6rem 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease, border-bottom 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.15) inset;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        rgba(212, 175, 55, 0.5) 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(42, 42, 42, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.2) inset;
    padding: 0.5rem 0;
}

.navbar.scrolled .logo-v {
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.9)); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.nav-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.navbar.scrolled .nav-content {
    gap: 2rem;
}

.navbar.scrolled .logo {
    margin: 0;
}

.nav-phone {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    color: var(--color-white);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 10;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::before {
    opacity: 1;
}

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

.logo-v {
    font-size: 1.5rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo:hover .logo-v {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    transform: scale(1.1);
}

.logo-v::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    filter: blur(10px);
    animation: logoShimmer 3s ease-in-out infinite;
}

@keyframes logoShimmer {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 0.8; transform: translateX(100%); }
}

.logo-text {
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:active {
    transform: translateY(0);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 20px 80px;
    overflow: hidden;
    z-index: 2;
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
    opacity: 1;
    filter: brightness(0.85) contrast(1.05);
    display: block;
}

.hero-bg-image[src=""],
.hero-bg-image:not([src]) {
    display: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: -1;
}

.hero-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 70%
    );
    animation: shineRotate 10s linear infinite;
    z-index: -1;
}

@keyframes shineRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(26, 26, 26, 0.3) 0%, 
        rgba(42, 42, 42, 0.2) 50%, 
        rgba(26, 26, 26, 0.4) 100%);
    z-index: -1;
    opacity: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    position: relative;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both, titleGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.1s both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes titleShine {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4)); }
    50% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7)); }
}

@keyframes titleShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-gold-light);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    text-align: center;
    margin-top: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.4s both;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-contact {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.hero-contact a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

.hero-contact a:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition-slow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.3);
    animation: btnPulse 1.5s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(212, 175, 55, 0.7), 0 0 70px rgba(212, 175, 55, 0.5); }
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold-gradient);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    background: var(--color-gold-gradient);
    color: var(--color-black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.3);
    border-color: var(--color-gold-light);
}

.btn-block {
    width: 100%;
}

.form-submit-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-submit-options .btn {
    width: 100%;
}

.form-success-message {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s ease-in;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-top: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--color-gold-gradient);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.intro-section {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.3);
    position: relative;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray-light);
    animation: fadeInUp 1s ease-out;
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.intro-card:nth-child(1) {
    animation-delay: 0.1s;
}

.intro-card:nth-child(2) {
    animation-delay: 0.2s;
}

.intro-card:nth-child(3) {
    animation-delay: 0.3s;
}

.intro-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    background: rgba(42, 42, 42, 0.7);
}

.intro-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all 0.4s ease;
}

.intro-card:hover .intro-card-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.intro-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-card p {
    color: var(--color-gray-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values {
    background: linear-gradient(180deg, var(--color-black-light) 0%, var(--color-gray-dark) 100%);
    padding: 100px 0;
}

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

.value-card {
    background: rgba(42, 42, 42, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.value-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.value-card p {
    color: var(--color-gray-light);
    line-height: 1.8;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */

.mission-vision {
    background: var(--color-gray-dark);
    padding: 100px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: rgba(42, 42, 42, 0.5);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.mission-icon,
.vision-icon {
    color: var(--color-gold);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    transition: var(--transition);
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9));
}

.mission-card h2,
.vision-card h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card p,
.vision-card p {
    color: var(--color-gray-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--color-gray-dark);
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.about-content .about-image {
    align-self: center;
    justify-self: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    width: 100%;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-gray-light);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transition: var(--transition);
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 1px solid #d4af37;
    display: inline-block;
    line-height: 0;
    font-size: 0;
    box-sizing: border-box;
    height: auto;
    background: none;
}

.about-image:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.about-img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none;
    box-sizing: border-box !important;
    border-radius: 10px;
    transition: var(--transition);
    vertical-align: top;
    box-shadow: none !important;
}

.about-image:hover .about-img {
    transform: scale(1.01);
}


.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    border-radius: 8px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: linear-gradient(180deg, var(--color-black-light) 0%, var(--color-gray-dark) 100%);
}

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

.service-card {
    background: rgba(42, 42, 42, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

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

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3), 0 0 60px rgba(212, 175, 55, 0.15);
    background: rgba(42, 42, 42, 0.85);
}

.service-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 1)); }
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 1;
}

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

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    color: var(--color-gold-light);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    background: var(--color-gray-dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--color-white);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 1rem;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold-gradient);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.03) translateZ(0); /* Reduzido de 1.05 para 1.03 */
}

.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08) translateZ(0); /* Reduzido de 1.1 para 1.08 */
}

.gallery-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.gallery-overlay p {
    color: var(--color-white);
    font-size: 0.9rem;
}

/* ============================================
   GALLERY CAROUSEL STYLES
   ============================================ */

.gallery-carousel-wrapper {
    display: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

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

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.gallery-carousel-track .gallery-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0;
    aspect-ratio: 16/9;
}

.gallery-carousel-track .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-gray-dark);
}

.gallery-counter {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-carousel-wrapper .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.7);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-carousel-wrapper .carousel-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

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

.gallery-carousel-wrapper .carousel-btn.prev {
    left: 10px;
}

.gallery-carousel-wrapper .carousel-btn.next {
    right: 10px;
}

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

.gallery-carousel-wrapper .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.gallery-carousel-wrapper .carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    touch-action: manipulation;
}

.gallery-carousel-wrapper .carousel-indicator:hover,
.gallery-carousel-wrapper .carousel-indicator.active {
    background: var(--color-gold);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: #0d0d0d;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    animation: scrollInfinite 80s linear infinite;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    flex: 0 0 380px;
    max-width: 380px;
    width: 380px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #FFD300;
    border-radius: 8px 0 0 8px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 211, 0, 0.15);
}

.testimonial-quote {
    font-size: 3.5rem;
    font-family: var(--font-display);
    color: #FFD300;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.4;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-weight: 700;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-align: left;
    padding-top: 0.5rem;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author strong {
    display: block;
    color: #FFD300;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #FFFFFF;
    font-size: 0.9rem;
    display: block;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 15 - 2rem * 15));
    }
}

/* Ajuste dinâmico via JavaScript será aplicado */

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 320px;
        max-width: 320px;
        width: 320px;
    }
    
    @keyframes scrollInfinite {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 15 - 2rem * 15));
        }
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-carousel {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        max-width: 300px;
        width: 300px;
        padding: 2rem 2rem 2rem 2.5rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
        top: 1.25rem;
        left: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    @keyframes scrollInfinite {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 15 - 1.5rem * 15));
        }
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials-carousel {
        gap: 1.25rem;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        max-width: 280px;
        width: 280px;
        padding: 1.75rem 1.75rem 1.75rem 2rem;
    }
    
    .testimonial-quote {
        font-size: 2.5rem;
        top: 1rem;
        left: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .testimonial-author strong {
        font-size: 0.95rem;
    }
    
    @keyframes scrollInfinite {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 15 - 1.25rem * 15));
        }
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--color-gray-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-gold);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

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

.contact-item p {
    color: var(--color-gray-light);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

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

.instagram-link-contact {
    color: var(--color-gold) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-link-contact:hover {
    color: var(--color-gold-light) !important;
    transform: translateX(5px);
}

.contact-social {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    color: var(--color-gold);
    transition: var(--transition);
    padding: 0.5rem;
}

.social-link:hover {
    color: var(--color-gold-light);
    transform: scale(1.2);
}

.contact-form {
    background: rgba(42, 42, 42, 0.6);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-gray-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float:hover {
        transform: translateX(50%) scale(1.05);
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram {
    background: linear-gradient(180deg, var(--color-gray-dark) 0%, var(--color-black-light) 100%);
    overflow-x: visible;
    overflow-y: visible;
}

.instagram-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: visible;
}

.instagram-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.instagram-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-light);
    margin-bottom: 1rem;
}

.instagram-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 2rem auto 0;
    padding: 0 50px;
    overflow: visible;
}

.instagram-carousel {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    gap: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100% !important;
    position: relative;
    max-width: 100% !important;
    box-sizing: border-box;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.instagram-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.instagram-post-container {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.3s ease;
    position: relative;
    background: transparent;
    min-height: 450px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0 !important;
}

.instagram-post-container:hover {
    transform: scale(1.01);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 42, 42, 0.85);
    border: 2px solid rgba(212, 175, 55, 0.7);
    color: var(--color-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    transition: all 0.3s ease;
    z-index: 1000 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

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

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(212, 175, 55, 0.6);
}

.carousel-indicator.active {
    background: var(--color-gold);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .instagram-carousel-wrapper {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .instagram-post-container {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .instagram-carousel-wrapper {
        padding: 0 35px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .instagram-post-container {
        min-height: 350px;
    }
}

.instagram-post-container blockquote.instagram-media {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border-radius: 12px !important;
    overflow: visible !important;
    position: relative !important;
    display: block !important;
    background: transparent !important;
    flex-shrink: 0 !important;
}

.instagram-post-container blockquote.instagram-media iframe {
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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


.instagram-feed {
    position: relative;
    min-height: 400px;
    overflow: visible;
    width: 100%;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.instagram-placeholder p {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.instagram-placeholder p:first-child {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.instagram-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    margin-top: 1rem;
}

.instagram-link:hover {
    color: var(--color-gold-light);
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(180deg, var(--color-black-light) 0%, var(--color-black) 100%);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-company-info {
    text-align: center;
    padding-top: 2rem;
}

.footer-company-details {
    margin-bottom: 2rem;
}

.footer-company-details p {
    color: var(--color-gold);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-company-name {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: var(--color-gold) !important;
}

.footer-company-details a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-company-details a:hover {
    color: var(--color-gold-light);
    text-decoration: underline;
}

.footer-links-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links-legal a {
    color: rgba(212, 175, 55, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-legal a:hover {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-separator {
    color: rgba(212, 175, 55, 0.5);
}

.footer-copyright {
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social a {
    color: var(--color-gold);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--color-gold-light);
    transform: scale(1.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social a {
    color: var(--color-gold);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--color-gold-light);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.95);
    z-index: 2000;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid var(--color-gold);
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--color-white);
}

.lightbox-caption h4 {
    font-family: var(--font-display);
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 2rem;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: var(--transition);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        transform: none;
    }

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

    .hero {
        padding: 90px 20px 60px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(26, 26, 26, 0.3) 0%, 
            rgba(42, 42, 42, 0.2) 50%, 
            rgba(26, 26, 26, 0.4) 100%);
    }

    .intro-section {
        padding: 60px 0;
    }

    .intro-text {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .intro-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intro-card {
        padding: 2rem 1.5rem;
    }

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

    .instagram-content {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-company-details {
        margin-bottom: 1.5rem;
    }
    
    .footer-company-details p {
        font-size: 0.9rem;
    }
    
    .footer-links-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .section {
        padding: 60px 0;
    }

    .about-image {
        height: auto;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        display: inline-block;
        line-height: 0;
        font-size: 0;
        overflow: hidden;
        background: none;
        border: 1px solid #d4af37;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    }

    .about-img {
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 10px;
        box-shadow: none !important;
    }
    
    .about-content .about-image {
        align-self: center;
        justify-self: center;
    }

    .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
    }
    
    .gallery-filters {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .gallery-carousel-wrapper {
        padding: 0 50px;
    }
    
    .gallery-carousel-wrapper .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-carousel-wrapper .carousel-btn.prev {
        left: 5px;
    }
    
    .gallery-carousel-wrapper .carousel-btn.next {
        right: 5px;
    }
    
    .gallery-carousel-wrapper .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
    }
    
    .contact-content {
        gap: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .gallery-carousel-wrapper {
        padding: 0 40px;
    }
    
    .gallery-carousel-wrapper .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-carousel-wrapper .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-carousel-wrapper .carousel-btn.prev {
        left: 0;
    }
    
    .gallery-carousel-wrapper .carousel-btn.next {
        right: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .intro-cards {
        gap: 1.25rem;
    }
    
    .intro-card {
        padding: 1.75rem 1.25rem;
    }
    
    .values-grid {
        gap: 1.25rem;
    }
    
    .value-card {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-quote {
        font-size: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Previne zoom no iOS */
    }
    
    .container {
        padding: 0 12px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
}

/* ============================================
   iOS SAFE AREA SUPPORT
   ============================================ */

@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .whatsapp-float {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(20px, env(safe-area-inset-right));
    }
    
    @media (max-width: 768px) {
        .whatsapp-float {
            right: 50%;
            transform: translateX(50%);
            bottom: max(15px, env(safe-area-inset-bottom));
        }
    }
}

/* ============================================
   TABLET OPTIMIZATIONS (768px - 1024px)
   ============================================ */

@media (min-width: 481px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 0 30px;
    }
}

/* ============================================
   LANDSCAPE MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

