/* ============================================
   BORJAS - MAIN STYLESHEET
   Venezuelan Tequeños in Iceland
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Variables)
   ============================================ */
:root {
    /* Primary Colors - Borjas Gold Palette */
    --color-primary: #C9930A;
    --color-primary-dark: #8B6914;
    --color-primary-light: #F0C040;

    /* Secondary Colors - Gold Tones */
    --color-secondary: #F5D16A;
    --color-secondary-dark: #C9930A;
    --color-secondary-light: #FBE8A6;

    /* Accent Colors - Bright Gold */
    --color-accent: #F0C040;
    --color-accent-light: #F5D16A;

    /* Neutral Colors - Dark & Elegant */
    --color-white: #FFFFFF;
    --color-black: #0D0D12;
    --color-gray-100: #F5EDD8;
    --color-gray-200: #E8DFC8;
    --color-gray-300: #C8BEA8;
    --color-gray-400: #9A9080;
    --color-gray-500: #6A6258;
    --color-gray-600: #4A4440;
    --color-gray-700: #2A2420;
    --color-gray-800: #1A1610;
    --color-gray-900: #0D0D12;

    /* Background Colors - Borjas Dark Elegance */
    --bg-light: #F8F4EC;
    --bg-cream: #F2E8D0;
    --bg-dark: #0D0D12;

    /* Gradients - Borjas Brand */
    --gradient-primary: linear-gradient(135deg, #8B6914 0%, #F5D16A 40%, #C9930A 70%, #8B6914 100%);
    --gradient-warm: linear-gradient(135deg, #C9930A 0%, #F0C040 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 13, 18, 0.96) 0%, rgba(20, 16, 8, 0.93) 100%);

    /* Typography - Brand Fonts: Rubik & Poppins */
    --font-primary: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes (Fluid Typography) */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --fs-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --fs-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --fs-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --fs-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
    --fs-5xl: clamp(3rem, 2rem + 5vw, 5rem);

    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows - Borjas Gold Glow */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 20px rgba(201, 147, 10, 0.2);
    --shadow-card-hover: 0 8px 35px rgba(201, 147, 10, 0.35);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-loader: 1000;

    /* Container */
    --container-max: 1200px;
    --container-padding: clamp(1rem, 3vw, 2rem);

    /* Header */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--color-gray-900);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

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

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-secondary);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-img {
    height: 80px;
    width: auto;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(13, 13, 18, 0.97);
    box-shadow: 0 2px 20px rgba(201, 147, 10, 0.15);
    height: 70px;
}

.header.scrolled .logo-text {
    color: var(--color-white);
}

.header.scrolled .nav-link {
    color: var(--color-gray-300);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: var(--z-fixed);
}

.logo-icon {
    font-size: 2rem;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.logo-img:hover {
}

.footer-logo .logo-img {
    height: 56px;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    transition: color var(--transition-base);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-white);
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-light);
}

.btn-nav {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
    z-index: var(--z-fixed);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after {
    background: var(--color-primary-light);
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        padding: var(--space-2xl);
        transition: right var(--transition-base);
    }

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

    .nav-link {
        font-size: var(--fs-lg);
        color: var(--color-white);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        padding: var(--space-md) var(--space-xl);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #8B6914 0%, #C9930A 40%, #F0C040 80%, #C9930A 100%);
    color: #0D0D12;
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 15px rgba(201, 147, 10, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C9930A 0%, #F0C040 50%, #C9930A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 147, 10, 0.5);
}

.btn-secondary {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-gray-900);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-light {
    background: linear-gradient(135deg, #8B6914 0%, #C9930A 40%, #F0C040 80%, #C9930A 100%);
    color: #0D0D12;
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 15px rgba(201, 147, 10, 0.3);
}

.btn-light:hover {
    background: linear-gradient(135deg, #C9930A 0%, #F0C040 50%, #C9930A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 147, 10, 0.5);
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--fs-xs);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-lg);
}

.btn-block {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 810"><rect fill="%230D0D12" width="1440" height="810"/><g fill-opacity="0.06"><path fill="%23C9930A" d="M0 0h1440v810H0z"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

.hero-text {
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: var(--fs-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

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

.hero-description {
    font-size: var(--fs-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.stat-label {
    font-size: var(--fs-xs);
    opacity: 0.8;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img-placeholder {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.4) 0%, rgba(201, 147, 10, 0.3) 50%, rgba(240, 192, 64, 0.2) 100%);
    border-radius: var(--radius-2xl);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-img-placeholder i {
    font-size: 6rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.hero-img-placeholder span {
    color: var(--color-white);
    font-weight: var(--fw-semibold);
}

.floating-badge {
    position: absolute;
    background: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--color-primary);
}

.floating-badge span {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-gray-800);
}

.badge-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    opacity: 0.7;
    font-size: var(--fs-sm);
    animation: bounce 2s infinite;
}

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

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: var(--color-gray-900);
    color: var(--color-primary-light);
    border: 1px solid rgba(201, 147, 10, 0.4);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: var(--fs-lg);
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PRODUCTOS SECTION
   ============================================ */
.productos {
    background: var(--bg-light);
}

/* Sections alternating dark/light for elegance */
.servicios {
    background: var(--color-gray-900);
    color: var(--color-white);
}

.servicios .section-title,
.servicios .section-description {
    color: var(--color-white);
}

.servicios .section-description {
    color: var(--color-gray-300);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.producto-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.producto-card.featured {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.producto-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-accent);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    z-index: 10;
}

.producto-badge.coming-soon {
    background: var(--color-gray-600);
}

.producto-image {
    position: relative;
    overflow: hidden;
}

.producto-img-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #8B6914 0%, #C9930A 40%, #F0C040 70%, #8B6914 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.featured .producto-img-placeholder {
    aspect-ratio: 1;
}

.producto-img-placeholder i {
    font-size: 4rem;
    color: var(--color-white);
    opacity: 0.8;
}

.producto-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.producto-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-sm);
}

.producto-description {
    color: var(--color-gray-600);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
    flex: 1;
}

.producto-features {
    margin-bottom: var(--space-md);
}

.producto-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--color-gray-700);
    margin-bottom: var(--space-xs);
}

.producto-features i {
    color: var(--color-primary);
}

.producto-sizes {
    margin-bottom: var(--space-md);
}

.size-label {
    font-size: var(--fs-xs);
    color: var(--color-gray-600);
    display: block;
    margin-bottom: var(--space-xs);
}

.sizes {
    display: flex;
    gap: var(--space-sm);
}

.size {
    background: var(--color-gray-100);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
}

.producto-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-gray-200);
    margin-top: auto;
}

.price-label {
    font-size: var(--fs-xs);
    color: var(--color-gray-600);
    display: block;
}

.price-value {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
}

.coming-soon-text {
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
    font-style: italic;
}

.productos-cta {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
}

.productos-cta p {
    margin-bottom: var(--space-md);
    color: var(--color-gray-600);
}

/* Productos Responsive */
@media (max-width: 991px) {
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .producto-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

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

    .producto-card.featured {
        grid-column: span 1;
    }
}

/* ============================================
   SERVICIOS SECTION
   ============================================ */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.servicio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 147, 10, 0.2);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--transition-base);
}

.servicios .servicio-title {
    color: var(--color-white);
}

.servicios .servicio-description,
.servicios .servicio-features li {
    color: var(--color-gray-300);
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 147, 10, 0.5);
    background: rgba(201, 147, 10, 0.08);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.servicio-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.servicio-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.servicio-description {
    font-size: var(--fs-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--space-md);
}

.servicio-features {
    text-align: left;
}

.servicio-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--color-gray-700);
    margin-bottom: var(--space-xs);
}

.servicio-features i {
    color: var(--color-primary);
    font-size: var(--fs-xs);
}

/* Servicios Responsive */
@media (max-width: 1100px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   NOSOTROS SECTION
   ============================================ */
.nosotros {
    background: var(--bg-light);
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.nosotros-text .section-badge {
    margin-bottom: var(--space-md);
}

.nosotros-text .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.nosotros-lead {
    font-size: var(--fs-lg);
    font-weight: var(--fw-medium);
    color: var(--color-gray-800);
    margin-bottom: var(--space-md);
}

.nosotros-text p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-md);
}

.nosotros-values {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    color: var(--color-white);
    font-size: var(--fs-lg);
}

.value-content h4 {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
}

.value-content p {
    font-size: var(--fs-sm);
    margin-bottom: 0;
}

/* Nosotros Images */
.nosotros-images {
    position: relative;
}

.nosotros-img-main {
    margin-bottom: var(--space-lg);
}

.nosotros-img-secondary {
    width: 60%;
    margin-left: auto;
}

.img-placeholder {
    background: linear-gradient(135deg, #8B6914 0%, #C9930A 40%, #F0C040 70%, #8B6914 100%);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-placeholder i {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.img-placeholder span {
    color: var(--color-white);
    font-weight: var(--fw-medium);
}

.experience-badge {
    position: absolute;
    bottom: var(--space-xl);
    left: 0;
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1;
}

.exp-text {
    font-size: var(--fs-xs);
    color: var(--color-gray-600);
}

/* Nosotros Responsive */
@media (max-width: 991px) {
    .nosotros-content {
        grid-template-columns: 1fr;
    }

    .nosotros-text .section-title {
        text-align: center;
    }

    .nosotros-text {
        text-align: center;
    }

    .nosotros-values {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .value {
        text-align: left;
    }

    .nosotros-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   GALERIA SECTION
   ============================================ */
.galeria-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-gray-600);
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.galeria-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

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

.galeria-img-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #8B6914 0%, #C9930A 40%, #F0C040 70%, #8B6914 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.galeria-item:hover .galeria-img-placeholder {
    transform: scale(1.05);
}

.galeria-img-placeholder i {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.galeria-item.large .galeria-img-placeholder i {
    font-size: 4rem;
}

.galeria-img-placeholder span {
    color: var(--color-white);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

.galeria-overlay h4 {
    font-size: var(--fs-base);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.galeria-overlay p {
    font-size: var(--fs-sm);
    opacity: 0.8;
}

/* Galeria Responsive */
@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

    .nosotros-img-secondary {
        width: 100%;
        display: none;
    }

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

    .galeria-item.large {
        grid-column: span 1;
    }
}



/* ============================================
   TESTIMONIOS SECTION
   ============================================ */
.testimonios {
    background: var(--color-gray-900);
}

.testimonios .section-title,
.testimonios .section-title .highlight {
    color: var(--color-white);
}

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

.testimonios-slider {
    position: relative;
    overflow: hidden;
}

.testimonios-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform var(--transition-slow);
}

.testimonio-card {
    flex: 0 0 calc(33.333% - var(--space-lg));
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 147, 10, 0.2);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.testimonios .testimonio-text {
    color: var(--color-gray-300);
}

.testimonio-rating {
    margin-bottom: var(--space-md);
}

.testimonio-rating i {
    color: var(--color-primary);
    font-size: var(--fs-sm);
}

.testimonio-text {
    font-size: var(--fs-base);
    font-style: italic;
    color: var(--color-gray-700);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: var(--fw-bold);
}

.author-info strong {
    display: block;
    font-size: var(--fs-sm);
}

.author-info span {
    font-size: var(--fs-xs);
    color: var(--color-gray-500);
}

.testimonios-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.testimonios-dots {
    display: flex;
    gap: var(--space-sm);
}

.testimonios-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonios-dots .dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: var(--radius-full);
}

/* Testimonios Responsive */
@media (max-width: 991px) {
    .testimonio-card {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

@media (max-width: 640px) {
    .testimonio-card {
        flex: 0 0 100%;
    }
}

/* ============================================
   CONTACTO SECTION
   ============================================ */
.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contacto-info .section-badge,
.contacto-info .section-title {
    text-align: left;
}

.contacto-description {
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
}

.contacto-details {
    margin-bottom: var(--space-xl);
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contacto-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacto-icon i {
    color: var(--color-primary);
    font-size: var(--fs-lg);
}

.contacto-text strong {
    display: block;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
}

.contacto-text span,
.contacto-text a {
    font-size: var(--fs-sm);
    color: var(--color-gray-600);
}

.contacto-text a:hover {
    color: var(--color-primary);
}

.contacto-social {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contacto-social span {
    font-size: var(--fs-sm);
    color: var(--color-gray-600);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Contact Form */
.contacto-form-wrapper {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(201, 147, 10, 0.15);
    border: 1px solid rgba(201, 147, 10, 0.1);
}

.form-header {
    margin-bottom: var(--space-xl);
}

.form-header h3 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-xs);
}

.form-header p {
    color: var(--color-gray-600);
    font-size: var(--fs-sm);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.checkbox-group {
    margin-top: var(--space-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--color-gray-600);
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--color-primary);
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contacto Responsive */
@media (max-width: 991px) {
    .contacto-wrapper {
        grid-template-columns: 1fr;
    }

    .contacto-info .section-badge,
    .contacto-info .section-title {
        text-align: center;
    }

    .contacto-info {
        text-align: center;
    }

    .contacto-item {
        justify-content: center;
        text-align: left;
    }

    .contacto-social {
        justify-content: center;
    }
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0D0D12 0%, #1A1008 40%, #0D0D12 100%);
    border-top: 1px solid rgba(201, 147, 10, 0.3);
    border-bottom: 1px solid rgba(201, 147, 10, 0.3);
    padding: var(--space-4xl) 0;
}

.cta-content h2 .gold-text {
    background: linear-gradient(135deg, #F5D16A, #C9930A, #F0C040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content {
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: var(--fs-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: var(--fs-lg);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--color-white);
    padding-top: var(--space-4xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
}

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

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: var(--color-gray-400);
    font-size: var(--fs-sm);
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    font-size: var(--fs-sm);
    color: var(--color-gray-500);
}

.footer-bottom i {
    color: var(--color-accent);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

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

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ============================================
   BACK TO TOP & WHATSAPP BUTTONS
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

/* Animation delays for staggered effects */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .back-to-top,
    .whatsapp-float,
    .loader {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        page-break-inside: avoid;
    }
}
