/* ============================================
   FRUTACORP V2 - Fresh & Modern Design
   ============================================ */

/* CSS Variables - Fresh Green Palette */
:root {
    /* Primary Colors - Green Focus */
    --color-primary: #0F766E;
    --color-primary-dark: #0D5D56;
    --color-primary-light: #14B8A6;
    --color-primary-50: rgba(15, 118, 110, 0.05);
    --color-primary-100: rgba(15, 118, 110, 0.1);

    /* Secondary - Ocean Blue */
    --color-secondary: #0369A1;
    --color-secondary-light: #0EA5E9;

    /* Accent Colors from Logo */
    --color-accent: #F59E0B;
    --color-accent-light: #FBBF24;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-black: #0F172A;
    --color-gray-50: #F8FAFC;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-300: #CBD5E1;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1E293B;
    --color-gray-900: #0F172A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-fresh: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #0EA5E9 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(15, 118, 110, 0.3);
    --shadow-glow-accent: 0 0 40px rgba(245, 158, 11, 0.3);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader-inner {
    text-align: center;
}

.preloader-inner img {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--color-white);
    border-radius: var(--radius-full);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-normal);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.5);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-gray-900);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-accent svg {
    color: var(--color-gray-900);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--color-primary-100);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-label-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

/* Text Effects */
.text-gradient {
    background: var(--gradient-fresh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--color-accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    transition: color var(--transition-normal);
}

.header.scrolled .logo span {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

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

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

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.header.scrolled .nav-toggle span,
.header.scrolled .nav-toggle::before,
.header.scrolled .nav-toggle::after {
    background: var(--color-gray-700);
}

.nav-toggle span { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle::before { top: 8px; }
.nav-toggle::after { bottom: 8px; }

.nav-toggle.active span { opacity: 0; }
.nav-toggle.active::before { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.active::after { bottom: auto; top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

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

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&q=80');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.92) 0%, rgba(3, 105, 161, 0.88) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
    background: var(--color-gray-900);
    padding: 20px 0;
    overflow: hidden;
}

.features-marquee {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--gradient-fresh);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(80px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--color-white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    bottom: 80px;
    left: 40%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.floating-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

.about-floating-card span {
    font-weight: 600;
    color: var(--color-gray-800);
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-content .lead {
    font-size: 18px;
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--color-gray-500);
    margin-bottom: 32px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.about-card {
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-normal);
}

.about-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-100);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.about-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: var(--gradient-dark);
    will-change: transform;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services .section-header h2 {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-fresh);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-card-bg {
    opacity: 0.1;
}

.service-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 120px 0;
    background: var(--color-gray-50);
}

.process .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.process .section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--color-gray-200);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.step-content {
    width: calc(50% - 60px);
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-100);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-gray-500);
    margin: 0;
}

/* ============================================
   MARKETS SECTION
   ============================================ */
.markets {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.markets-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1920&q=80');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.markets-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95) 0%, rgba(3, 105, 161, 0.92) 100%);
}

.markets .container {
    position: relative;
    z-index: 2;
}

.markets-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.markets-content h2 {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.markets-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.market-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.market-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

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

.market-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.market-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--color-white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.market-icon svg {
    width: 32px;
    height: 32px;
}

.market-card h3 {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.market-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 120px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-us-content > p {
    color: var(--color-gray-500);
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.benefit-check {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--color-white);
}

.benefit-check svg {
    width: 18px;
    height: 18px;
}

.benefit-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin: 0;
}

.why-us-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    cursor: pointer;
}

.visual-card:hover .visual-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    color: var(--color-primary);
    transition: transform var(--transition-bounce);
}

.visual-card:hover .play-btn {
    transform: scale(1.1);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.visual-overlay span {
    color: var(--color-white);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: var(--gradient-primary);
    will-change: transform;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--color-gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--color-gray-500);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

a.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

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

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-content span {
    display: block;
    font-size: 12px;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-card-content strong {
    font-size: 16px;
    color: var(--color-gray-800);
}

/* Contact Form */
.contact-form-container {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 15px;
    color: var(--color-gray-400);
    pointer-events: none;
    transition: all var(--transition-fast);
    background: var(--color-white);
    padding: 0 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    color: var(--color-primary);
}

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

.contact-form .btn {
    margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--color-gray-50);
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

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

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-services a {
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--color-primary-light);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

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

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

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

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .markets-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-timeline {
        max-width: 100%;
    }

    .timeline-line {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
        gap: 40px;
        padding-left: 80px;
    }

    .step-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .step-content {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--gradient-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 20px;
        color: var(--color-white) !important;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .about-images {
        height: 350px;
    }

    .about-img-main {
        width: 80%;
        height: 300px;
    }

    .about-img-secondary {
        width: 60%;
        height: 200px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .about-content h2,
    .why-us-content h2,
    .contact-info h2,
    .cta-content h2,
    .markets-content h2 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

    .hero-content h1 {
        font-size: 28px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .process-step,
    .process-step:nth-child(even) {
        padding-left: 60px;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 14px;
        left: 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success svg {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-gray-500);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide .hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Hero Slider Content */
.hero-slider-content {
    position: relative;
    min-height: 200px;
}

.hero-content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hero-content-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.slider-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.slider-dot:hover svg {
    opacity: 1;
}

.slider-dot.active {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.slider-dot.active svg {
    opacity: 1;
    color: var(--color-primary);
}

/* 24/7 Badge Flotante */
.hero-24-7-badge {
    position: fixed;
    top: 120px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 100;
    animation: slideInRight 0.8s ease 1s both;
}

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

.hero-24-7-badge .badge-pulse {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-out infinite;
    opacity: 0.3;
}

@keyframes badgePulse {
    0% { transform: translateY(-50%) scale(1); opacity: 0.3; }
    100% { transform: translateY(-50%) scale(1.5); opacity: 0; }
}

.hero-24-7-badge .badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.hero-24-7-badge .badge-icon svg {
    width: 20px;
    height: 20px;
}

.hero-24-7-badge .badge-text {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    font-size: 18px;
    color: var(--color-primary);
    line-height: 1.1;
}

.hero-24-7-badge .badge-text small {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PYME Badge */
.pyme-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-gray-900);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pyme-badge .pyme-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pyme-badge .pyme-icon svg {
    width: 18px;
    height: 18px;
}

/* Feature Tags Highlight */
.feature-tag-highlight {
    background: rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
}

.feature-tag .dot-pulse {
    animation: dotPulse 1.5s ease-in-out infinite;
    background: #10B981;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Benefit Item Highlight */
.benefit-item-highlight {
    background: var(--color-primary-50);
    border: 2px solid var(--color-primary-100);
}

.benefit-item-highlight:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
}

/* Contact Card Highlight */
.contact-card-highlight {
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-white) 100%);
    border: 2px solid var(--color-primary-100);
}

.contact-card-highlight .contact-card-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
}

/* CTA 24 Badge */
.cta-24-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Form Note */
.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-gray-400);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ============================================
   INLINE CTAs
   ============================================ */

/* Inline CTA (About section) */
.inline-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-white) 100%);
    border: 2px solid var(--color-primary-100);
    border-radius: var(--radius-lg);
    margin-top: 32px;
}

.inline-cta p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-700);
}

.inline-cta .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Services CTA Banner */
.services-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    padding: 40px 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.services-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.services-cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.services-cta-text h3 {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.services-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 15px;
}

.services-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.services-cta-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: var(--color-accent);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.services-cta-badge .badge-24 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1;
}

.services-cta-badge .badge-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Process CTA */
.process-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.process-cta p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-800);
}

/* Markets CTA */
.markets-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.markets-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin: 0;
    max-width: 500px;
}

/* ============================================
   RESPONSIVE - CTAs
   ============================================ */
@media (max-width: 1024px) {
    .services-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .services-cta-content {
        flex-direction: column;
        gap: 24px;
    }

    .services-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .services-cta-actions .btn {
        width: 100%;
    }

    .services-cta-badge {
        flex-direction: row;
        gap: 12px;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .inline-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }

    .inline-cta .btn {
        width: 100%;
    }

    .process-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }

    .process-cta p {
        font-size: 16px;
    }

    .process-cta .btn {
        width: 100%;
    }

    .markets-cta p {
        font-size: 15px;
    }
}

/* Footer Slogan */
.footer-slogan {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent) !important;
    margin-bottom: 8px !important;
}

/* ============================================
   RESPONSIVE - Hero Slider
   ============================================ */
@media (max-width: 1024px) {
    .hero-24-7-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .hero-slider-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-dot {
        padding: 10px 16px;
        font-size: 12px;
    }

    .slider-dot span {
        display: none;
    }

    .slider-dot svg {
        width: 20px;
        height: 20px;
    }

    .hero-24-7-badge {
        padding: 10px 16px;
        gap: 10px;
    }

    .hero-24-7-badge .badge-icon {
        width: 36px;
        height: 36px;
    }

    .hero-24-7-badge .badge-text {
        font-size: 16px;
    }

    .pyme-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-content-slide h1 {
        font-size: 28px;
    }

    .hero-slider-content {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-24-7-badge {
        position: fixed;
        top: auto;
        bottom: 100px;
        right: 16px;
        padding: 8px 12px;
    }

    .hero-24-7-badge .badge-text small {
        display: none;
    }

    .slider-dot {
        padding: 8px 12px;
    }

    .hero-content-slide h1 {
        font-size: 24px;
    }
}
