/* STG Outdoor - Clean Professional Site */

:root {
    --black: #000000;
    --dark: #111111;
    --gray: #333333;
    --white: #ffffff;
    --orange: #ff4500;
    --orange-light: #ffa500;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: crosshair;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Cursor */
.cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

/* Language Selector - Modern Design */
.language-selector {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid var(--orange);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    transform: translateY(-2px);
}

.flag {
    font-size: 1.4rem;
}

.chevron {
    font-size: 12px;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.language-selector:hover .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray);
    border-radius: 0 0 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-selector:hover .lang-dropdown,
.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: rgba(255, 69, 0, 0.1);
    color: var(--orange);
}

/* Header - Centered Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-brand {
    position: absolute;
    left: 0;
}

.nav-brand .logo {
    height: 48px;
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.5));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

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

.nav-link:hover::before {
    width: 100%;
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.4);
}

.nav-link.nav-cta::before {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                var(--black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 69, 0, 0.05) 2px,
        rgba(255, 69, 0, 0.05) 4px
    );
    animation: scan 12s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    color: var(--orange);
}

.btn-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 69, 0, 0.4);
}

/* Carousel Section - PREMIUM MODELO */
.carousel-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

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

.carousel-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.carousel-header p {
    font-size: 1.1rem;
    color: #ccc;
}


/* Carousel Container */
.carousel-wrapper {
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    perspective: 1200px;
    overflow: visible;
}

/* Slides Container */
.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
}

/* Individual Slide */
.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: rotateY(45deg) scale(0.8);
    filter: blur(10px);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: rotateY(0) scale(1) translateZ(0);
    filter: blur(0);
    pointer-events: all;
    z-index: 10;
}

.carousel-slide.prev {
    opacity: 0.7;
    transform: translateX(-50%) rotateY(25deg) scale(0.85) translateZ(-200px);
    filter: blur(2px);
    z-index: 5;
}

.carousel-slide.next {
    opacity: 0.7;
    transform: translateX(50%) rotateY(-25deg) scale(0.85) translateZ(-200px);
    filter: blur(2px);
    z-index: 5;
}

/* Slide Image Container */
.slide-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Overlay */
.slide-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Slide Image */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.03) 0%, rgba(255, 165, 0, 0.01) 100%);
    transform: scale(1.1);
    transition: transform 8s ease;
}

.carousel-slide.active .slide-image {
    transform: scale(1);
}

/* Content Overlay */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 60px 40px;
    z-index: 2;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
    text-align: center;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

/* Slide Number */
.slide-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    font-style: italic;
    z-index: 2;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
}

.carousel-slide.active .slide-number {
    transform: translateX(0);
    opacity: 1;
}

/* Title */
.slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.slide-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.slide-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.slide-cta:hover::before {
    width: 300px;
    height: 300px;
}

.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -80px;
}

.carousel-nav.next {
    right: -80px;
}

.carousel-nav::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-right: 3px solid rgba(255, 255, 255, 0.8);
}

.carousel-nav.prev::after {
    transform: rotate(-135deg) translateX(2px);
}

.carousel-nav.next::after {
    transform: rotate(45deg) translateX(-2px);
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transition: left 0.3s ease;
}

.indicator.active::before {
    left: 0;
    animation: indicatorProgress 5s linear;
}

@keyframes indicatorProgress {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Products Section */
.products {
    padding: 120px 0;
    background: var(--black);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #ccc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 69, 0, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 32px 64px rgba(255, 69, 0, 0.2);
    border-color: var(--orange);
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-image {
    position: relative;
    height: 400px;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 4s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

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

.product-image img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .zoom-overlay {
    opacity: 1;
}

.zoom-text {
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
    background: var(--orange);
    border-radius: 50px;
    font-size: 14px;
}

.product-info {
    padding: 2.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-info p {
    color: #ccc;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--dark);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.about-logo-img {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.about-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    border-left: 3px solid var(--orange);
    padding-left: 2rem;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #ccc;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 69, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.1);
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat .label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--black);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid var(--orange);
    border-radius: 50px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-benefits span {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 50px;
    color: #ccc;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-benefits span:hover {
    background: rgba(255, 69, 0, 0.1);
    border-color: var(--orange);
    color: var(--orange);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark);
}

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

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #ccc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 69, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--orange-light);
}

.contact-card p {
    color: #999;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 69, 0, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

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

.footer-brand p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.footer-column a,
.footer-column span {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--orange);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #999;
    font-size: 14px;
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 48px;
    height: 48px;
    background: var(--orange);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.lightbox-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.lightbox-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* Animations */
.word {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
    }
    
    .product-image {
        height: 350px;
        padding: 2.5rem;
    }
    
    .product-image img {
        width: 115%;
        height: 115%;
    }
}

@media (max-width: 768px) {
    .cursor,
    .cursor-dot {
        display: none !important;
    }
    
    body {
        cursor: auto !important;
    }
    
    .language-selector {
        top: 1rem;
        right: 1rem;
    }
    
    .nav {
        justify-content: space-between;
    }
    
    .nav-brand {
        position: relative;
        left: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image {
        height: 280px;
        padding: 2rem;
    }
    
    .product-image img {
        width: 110%;
        height: 110%;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide-image {
        height: 280px;
        padding: 2rem;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Carousel Mobile Fixes */
    .carousel-section {
        padding: 60px 0; /* Reduzido de 120px para 60px */
    }
    
    .carousel-container {
        height: 320px; /* Reduzido de 600px para 320px */
        max-width: 100%;
        padding: 0 10px;
    }
    
    .carousel-wrapper {
        padding: 0 10px; /* Reduzido padding lateral */
    }
    
    .carousel-indicators {
        bottom: -30px; /* Reduzido de -50px para -30px */
        gap: 10px; /* Reduzido gap entre indicadores */
    }
    
    .indicator {
        width: 40px; /* Reduzido de 60px para 40px */
        height: 3px; /* Reduzido de 4px para 3px */
    }
    
    .carousel-nav {
        width: 50px; /* Reduzido de 60px para 50px */
        height: 50px;
    }
    
    .carousel-nav.prev {
        left: -60px; /* Ajustado posicionamento */
    }
    
    .carousel-nav.next {
        right: -60px; /* Ajustado posicionamento */
    }
    
    .slide-image-container {
        border-radius: 12px; /* Reduzido de 20px */
    }
    
    .slide-number {
        top: 20px; /* Reduzido de 40px */
        right: 20px;
        font-size: 3rem; /* Reduzido de 5rem */
    }
}

/* Placeholder para linha camping */
.placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px dashed rgba(255, 69, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.placeholder-text {
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card:hover .placeholder-image {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-color: rgba(255, 69, 0, 0.5);
    transform: scale(1.05);
}

/* Product Video Card */
.product-video-card .product-video {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-video-card:hover .video-embed iframe {
    transform: scale(1.02);
}

.product-video-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 32px 64px rgba(255, 69, 0, 0.2);
    border-color: var(--orange);
}

/* Responsive video */
@media (max-width: 768px) {
    .product-video-card .product-video {
        height: 250px;
    }
    
    .video-embed {
        padding-bottom: 56.25%;
    }
}

/* Modern 3D WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    perspective: 1000px;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #25D366 0%, #1DB954 50%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 4px 15px rgba(37, 211, 102, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: float-breath 4s ease-in-out infinite;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3) 0%, transparent 40%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateZ(1px);
}

.whatsapp-float a::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.whatsapp-float a:hover::before {
    opacity: 1;
    transform: translateZ(2px) rotate(180deg);
}

.whatsapp-float a:hover {
    transform: translateY(-8px) scale(1.15) rotateX(10deg) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(37, 211, 102, 0.6),
        0 10px 25px rgba(37, 211, 102, 0.4),
        0 5px 15px rgba(37, 211, 102, 0.3),
        0 0 20px rgba(37, 211, 102, 0.8),
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15);
    animation: none;
}

.whatsapp-icon {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float a:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Modern 3D Share Buttons */
.share-buttons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    perspective: 1000px;
}

.share-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--orange) 0%, #ff6b35 50%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(255, 69, 0, 0.4),
        0 4px 15px rgba(255, 69, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: float-breath-reverse 4s ease-in-out infinite;
}

.share-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3) 0%, transparent 40%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateZ(1px);
}

.share-toggle::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.share-toggle:hover::before {
    opacity: 1;
    transform: translateZ(2px) rotate(-180deg);
}

.share-toggle:hover {
    transform: translateY(-8px) scale(1.15) rotateX(-10deg) rotateY(-5deg);
    box-shadow: 
        0 20px 40px rgba(255, 69, 0, 0.6),
        0 10px 25px rgba(255, 69, 0, 0.4),
        0 5px 15px rgba(255, 69, 0, 0.3),
        0 0 20px rgba(255, 69, 0, 0.8),
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15);
    animation: none;
}

.share-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.share-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.share-toggle:hover .share-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.share-options {
    position: absolute;
    top: -180px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-buttons.active .share-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.share-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-option:hover::before {
    opacity: 1;
}

.share-option:hover {
    transform: translateY(-2px) scale(1.1);
}

.share-option.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    color: white;
}

.share-option.facebook:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.share-option.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #F77737 100%);
    color: white;
}

.share-option.instagram:hover {
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.share-option.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
}

.share-option.youtube:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Footer Social Icons */
.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: all 0.3s ease;
    color: #ccc;
}

.footer-social a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-social svg {
    transition: transform 0.3s ease;
}

.footer-social a:hover svg {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .share-buttons {
        bottom: 80px;
        right: 20px;
    }
    
    .share-toggle {
        width: 50px;
        height: 50px;
    }
    
    .share-option {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-tooltip,
    .share-tooltip {
        display: none;
    }
}

/* 3D Float Animations */
@keyframes float-breath {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotateX(0deg) rotateY(0deg);
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.4),
            0 4px 15px rgba(37, 211, 102, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.2),
            inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: translateY(-3px) scale(1.02) rotateX(2deg) rotateY(1deg);
        box-shadow: 
            0 12px 30px rgba(37, 211, 102, 0.5),
            0 6px 20px rgba(37, 211, 102, 0.3),
            inset 0 3px 6px rgba(255, 255, 255, 0.25),
            inset 0 -3px 6px rgba(0, 0, 0, 0.15);
    }
}

@keyframes float-breath-reverse {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotateX(0deg) rotateY(0deg);
        box-shadow: 
            0 8px 25px rgba(255, 69, 0, 0.4),
            0 4px 15px rgba(255, 69, 0, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.2),
            inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: translateY(-3px) scale(1.02) rotateX(-2deg) rotateY(-1deg);
        box-shadow: 
            0 12px 30px rgba(255, 69, 0, 0.5),
            0 6px 20px rgba(255, 69, 0, 0.3),
            inset 0 3px 6px rgba(255, 255, 255, 0.25),
            inset 0 -3px 6px rgba(0, 0, 0, 0.15);
    }
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-story {
    padding: 120px 0;
    background: var(--black);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.story-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 4rem;
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--orange) 0%, transparent 100%);
}

.timeline-year {
    min-width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--orange);
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px dashed rgba(255, 69, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mission-values {
    padding: 120px 0;
    background: var(--dark);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 69, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.value-card p {
    color: #ccc;
    line-height: 1.7;
}

.global-presence {
    padding: 120px 0;
    background: var(--black);
}

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

.region-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 69, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.15);
}

.region-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--orange);
}

.region-card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.region-flag {
    font-size: 1.5rem;
}

.technical-excellence {
    padding: 120px 0;
    background: var(--dark);
}

.excellence-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.excellence-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.technical-features {
    margin-top: 3rem;
}

.tech-feature {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--orange);
}

.tech-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--orange);
}

.tech-feature p {
    color: #ccc;
    line-height: 1.6;
}

.excellence-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Active State */
.nav-link.active {
    color: var(--orange);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    
    .story-content,
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .excellence-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-logo-img {
        height: 60px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .company-story,
    .mission-values,
    .global-presence,
    .technical-excellence {
        padding: 80px 0;
    }
    
    .story-text h2,
    .excellence-text h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        gap: 1.5rem;
    }
    
    .timeline-year {
        min-width: 4rem;
        height: 4rem;
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
