/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Premium - Paleta de Luxo */
    --color-primary: #0A0A0A;
    --color-primary-dark: #000000;
    --color-accent: #C9A961;
    --color-accent-light: #E8D5A3;
    --color-accent-dark: #A68B3D;
    --color-gold: #D4AF37;
    --color-gold-light: #F4E4A6;
    --color-white: #FFFFFF;
    --color-ivory: #FAF8F3;
    --color-cream: #F5F1E8;
    --color-gray-100: #F8F8F8;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #D0D0D0;
    --color-gray-400: #999999;
    --color-gray-500: #666666;
    --color-gray-600: #333333;
    
    /* Espaçamentos Compactos */
    --spacing-xs: 0.3rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.7rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.4rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 2.5rem;
    --spacing-4xl: 3rem;
    --spacing-5xl: 3.5rem;
    
    /* Tipografia Elegante */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    /* Transições Suaves */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Sombras Refinadas */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.2);
    --shadow-gold-lg: 0 16px 64px rgba(201, 169, 97, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--color-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

/* ============================================
   CUSTOM CURSOR - OTIMIZADO
   ============================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    top: -20px;
    left: -20px;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease-out;
    opacity: 0;
    transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
    body:hover .cursor-dot,
    body:hover .cursor-outline {
        opacity: 1;
    }
}

/* ============================================
   FLOATING PARTICLES
   ============================================ */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 20s infinite ease-in-out;
    will-change: transform;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(6) {
    left: 20%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    left: 60%;
    animation-delay: 2.5s;
    animation-duration: 19s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 21s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
}
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
    opacity: 0;
}
}

/* ============================================
   GEOMETRIC SHAPES
   ============================================ */
.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(201, 169, 97, 0.08);
    opacity: 0.3;
    will-change: transform;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 10%;
    animation: morphShape 20s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), transparent);
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 20%;
    left: 5%;
    animation: morphShape 15s ease-in-out infinite reverse;
    background: linear-gradient(45deg, rgba(201, 169, 97, 0.05), transparent);
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 50%;
    right: 5%;
    animation: rotateShape 30s linear infinite;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent);
}

.shape-4 {
    width: 250px;
    height: 250px;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    bottom: 10%;
    right: 20%;
    animation: morphShape 25s ease-in-out infinite;
    background: linear-gradient(225deg, rgba(201, 169, 97, 0.05), transparent);
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   MINIMAL NAVIGATION
   ============================================ */
.navbar-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    padding: var(--spacing-sm) 0;
    transition: var(--transition-base);
    height: auto;
    max-height: 80px;
    overflow: hidden;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-minimal {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    height: 64px;
    width: auto;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.logo-full {
    font-size: 0.7rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.nav-contact {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    color: var(--color-primary-dark);
    transition: var(--transition-elegant);
    box-shadow: var(--shadow-gold);
}

.nav-contact:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold-lg);
}

/* ============================================
   HERO SPLIT SCREEN
   ============================================ */
/* ============================================
   HERO REVOLUTIONARY - DESIGN COMPLETAMENTE NOVO
   ============================================ */
.hero-revolutionary {
    min-height: 85vh;
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-dark);
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 20s ease-out;
}

.hero-revolutionary:hover .hero-bg-img {
    transform: scale(1.15);
}

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

/* Grid Lines */
.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.grid-line {
    position: absolute;
    background: rgba(201, 169, 97, 0.2);
}

.grid-line-h {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    animation: gridLineH 3s ease-in-out infinite;
}

.grid-line-v {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    animation: gridLineV 3s ease-in-out infinite;
}

@keyframes gridLineH {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scaleX(1.1);
    }
}

@keyframes gridLineV {
    0%, 100% {
        opacity: 0.2;
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scaleY(1.1);
    }
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (max-width: 768px) {
    .hero-unique {
        min-height: auto;
        padding: var(--spacing-3xl) var(--spacing-lg);
    }
}

/* Text Side */
.hero-text-side {
    position: relative;
}

.hero-year-minimal {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 4px;
    margin-bottom: var(--spacing-xl);
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-title-revolutionary {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-2xl);
    color: var(--color-white);
    font-size: clamp(2.5rem, 8vw, 6rem);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: charReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-line-1 .title-char:nth-child(1) { animation-delay: 0.5s; }
.title-line-1 .title-char:nth-child(2) { animation-delay: 0.6s; }
.title-line-1 .title-char:nth-child(3) { animation-delay: 0.7s; }
.title-line-1 .title-char:nth-child(4) { animation-delay: 0.8s; }

.title-line-2 .title-char:nth-child(1) { animation-delay: 1s; }
.title-line-2 .title-char:nth-child(2) { animation-delay: 1.1s; }

.title-line-3 .title-char:nth-child(1) { animation-delay: 1.3s; }
.title-line-3 .title-char:nth-child(2) { animation-delay: 1.4s; }
.title-line-3 .title-char:nth-child(3) { animation-delay: 1.5s; }
.title-line-3 .title-char:nth-child(4) { animation-delay: 1.6s; }

.title-line-4 .title-char:nth-child(1) { animation-delay: 1.8s; }
.title-line-4 .title-char:nth-child(2) { animation-delay: 1.9s; }
.title-line-4 .title-char:nth-child(3) { animation-delay: 2s; }
.title-line-4 .title-char:nth-child(4) { animation-delay: 2.1s; }
.title-line-4 .title-char:nth-child(5) { animation-delay: 2.2s; }
.title-line-4 .title-char:nth-child(6) { animation-delay: 2.3s; }
.title-line-4 .title-char:nth-child(7) { animation-delay: 2.4s; }

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-char {
    color: var(--color-accent);
    position: relative;
}

.highlight-char::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    animation: underlineGrow 0.8s ease-out 2.5s forwards;
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

.hero-description-revolutionary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
    font-weight: 300;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2.6s forwards;
}

.hero-cta-revolutionary {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 2.8s forwards;
}

.btn-revolutionary {
    display: inline-block;
    padding: 0;
    background: transparent;
    border: 2px solid var(--color-accent);
    border-radius: 0;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-inner {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.btn-revolutionary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.3s ease;
    z-index: 1;
}

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

.btn-revolutionary:hover {
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.btn-revolutionary:hover svg {
    transform: translateX(5px);
}

.btn-revolutionary svg {
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .hero-canvas {
        display: none;
    }
}

/* Stats Side */
.hero-stats-side {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-end;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: var(--spacing-lg);
    min-width: 160px;
    text-align: right;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.stat-card:nth-child(1) {
    animation: slideInRight 1s ease-out 1.5s forwards;
}

.stat-card:nth-child(2) {
    animation: slideInRight 1s ease-out 1.7s forwards;
}

.stat-card:nth-child(3) {
    animation: slideInRight 1s ease-out 1.9s forwards;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    transform: translateX(-10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

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

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 3s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

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

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

/* ============================================
   FLOATING IMAGE - FORA DO PADRÃO
   ============================================ */
.hero-image-float {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 2;
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .hero-image-float {
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .hero-image-float {
        position: relative;
        top: auto;
        right: auto;
        transform: none !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto var(--spacing-2xl);
        pointer-events: auto;
    }
}

.image-float-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(201, 169, 97, 0.1);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    animation: floatImage 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatImage {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-20px);
    }
}


.hero-float-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-float-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.image-float-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ============================================
   GOLD ORBS - ELEMENTOS FLUTUANTES
   ============================================ */
.gold-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), rgba(201, 169, 97, 0.05));
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 15s ease-in-out infinite;
    will-change: transform;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 18s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
        opacity: 0.8;
    }
}

/* ============================================
   MAIN CONTENT - LAYOUT ÚNICO
   ============================================ */
.hero-main-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 8%;
    padding-right: 50%;
}

@media (max-width: 1200px) {
    .hero-main-content {
        padding-left: 5%;
        padding-right: 55%;
    }
}

@media (max-width: 768px) {
    .hero-main-content {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
}

.hero-year-badge {
    margin-bottom: var(--spacing-2xl);
    position: relative;
    display: inline-block;
    padding-left: var(--spacing-xl);
}

.year-text {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--color-accent-dark);
    letter-spacing: 4px;
    font-weight: 600;
    position: relative;
}

.hero-year-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transform: translateY(-50%);
    animation: yearLineGrow 1.5s ease-out 0.5s forwards;
}

.hero-year {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-accent-dark);
    letter-spacing: 4px;
    margin-bottom: var(--spacing-2xl);
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-left: var(--spacing-lg);
}

.year-number {
    position: relative;
    z-index: 2;
}

.year-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transform: translateY(-50%);
    animation: yearLineGrow 1.5s ease-out 0.5s forwards;
}

@keyframes yearLineGrow {
    to {
        width: 40px;
    }
}

.hero-title-unique {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-2xl);
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.title-block {
    display: block;
    opacity: 0;
    transform: translateX(-100px) rotateY(90deg);
    animation: titleBlockReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: left center;
    will-change: transform, opacity;
}

.title-block-1 {
    font-size: clamp(3rem, 8vw, 7rem);
    animation-delay: 0.3s;
}

.title-block-2 {
    font-size: clamp(2.5rem, 7vw, 6rem);
    animation-delay: 0.6s;
    margin-left: var(--spacing-2xl);
}

.title-block-3 {
    font-size: clamp(3rem, 8vw, 7rem);
    animation-delay: 0.9s;
    margin-left: var(--spacing-xl);
}

@keyframes titleBlockReveal {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.highlight-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmerText 4s ease-in-out infinite;
    position: relative;
}

.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    animation: underlineGrow 1s ease-out 1.2s forwards;
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

.title-word {
    display: block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    transform-origin: center bottom;
    animation: titleReveal3D 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation: textClipReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-word:nth-child(1) { 
    animation-delay: 0.2s;
}
.title-word:nth-child(1)::before { 
    animation-delay: 0.3s;
}
.title-word:nth-child(2) { 
    animation-delay: 0.4s;
}
.title-word:nth-child(2)::before { 
    animation-delay: 0.5s;
}
.title-word:nth-child(3) { 
    animation-delay: 0.6s;
}
.title-word:nth-child(3)::before { 
    animation-delay: 0.7s;
}
.title-word:nth-child(4) { 
    animation-delay: 0.8s;
}
.title-word:nth-child(4)::before { 
    animation-delay: 0.9s;
}

@keyframes titleReveal3D {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes textClipReveal {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.title-word.highlight {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmerText 3s ease-in-out infinite, titleReveal3D 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    position: relative;
}

.title-word.highlight::before {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation: textClipReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.text-shimmer {
    position: relative;
    display: inline-block;
}

.text-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerSweep 3s ease-in-out infinite 2s;
}

@keyframes shimmerSweep {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.hero-description-unique {
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: descFadeIn 1s ease-out 1.2s forwards;
}

@keyframes descFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.desc-main {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-cta-unique {
    margin-bottom: var(--spacing-3xl);
    opacity: 0;
    transform: translateY(20px);
    animation: ctaFadeIn 1s ease-out 1.5s forwards;
}

@keyframes ctaFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-unique {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-2xl);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-elegant);
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-text-main {
    position: relative;
    z-index: 2;
}

.btn-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.btn-unique:hover .btn-glow-effect {
    width: 400px;
    height: 400px;
}

.btn-unique:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-unique:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-luxury::before {
    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 ease, height 0.6s ease;
}

.btn-luxury:hover::before {
    width: 300px;
    height: 300px;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.hero-stats-unique {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: statsFadeIn 1s ease-out 1.8s forwards;
}

@keyframes statsFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item-unique {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-value-unique {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    display: inline-block;
}

.stat-label-unique {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

/* ============================================
   DECORATIVE ELEMENTS - FORA DO PADRÃO
   ============================================ */
.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-decorative {
        display: none;
    }
}

.decor-circle {
    position: absolute;
    border: 2px solid rgba(201, 169, 97, 0.15);
    border-radius: 50%;
    animation: decorFloat 12s ease-in-out infinite;
}

.decor-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 3%;
    animation-delay: 0s;
}

.decor-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    animation-delay: 3s;
}

@keyframes decorFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

.decor-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    height: 1px;
    animation: decorLineMove 10s ease-in-out infinite;
}

.decor-line-1 {
    top: 20%;
    left: -100%;
    width: 300px;
    animation-delay: 0s;
}

.decor-line-2 {
    top: 60%;
    left: -100%;
    width: 250px;
    animation-delay: 3s;
}

.decor-line-3 {
    bottom: 20%;
    left: -100%;
    width: 200px;
    animation-delay: 6s;
}

@keyframes decorLineMove {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

.number-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.number-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}


/* ============================================
   IMAGE GLOW EFFECT
   ============================================ */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* ============================================
   DECORATIVE LINES
   ============================================ */
.decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    height: 1px;
    animation: lineMove 8s ease-in-out infinite;
}

.line-1 {
    top: 20%;
    left: -100%;
    width: 200%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    left: -100%;
    width: 200%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.line-3 {
    top: 80%;
    left: -100%;
    width: 200%;
    animation-delay: 4s;
    animation-duration: 12s;
}

@keyframes lineMove {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
/* ============================================
   PHILOSOPHY SECTION - REVOLUCIONÁRIO
   ============================================ */
.philosophy-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background Waves */
.philosophy-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
    border-radius: 50%;
    animation: waveFloat 20s ease-in-out infinite;
}

.bg-wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.bg-wave-2 {
    top: -30%;
    right: -30%;
    animation-delay: 7s;
    animation-duration: 25s;
}

.bg-wave-3 {
    bottom: -40%;
    left: 20%;
    animation-delay: 14s;
    animation-duration: 30s;
}

@keyframes waveFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.8;
    }
}

/* Floating Particles */
.philosophy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle-phil {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-phil:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-phil:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.particle-phil:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 6s;
}

.particle-phil:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 9s;
}

.particle-phil:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 12s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) scale(1.2);
        opacity: 0.5;
    }
}

/* Container */
.philosophy-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   SECTION PATTERN
   ============================================ */
.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(201, 169, 97, 0.02) 10px,
            rgba(201, 169, 97, 0.02) 20px
        );
    pointer-events: none;
    z-index: 0;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    from {
        background-position: 0 0, 0 0, 0 0;
    }
    to {
        background-position: 100px 100px, -100px -100px, 20px 20px;
    }
}

/* Header */
.philosophy-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.philosophy-tag-revolutionary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.3s forwards;
}

.tag-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: tagLineGrow 1s ease-out 0.5s forwards;
    transform: scaleX(0);
}

.tag-text {
    font-size: 0.75rem;
    color: var(--color-accent-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes tagLineGrow {
    to {
        transform: scaleX(1);
    }
}

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

.philosophy-title-revolutionary {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.title-word-phil {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    animation: wordReveal3D 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-word-phil:nth-child(1) { animation-delay: 0.6s; }
.title-word-phil:nth-child(2) { animation-delay: 0.7s; }
.title-word-phil:nth-child(3) { animation-delay: 0.8s; }
.title-word-phil:nth-child(4) { animation-delay: 0.9s; }
.title-word-phil:nth-child(5) { animation-delay: 1s; }
.title-word-phil:nth-child(6) { animation-delay: 1.1s; }
.title-word-phil:nth-child(7) { animation-delay: 1.2s; }

@keyframes wordReveal3D {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.highlight-phil {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-phil::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
    animation: underlineExpand 0.8s ease-out 1.5s forwards;
}

@keyframes underlineExpand {
    to {
        width: 100%;
    }
}

.philosophy-description-revolutionary {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.section-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(201, 169, 97, 0.1);
    color: var(--color-accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(201, 169, 97, 0.2);
    font-family: var(--font-primary);
}

.philosophy-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.philosophy-description {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    font-weight: 300;
}

/* Cards Grid */
.philosophy-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    position: relative;
}

.phil-card {
    position: relative;
    background: var(--color-white);
    border-radius: 24px;
    padding: var(--spacing-2xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    isolation: isolate;
}

.phil-card-1 {
    animation-delay: 1.6s;
}

.phil-card-2 {
    animation-delay: 1.8s;
}

.phil-card-3 {
    animation-delay: 2s;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.phil-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Glow */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.phil-card:hover .card-glow {
    opacity: 1;
}

/* Number Badge */
.card-number-revolutionary {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.number-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    position: relative;
    z-index: 2;
}

.number-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Card Content */
.card-content-wrapper {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border-radius: 16px;
    margin-bottom: var(--spacing-lg);
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.phil-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
}

.card-title-revolutionary {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.card-description-revolutionary {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    font-weight: 300;
}

/* Animated Border */
.card-border-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold), var(--color-accent));
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: borderGradient 3s ease infinite;
}

.phil-card:hover .card-border-animated {
    opacity: 0.3;
}

@keyframes borderGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.visual-card {
    background: var(--color-ivory);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.visual-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-gold);
}

.card-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.2);
    line-height: 1;
}

.visual-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.visual-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ============================================
   ENVIRONMENTS MASONRY
   ============================================ */
.environments-masonry {
    padding: var(--spacing-3xl) 0;
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}

/* ============================================
   FLOATING NUMBERS
   ============================================ */
.floating-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-num {
    position: absolute;
    font-family: var(--font-display);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(201, 169, 97, 0.03);
    line-height: 1;
    animation: floatNumber 25s ease-in-out infinite;
    user-select: none;
}

.float-num:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-num:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 8s;
}

.float-num:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes floatNumber {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.03;
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
        opacity: 0.05;
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
        opacity: 0.04;
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
        opacity: 0.05;
    }
}

.masonry-header {
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.masonry-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(201, 169, 97, 0.1);
    color: var(--color-accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.masonry-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.masonry-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 180px);
    gap: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.masonry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.masonry-item:hover::before {
    opacity: 1;
}

.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold-lg);
}

.masonry-item.large {
    grid-column: span 7;
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 8;
    grid-row: span 1;
}

.masonry-item:not(.large):not(.wide) {
    grid-column: span 5;
    grid-row: span 1;
}

.masonry-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.masonry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform;
}

.masonry-item:hover .masonry-image img {
    transform: scale(1.05);
}

.masonry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: var(--color-white);
    z-index: 2;
}

.masonry-category {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(201, 169, 97, 0.2);
    color: var(--color-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.masonry-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.masonry-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.masonry-link {
    color: var(--color-gold-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.masonry-link:hover {
    gap: var(--spacing-sm);
    color: var(--color-gold);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* ============================================
   TIMELINE WAVES
   ============================================ */
.timeline-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50px);
    }
}

.timeline-header {
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.timeline-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(201, 169, 97, 0.1);
    color: var(--color-accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.timeline-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2);
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    background: var(--color-ivory);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition-elegant);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201, 169, 97, 0.3);
}

.timeline-step {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}
    
.timeline-content p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS OVERLAP
   ============================================ */
.testimonials-overlap {
    padding: var(--spacing-3xl) 0;
    background: var(--color-ivory);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.testimonials-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(201, 169, 97, 0.1);
    color: var(--color-accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    position: relative;
}

.testimonial-card-overlap {
    flex: 1;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.testimonial-card-overlap:nth-child(2) {
    margin-top: var(--spacing-3xl);
}

.testimonial-card-overlap:nth-child(3) {
    margin-top: var(--spacing-2xl);
}

.testimonial-card-overlap:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold-lg);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.testimonial-card-overlap:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-text {
    padding: var(--spacing-lg);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.testimonial-text p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* ============================================
   CTA FULLWIDTH
   ============================================ */
/* ============================================
   CTA REVOLUTIONARY - DESIGN FORA DA CURVA
   ============================================ */
.cta-revolutionary {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-primary-dark);
}

/* Parallax Background */
.cta-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('foto1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 20s ease-out;
}

.cta-revolutionary:hover .cta-bg-image {
    transform: scale(1.15);
}

.cta-bg-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(201, 169, 97, 0.03) 2px,
            rgba(201, 169, 97, 0.03) 4px
        );
    z-index: 1;
    opacity: 0.5;
}

/* Animated Elements */
.cta-animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
    filter: blur(40px);
    animation: ctaOrbFloat 15s ease-in-out infinite;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.cta-orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes ctaOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.7;
    }
}

.cta-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    height: 1px;
    animation: ctaLineMove 8s ease-in-out infinite;
}

.cta-line-1 {
    top: 30%;
    left: -100%;
    width: 400px;
    animation-delay: 0s;
}

.cta-line-2 {
    bottom: 30%;
    right: -100%;
    width: 400px;
    animation-delay: 4s;
    animation-name: ctaLineMoveReverse;
}

@keyframes ctaLineMove {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

@keyframes ctaLineMoveReverse {
    0% {
        right: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        right: 150%;
        opacity: 0;
    }
}

/* Main Content */
.cta-content-revolutionary {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

/* Question Mark */
.cta-question-mark {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-2xl);
    color: var(--color-accent);
    opacity: 0.2;
    animation: questionMarkRotate 20s linear infinite;
}

@keyframes questionMarkRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Text Content */
.cta-text-content {
    margin-bottom: var(--spacing-4xl);
}

.cta-title-revolutionary {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.cta-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateY(90deg);
    animation: ctaWordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cta-word:nth-child(1) { animation-delay: 0.3s; }
.cta-word:nth-child(2) { animation-delay: 0.4s; }
.cta-word:nth-child(3) { animation-delay: 0.5s; }
.cta-word:nth-child(4) { animation-delay: 0.6s; }
.cta-word:nth-child(5) { animation-delay: 0.7s; }

@keyframes ctaWordReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateY(0deg);
    }
}

.highlight-cta {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
    animation: ctaUnderlineExpand 0.8s ease-out 1s forwards;
}

@keyframes ctaUnderlineExpand {
    to {
        width: 100%;
    }
}

.cta-description-revolutionary {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: ctaDescFadeIn 1s ease-out 0.9s forwards;
}

@keyframes ctaDescFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(201, 169, 97, 0.1), transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a1a1a 100%);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('foto1.jpg') center/cover;
    opacity: 0.2;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 var(--spacing-lg);
}

/* CTA Button Revolutionary */
.cta-button-wrapper {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: ctaButtonFadeIn 1s ease-out 1.2s forwards;
}

@keyframes ctaButtonFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-cta-revolutionary {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-3xl);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold) 100%);
    color: var(--color-primary-dark);
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(201, 169, 97, 0.3),
        0 0 0 0 rgba(201, 169, 97, 0.5);
}

.btn-cta-revolutionary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(201, 169, 97, 0.4),
        0 0 0 8px rgba(201, 169, 97, 0.1);
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
    position: relative;
    z-index: 2;
}

.btn-text-main {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.btn-text-sub {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 500;
}

.btn-cta-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta-revolutionary:hover .btn-cta-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 0, 0, 0.2);
}

.btn-cta-revolutionary:hover .btn-icon-glow {
    opacity: 1;
}

.btn-cta-ripple {
    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 ease, height 0.6s ease;
    z-index: 1;
}

.btn-cta-revolutionary:hover .btn-cta-ripple {
    width: 500px;
    height: 500px;
}

.btn-cta-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 1;
}

.btn-cta-revolutionary:hover .btn-cta-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Decorative Corners */
.cta-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    opacity: 0;
    animation: cornerFadeIn 1s ease-out 1.5s forwards;
}

.cta-corner-tl {
    top: var(--spacing-xl);
    left: var(--spacing-xl);
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 20px;
}

.cta-corner-tr {
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 20px;
}

.cta-corner-bl {
    bottom: var(--spacing-xl);
    left: var(--spacing-xl);
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 20px;
}

.cta-corner-br {
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 20px;
}

@keyframes cornerFadeIn {
    to {
        opacity: 1;
    }
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-2xl);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-elegant);
    box-shadow: var(--shadow-gold-lg);
    letter-spacing: 0.5px;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.4);
}

/* ============================================
   FOOTER MINIMAL
   ============================================ */
.footer-minimal {
    background: #ffffff;
    color: var(--color-primary-dark);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    max-width: min(320px, 100%);
    object-fit: contain;
    object-position: left center;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: 1px;
}

.footer-contact p {
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom p {
    color: rgba(0, 0, 0, 0.45);
    font-size: 0.875rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: calc(var(--spacing-xl) + 80px);
    right: var(--spacing-xl);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-elegant);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: var(--spacing-xl);
    width: 380px;
    max-height: 600px;
    background: var(--color-primary-dark);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 97, 0.2);
    z-index: 10000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-container.active {
    display: flex !important;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.chatbot-header-text h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 0.5px;
}

.chatbot-header-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
}

.chatbot-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-elegant);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-height: 400px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 97, 0.3);
    border-radius: 10px;
}

.message {
    display: flex;
    animation: messageSlideIn 0.3s ease-out;
}

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

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 16px;
    position: relative;
}

.bot-message .message-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.15);
    color: var(--color-white);
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    color: var(--color-primary-dark);
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.message-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.message-content p + p {
    margin-top: var(--spacing-xs);
}

.chatbot-input-area {
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    background: rgba(0, 0, 0, 0.2);
    display: block !important;
    visibility: visible !important;
    min-height: 60px;
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.chatbot-option {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-elegant);
    font-size: 0.875rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.chatbot-option a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.chatbot-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%) !important;
    border-color: #25D366 !important;
    color: var(--color-white) !important;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
}

.chatbot-whatsapp-btn:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.chatbot-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    transition: left 0.5s;
}

.chatbot-option:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--color-gold);
    transform: translateX(4px);
}

.chatbot-option:hover::before {
    left: 100%;
}

.chatbot-input-wrapper {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.chatbot-input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 0.875rem;
    transition: var(--transition-elegant);
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.12);
}

.chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%);
    color: var(--color-primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-elegant);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.chatbot-send:active {
    transform: scale(0.95);
}

.chatbot-toggle {
    position: fixed !important;
    bottom: var(--spacing-xl) !important;
    right: var(--spacing-xl) !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    border: none !important;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent-light) 100%) !important;
    color: var(--color-primary-dark) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4) !important;
    z-index: 999999 !important;
    transition: var(--transition-elegant);
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.chatbot-toggle:active {
    transform: scale(0.95) !important;
}

.chatbot-toggle svg,
.chatbot-toggle .chatbot-badge {
    pointer-events: none;
}

.chatbot-toggle:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.5);
}

.chatbot-toggle.active {
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff4444;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.chatbot-badge.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 80px;
        max-height: calc(100vh - 200px);
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-container {
        max-height: calc(100vh - 180px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .hero-stats-side {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .stat-card {
        min-width: 150px;
        text-align: center;
    }
}
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .masonry-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
    }
    
    .masonry-item.large {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    .masonry-item.wide {
        grid-column: span 6;
    }
    
    .masonry-item:not(.large):not(.wide) {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .hero-unique {
        min-height: auto;
        padding: var(--spacing-3xl) var(--spacing-lg);
        flex-direction: column;
    }
    
    .hero-main-content {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        margin-bottom: var(--spacing-3xl);
    }
    
    .hero-image-float {
        position: relative;
        top: auto;
        right: auto;
        transform: none !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto var(--spacing-2xl);
    }
    
    .image-float-wrapper {
        transform: rotate(0deg) !important;
        animation: none;
    }
    
    .title-block-1,
    .title-block-2,
    .title-block-3 {
        margin-left: 0 !important;
    }
    
    .title-block-2 {
        margin-left: 0;
    }
    
    .hero-stats-unique {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .decor-circle,
    .decor-line {
        display: none;
    }
    
    .hero-gradient-bg {
        display: none;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: var(--spacing-lg);
    }
    
    .masonry-item,
    .masonry-item.large,
    .masonry-item.wide {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .masonry-item {
        min-height: 300px;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: var(--spacing-3xl);
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .testimonials-container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .testimonial-card-overlap:nth-child(2),
    .testimonial-card-overlap:nth-child(3) {
        margin-top: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .philosophy-visual {
        gap: var(--spacing-lg);
    }
}

/* ============================================
   GLASSMORPHISM EFFECTS - FORA DA CURVA
   ============================================ */
.navbar-minimal {
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.masonry-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-text {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* ============================================
   SHIMMER EFFECTS - FORA DA CURVA
   ============================================ */
.btn-luxury, .btn-cta-large {
    position: relative;
    overflow: hidden;
}

.btn-luxury::after, .btn-cta-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ============================================
   GRADIENT ANIMATIONS - FORA DA CURVA
   ============================================ */
.hero-main-title .title-word.highlight {
    animation: shimmerText 3s ease-in-out infinite, fadeInUp 0.8s ease-out forwards;
}

.number-value {
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   HOVER GLOW EFFECTS - FORA DA CURVA
   ============================================ */
.masonry-item:hover .masonry-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    pointer-events: none;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ============================================
   SCROLL PROGRESS INDICATOR - FORA DA CURVA
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-width, 0%);
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    z-index: 10000;
    transition: width 0.05s linear;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
    
    .particles-container {
        display: none;
    }
    
    .geometric-shapes {
        opacity: 0.2;
    }
    
    .gold-orb {
        opacity: 0.3;
    }
}

/* ============================================
   MOBILE OPTIMIZATION - COMPLETA
   ============================================ */
@media (max-width: 768px) {
    /* Hero Revolutionary */
    .hero-revolutionary {
        min-height: 90vh;
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        padding: 0 var(--spacing-md);
    }
    
    .hero-title-revolutionary {
        font-size: clamp(2rem, 7vw, 4rem);
        gap: var(--spacing-xs);
    }
    
    .hero-description-revolutionary {
        font-size: 0.95rem;
        padding: 0 var(--spacing-md);
    }
    
    .hero-stats-side {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
    
    .stat-card {
        min-width: 140px;
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .hero-grid-lines {
        opacity: 0.15;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Philosophy Section */
    .philosophy-section {
        min-height: auto;
        padding: var(--spacing-3xl) 0;
    }
    
    .philosophy-container {
        padding: 0 var(--spacing-md);
    }
    
    .philosophy-header {
        margin-bottom: var(--spacing-3xl);
    }
    
    .philosophy-tag-revolutionary {
        margin-bottom: var(--spacing-lg);
    }
    
    .tag-line {
        width: 40px;
    }
    
    .tag-text {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .philosophy-title-revolutionary {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-lg);
    }
    
    .philosophy-description-revolutionary {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }
    
    .philosophy-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .phil-card {
        padding: var(--spacing-xl);
    }
    
    .card-title-revolutionary {
        font-size: 1.25rem;
    }
    
    .card-description-revolutionary {
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .philosophy-bg-animated {
        opacity: 0.3;
    }
    
    .philosophy-particles {
        display: none;
    }
    
    /* Environments Masonry */
    .environments-masonry {
        padding: var(--spacing-2xl) 0;
    }
    
    .masonry-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .masonry-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .masonry-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .masonry-item {
        min-height: 250px;
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .masonry-content {
        padding: var(--spacing-md);
    }
    
    .masonry-content h3 {
        font-size: 1.125rem;
    }
    
    /* Process Timeline */
    .process-timeline {
        padding: var(--spacing-2xl) 0;
    }
    
    .timeline-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .timeline-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .timeline-container {
        padding: 0 var(--spacing-md);
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: var(--spacing-2xl);
        margin-bottom: var(--spacing-xl);
    }
    
    .timeline-content {
        max-width: 100%;
        padding: var(--spacing-md);
    }
    
    .timeline-marker {
        left: var(--spacing-md);
    }
    
    .timeline-container::before {
        left: var(--spacing-md);
    }
    
    /* Testimonials */
    .testimonials-overlap {
        padding: var(--spacing-2xl) 0;
    }
    
    .testimonials-header {
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .testimonials-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .testimonials-container {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .testimonial-card-overlap {
        margin-top: 0 !important;
    }
    
    .testimonial-image {
        height: 180px;
    }
    
    .testimonial-text {
        padding: var(--spacing-md);
    }
    
    /* CTA Revolutionary */
    .cta-revolutionary {
        min-height: 80vh;
        padding: var(--spacing-3xl) 0;
    }
    
    .cta-content-revolutionary {
        padding: 0 var(--spacing-md);
    }
    
    .cta-question-mark {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-lg);
    }
    
    .cta-title-revolutionary {
        font-size: clamp(1.75rem, 6vw, 3rem);
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-lg);
    }
    
    .cta-description-revolutionary {
        font-size: 0.95rem;
        padding: 0 var(--spacing-md);
        margin-bottom: var(--spacing-2xl);
    }
    
    .btn-cta-revolutionary {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-lg) var(--spacing-xl);
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-cta-text {
        width: 100%;
        text-align: center;
    }
    
    .btn-text-main {
        font-size: 1rem;
    }
    
    .btn-text-sub {
        font-size: 0.7rem;
    }
    
    .btn-cta-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-corner {
        width: 50px;
        height: 50px;
        display: none;
    }
    
    .cta-orb {
        display: none;
    }
    
    .cta-line {
        display: none;
    }
    
    .cta-bg-image {
        background-attachment: scroll;
    }
    
    /* Footer */
    .footer-minimal {
        padding: var(--spacing-2xl) 0 var(--spacing-md);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .footer-bottom {
        padding: 0 var(--spacing-md);
        padding-top: var(--spacing-md);
    }
    
    /* General Optimizations */
    .geometric-shapes {
        display: none;
    }
    
    .float-num {
        font-size: 6rem;
        opacity: 0.02;
    }
    
    .decorative-lines {
        display: none;
    }
    
    .particles-container {
        display: none;
    }
    
    /* Navbar */
    .navbar-minimal {
        padding: var(--spacing-xs) 0;
    }
    
    .logo-img {
        height: 52px;
        max-height: 52px;
    }
    
    .footer-logo-img {
        height: 72px;
    }
    
    .nav-contact {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices - Complete Optimization */
    .hero-revolutionary {
        min-height: 85vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title-revolutionary {
        font-size: clamp(1.75rem, 8vw, 3rem);
    }
    
    .hero-description-revolutionary {
        font-size: 0.875rem;
    }
    
    .stat-card {
        min-width: 110px;
        padding: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
    
    .philosophy-title-revolutionary {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .phil-card {
        padding: var(--spacing-md);
    }
    
    .card-title-revolutionary {
        font-size: 1.125rem;
    }
    
    .card-description-revolutionary {
        font-size: 0.85rem;
    }
    
    .masonry-item {
        min-height: 200px;
    }
    
    .masonry-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.125rem;
    }
    
    .cta-title-revolutionary {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .btn-cta-revolutionary {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .btn-text-main {
        font-size: 0.95rem;
    }
    
    .btn-text-sub {
        font-size: 0.65rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .gold-orb {
        display: none;
    }
    
    .cta-question-mark {
        width: 50px;
        height: 50px;
    }
    
    /* Performance Optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Disable heavy animations on mobile */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Touch Optimizations */
@media (max-width: 768px) {
    /* Larger touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn-cta-revolutionary,
    .btn-revolutionary,
    .btn-luxury {
        min-height: 48px;
        padding: var(--spacing-md) var(--spacing-xl);
    }
    
    /* Disable hover effects on touch devices */
    .phil-card:hover,
    .stat-card:hover,
    .masonry-item:hover {
        transform: none;
    }
    
    /* Optimize background images */
    .cta-bg-image {
        background-attachment: scroll;
        transform: scale(1);
    }
    
    /* Reduce blur effects for performance */
    .card-glow,
    .image-float-glow,
    .cta-orb {
        filter: blur(20px);
    }
}

