/* ===================================
   CONFIGURACIONES GENERALES
   =================================== */

:root {
    /* Colores Principales */
    --primary-orange: #f7931e;
    --primary-purple: #7C3AED;
    --secondary-orange: #FF6A00;
    --secondary-purple: #8B5CF6;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple) 0%, var(--secondary-orange) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(255, 122, 24, 0.1) 100%);

    /* Gradientes para Header */
    --gradient-header: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(255, 122, 24, 0.95) 100%);
    --gradient-header-scrolled: linear-gradient(135deg, rgba(124, 58, 237, 0.98) 0%, rgba(255, 122, 24, 0.98) 100%);

    /* Colores Neutros */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* TipografÃ­a */
    --font-primary: 'Sansation', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* TamaÃ±os de Fuente */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.75rem;
    /* 60px */

    /* Espaciado */
    --space-xs: 0.25rem;
    /* 4px */
    --space-sm: 0.5rem;
    /* 8px */
    --space-md: 1rem;
    /* 16px */
    --space-lg: 1.5rem;
    /* 24px */
    --space-xl: 2rem;
    /* 32px */
    --space-2xl: 3rem;
    /* 48px */
    --space-3xl: 4rem;
    /* 64px */

    /* Contenedor */
    --container-max-width: 1200px;
    --container-padding: 1rem;

    /* Bordes */
    --border-radius-sm: 0.375rem;
    /* 6px */
    --border-radius-md: 0.5rem;
    /* 8px */
    --border-radius-lg: 0.75rem;
    /* 12px */
    --border-radius-xl: 1rem;
    /* 16px */
    --border-radius-full: 9999px;

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transiciones */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* ===================================
   RESET Y BASE
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* TipografÃ­a */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--gray-900);
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilidades */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   HEADER STYLES
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: linear-gradient(135deg, 
    rgba(109, 40, 217, 0.95) 0%, 
    rgba(139, 92, 246, 0.92) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.header.scrolled {
  background: linear-gradient(135deg, 
    rgba(109, 40, 217, 0.98) 0%, 
    rgba(139, 92, 246, 0.95) 100%);
  box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
    filter: brightness(0) invert(1);
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
}

.navbar-menu {
    display: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-sm) 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: var(--z-modal);
}

.toggle-line {
    width: 20px;
    height: 2px;
    background-color: var(--white);
    margin: 2px 0;
    transition: var(--transition-normal);
    transform-origin: center;
}

.navbar-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .navbar-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
      rgba(109, 40, 217, 0.98) 0%, 
      rgba(139, 92, 246, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px var(--container-padding) var(--space-2xl);
    transform: translateX(-100%);
    transition: var(--transition-normal);
    z-index: var(--z-fixed);
  }


    .navbar-menu.active {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: flex-start;
    }

    .nav-link {
        font-size: var(--text-lg);
        padding: var(--space-md) 0;
        color: rgba(255, 255, 255, 0.95);
    }
}

/* ===================================
   HERO SECTION STYLES
   =================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
}

.carousel-slide.active .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(124, 58, 237, 0.4) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(255, 122, 24, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: var(--space-xl) 0;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    font-weight: 450;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================================
   AGENTE AI SECTION STYLES
   =================================== */

.agente-section {
    background:
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at center, #FAFAFF 0%, #FFFFFF 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Textura de fondo */
.agente-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.008) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.006) 1px, transparent 1px),
        linear-gradient(45deg, transparent 48%, rgba(124, 58, 237, 0.002) 49%, rgba(124, 58, 237, 0.002) 51%, transparent 52%);
    background-size: 60px 60px, 80px 80px, 120px 120px;
    background-position: 0 0, 30px 30px, 0 0;
    animation: textureShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes textureShift {

    0%,
    100% {
        background-position: 0 0, 30px 30px, 0 0;
        opacity: 1;
    }

    50% {
        background-position: 20px 20px, 50px 50px, 10px 10px;
        opacity: 0.7;
    }
}

/* Elementos geomÃ©tricos de fondo */
.geometric-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    opacity: 0.12;
    animation: floatGeometric 15s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    border: 2px solid #7C3AED;
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

.circle-2 {
    width: 80px;
    height: 80px;
    border: 1px solid #8B5CF6;
    border-radius: 50%;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #A855F7;
    top: 20%;
    right: 20%;
    animation-delay: 2s;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.2));
}

.triangle-2 {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #7C3AED;
    bottom: 20%;
    left: 15%;
    animation-delay: 7s;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.2));
}

.line-1 {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #7C3AED, transparent);
    top: 30%;
    left: 10%;
    animation-delay: 3s;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

.line-2 {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #8B5CF6, transparent);
    bottom: 40%;
    right: 15%;
    animation-delay: 6s;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.hexagon-1 {
    width: 40px;
    height: 23px;
    background: #A855F7;
    position: relative;
    top: 70%;
    right: 5%;
    animation-delay: 4s;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.2));
}

.hexagon-1:before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 12px solid #A855F7;
}

.hexagon-1:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 12px solid #A855F7;
}

.hexagon-2 {
    width: 30px;
    height: 17px;
    background: #7C3AED;
    position: relative;
    top: 15%;
    left: 25%;
    animation-delay: 8s;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.2));
}

.hexagon-2:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 9px solid #7C3AED;
}

.hexagon-2:after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 9px solid #7C3AED;
}

.connecting-line {
    position: absolute;
    top: 50%;
    left: 35%;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.3) 20%,
            rgba(124, 58, 237, 0.4) 50%,
            rgba(139, 92, 246, 0.3) 80%,
            transparent);
    transform: rotate(-8deg);
    opacity: 0.6;
    animation: pulseConnection 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.connecting-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.1) 20%,
            rgba(124, 58, 237, 0.15) 50%,
            rgba(139, 92, 246, 0.1) 80%,
            transparent);
    filter: blur(2px);
}

@keyframes floatGeometric {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.12;
    }

    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.05);
        opacity: 0.18;
    }

    50% {
        transform: translateY(8px) rotate(180deg) scale(0.95);
        opacity: 0.15;
    }

    75% {
        transform: translateY(-8px) rotate(270deg) scale(1.02);
        opacity: 0.14;
    }
}

@keyframes pulseConnection {

    0%,
    100% {
        opacity: 0.3;
        transform: rotate(-8deg) scaleX(1);
    }

    50% {
        opacity: 0.8;
        transform: rotate(-6deg) scaleX(1.1);
    }
}

.agente-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.agente-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 85vw;
    height: 85vw;
    max-width: 450px;
    max-height: 450px;
    align-self: flex-end;
}

.circle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 1.5s cubic-bezier(0.25, 0.0, 0.25, 1);
}

.imagen-a {
    opacity: 1;
    z-index: 2;
}

.imagen-b {
    opacity: 0;
    z-index: 1;
}

/* Estado cuando la secciÃ³n estÃ¡ visible */
.agente-section.in-view .imagen-a {
    opacity: 0;
}

.agente-section.in-view .imagen-b {
    opacity: 1;
}

.agente-info {
    text-align: left;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: var(--space-xl) 0;
}

.agente-title {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    line-height: 1.1;
    color: var(--primary-purple);
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.title-line {
    display: inline-block;
    opacity: 1;
    position: relative;
}

.title-line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

/* Solo aplicar animaciÃ³n cuando la secciÃ³n estÃ¡ en vista */
.agente-section.in-view .title-line[data-line="1"] span {
    animation: waveReveal 0.05s ease-out forwards;
    animation-delay: calc(0.1s + var(--char-index) * 0.03s);
}

.agente-section.in-view .title-line[data-line="2"] span {
    animation: waveReveal 0.05s ease-out forwards;
    animation-delay: calc(0.4s + var(--char-index) * 0.03s);
}

.agente-section.in-view .title-line[data-line="3"] span {
    animation: waveReveal 0.05s ease-out forwards;
    animation-delay: calc(0.7s + var(--char-index) * 0.03s);
}

.agente-section.in-view .title-line[data-line="4"] span {
    animation: waveReveal 0.05s ease-out forwards;
    animation-delay: calc(1.0s + var(--char-index) * 0.03s);
}

@keyframes waveReveal {
    0% {
        opacity: 0;
        transform: translateY(100%) rotateX(90deg);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-10%) rotateX(-5deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0%) rotateX(0deg);
    }
}

.title-light {
    font-weight: 400;
}

.title-heavy {
    font-weight: 700;
}

.agente-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-purple);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
}

.agente-section.in-view .agente-description {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.6s;
}

.agente-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.agente-section.in-view .agente-ctas {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agente-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.agente-cta:hover {
    transform: translateY(-2px) scale(1.05);
}

.agente-cta i {
    width: 18px;
    height: 18px;
    transition: all var(--transition-normal);
}

/* WhatsApp CTA */
.whatsapp-cta {
    background: var(--primary-purple);
    color: var(--white);
    border: 2px solid var(--primary-purple);
}

.whatsapp-cta:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.whatsapp-cta:hover i {
    transform: rotate(10deg) scale(1.1);
    animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(10deg) scale(1.1);
    }

    25% {
        transform: rotate(5deg) scale(1.1);
    }

    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* Demo CTA */
.demo-cta {
    background: transparent;
    color: var(--gray-800);
    border: 3px solid var(--gray-800);
}

.demo-cta:hover {
    background: var(--gray-800);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.demo-cta:hover i {
    transform: rotate(-10deg) scale(1.1);
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(-10deg) scale(1.1);
    }

    50% {
        transform: rotate(-5deg) scale(1.2);
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .agente-section {
        min-height: calc(100vh + 120px);
        padding: 80px 0 120px 0;
        height: auto;
    }

    .agente-content {
        min-height: calc(100vh - 80px);
        justify-content: space-between;
        gap: var(--space-lg);
    }

    .agente-visual {
        order: 1;
        height: auto;
        min-height: 350px;
        margin-bottom: 20px;
    }

    .image-container {
        width: 90vw;
        height: 90vw;
        max-width: 400px;
        max-height: 400px;
        align-self: center;
    }

    .agente-info {
        order: 2;
        height: auto;
        padding: 30px 0 50px 0;
    }

    .agente-title {
        font-size: clamp(42px, 12vw, 54px);
        margin-bottom: 24px;
        width: 100%;
        line-height: 1.1;
    }

    .agente-description {
        font-size: 18px;
        margin-bottom: 32px;
        max-width: 100%;
        line-height: 1.5;
    }

    .agente-ctas {
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: 100%;
    }

    .agente-cta {
        flex: 1;
        min-width: 0;
        padding: 12px 16px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
    }

    .agente-cta span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
    }

    .agente-cta i {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

/* Responsive para Agente AI Section */
@media (min-width: 768px) {
    .agente-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }

    .image-container {
        width: 45vw;
        height: 45vw;
        max-width: 500px;
        max-height: 500px;
        align-self: center;
    }

    .agente-title {
        font-size: var(--text-4xl);
    }

    .agente-description {
        font-size: 1.3rem;
        max-width: 600px;
        margin-bottom: var(--space-xl);
    }

    .agente-ctas {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .agente-title {
        font-size: var(--text-5xl);
    }

    .image-container {
        width: 35vw;
        height: 35vw;
        max-width: 600px;
        max-height: 600px;
    }

    .agente-description {
        font-size: 1.4rem;
    }

    .agente-cta {
        font-size: var(--text-base);
        padding: 14px 24px;
    }

    .agente-cta i {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   PARALLAX SECTION STYLES
   =================================== */

.parallax-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(124, 58, 237, 0.7) 0%,
            rgba(31, 41, 55, 0.5) 50%,
            rgba(247, 147, 30, 0.7) 100%);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--white);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.parallax-text {
    max-width: 800px;
    margin: 0 auto;
}

.parallax-title {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.parallax-title .title-light {
    font-weight: 300;
}

.parallax-title .title-heavy {
    font-weight: 700;
}

.parallax-description {
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.parallax-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.parallax-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.parallax-cta i {
    width: 16px;
    height: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .parallax-title {
        font-size: var(--text-5xl);
    }

    .parallax-description {
        font-size: var(--text-xl);
    }
}

@media (min-width: 1024px) {
    .parallax-title {
        font-size: var(--text-6xl);
    }

    .parallax-cta {
        font-size: var(--text-lg);
        padding: 16px 32px;
    }

    .parallax-cta i {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   POR QUÃ‰ IMPLEMENTAR SECTION STYLES
   =================================== */

.por-que-implementar {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 0;
    position: relative;
}

.por-que-content {
    max-width: 1000px;
    margin: 0 auto;
}

.por-que-title {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #7C3AED;
    margin-bottom: 50px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    color: #fff;
}

.beneficio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #f7931e 0%, #FF6A00 100%);
    border-radius: var(--border-radius-full);
    margin-top: 2px;
}

.beneficio-icon i {
    width: 20px;
    height: 20px;
    color: var(--white);
    stroke-width: 3;
}

.beneficio-content {
    flex: 1;
}

.beneficio-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #f7931e;
    margin-bottom: var(--space-sm);
}

.beneficio-description {
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: #7C3AED;
    margin-bottom: 0;
}

/* Responsive para Por QuÃ© Implementar */
@media (min-width: 768px) {
    .por-que-implementar {
        padding: 80px 0;
    }

    .por-que-title {
        font-size: var(--text-4xl);
        margin-bottom: 60px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .beneficio-title {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .por-que-implementar {
        padding: 90px 0;
    }

    .por-que-title {
        font-size: var(--text-5xl);
        margin-bottom: 70px;
    }

    .beneficios-grid {
        gap: 50px;
    }

    .beneficio-title {
        font-size: 26px;
    }

    .beneficio-description {
        font-size: var(--text-lg);
    }
}

/* ===================================
   RESULTADOS SECTION STYLES
   =================================== */

.resultados-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 90px 0;
    position: relative;
}

.resultados-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 100%;
}

.resultados-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary-purple);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.title-orange {
    color: var(--primary-orange);
}

.resultados-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--secondary-purple);
    margin-bottom: 0;
    max-width: 100%;
}

.resultados-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.resultados-text {
    text-align: left;
}

.beneficios-lista {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.beneficio-resultado {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--primary-orange);
    border-radius: var(--border-radius-full);
    margin-top: 2px;
    flex-shrink: 0;
}

.check-icon i {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

.check-icon svg {
    stroke: var(--white) !important;
}

.beneficio-texto {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-purple);
    flex: 1;
}

.beneficio-highlight {
    color: var(--primary-purple);
    font-weight: 600;
}

.resultados-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.estadistica-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    width: 100%;
    max-width: 320px;
    text-align: center;
    position: relative;
    align-self: flex-start;
}

.estadistica-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.chart-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.donut-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle {
    transition: stroke-dasharray 2s ease-in-out;
}

.chart-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.percentage {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.card-header {
    text-align: center;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 0;
}

.card-footer {
    text-align: center;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--gray-600);
    margin-bottom: 0;
}

.highlight-orange {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Animation for chart */
@keyframes fillChart {
    from {
        stroke-dasharray: 0 501.33;
    }

    to {
        stroke-dasharray: 401.06 501.33;
    }
}

.resultados-section.in-view .progress-circle {
    animation: fillChart 2s ease-in-out forwards;
}

/* Mobile */
@media (max-width: 767px) {
    .resultados-section {
        padding: 60px 0;
    }

    .resultados-header {
        margin-bottom: 50px;
    }

    .resultados-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .resultados-subtitle {
        font-size: 16px;
    }

    .resultados-content {
        gap: 50px;
    }

    .beneficios-lista {
        gap: 20px;
    }

    .beneficio-texto {
        font-size: 15px;
    }

    .estadistica-card {
        padding: 30px 25px;
        max-width: 280px;
    }

    .chart-container {
        width: 140px;
        height: 140px;
    }

    .percentage {
        font-size: 36px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .resultados-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 50px;
        align-items: start;
    }

    .resultados-title {
        font-size: 40px;
    }

    .estadistica-card {
        max-width: 300px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .resultados-content {
        grid-template-columns: 1.4fr 0.6fr;
        gap: 80px;
        align-items: start;
    }

    .resultados-title {
        font-size: 48px;
    }

    .resultados-subtitle {
        font-size: 18px;
    }

    .beneficio-texto {
        font-size: 16px;
    }
}


/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-lg);
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    color: var(--white);
}

.social-link i {
    width: 18px;
    height: 18px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    font-size: var(--text-sm);
    color: var(--gray-300);
    transition: var(--transition-fast);
    padding: var(--space-xs) 0;
}

.footer-nav a:hover {
    color: var(--primary-orange);
    padding-left: var(--space-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--gray-300);
}

.contact-item i {
    width: 16px;
    height: 16px;
    color: var(--primary-orange);
}

.contact-item a {
    color: var(--gray-300);
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid var(--primary-orange);
    padding-top: var(--space-lg);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.copyright {
    font-size: var(--text-xs);
    color: var(--gray-400);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    font-size: var(--text-xs);
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.separator {
    color: var(--gray-600);
    font-size: var(--text-xs);
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-3xl);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.2fr 2fr;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }

    .navbar-menu {
        display: block;
    }

    .navbar-toggle {
        display: none;
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-description {
        font-size: var(--text-xl);
    }

    .content-placeholder h1 {
        font-size: var(--text-4xl);
    }

    .footer-main {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-3xl);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .navbar {
        height: 80px;
    }

    .hero-title {
        font-size: var(--text-6xl);
    }

    .hero-description {
        font-size: var(--text-xl);
        max-width: 700px;
    }

    .indicator {
        width: 14px;
        height: 14px;
    }

    .content-placeholder h1 {
        font-size: var(--text-5xl);
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.2fr 2fr;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   PROCESO SECTION STYLES
   =================================== */

.proceso-section {
    background: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 50%, #A855F7 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.proceso-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.proceso-text {
    text-align: left;
}

.proceso-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.proceso-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--white);
    color: #6D28D9;
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-title {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.25;
}

.step-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .proceso-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }

    .proceso-content {
        gap: 50px;
    }

    .proceso-title {
        font-size: 42px;
        text-align: center;
    }

    .proceso-steps {
        gap: 36px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }

    .step-item {
        gap: 20px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-description {
        font-size: 15px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .proceso-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: center;
    }

    .proceso-title {
        font-size: 68px;
        line-height: 1.05;
    }

    .proceso-steps {
        gap: 22px;
    }

    .step-number {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 28px;
    }

    .step-title {
        font-size: 19px;
        margin-bottom: 4px;
    }

    .step-description {
        font-size: 16px;
        line-height: 1.45;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .proceso-content {
        grid-template-columns: 1fr 1.3fr;
        gap: 70px;
        align-items: center;
    }

    .proceso-title {
        font-size: 76px;
        letter-spacing: -0.025em;
        line-height: 1.05;
    }

    .proceso-steps {
        gap: 26px;
    }

    .step-number {
        width: 68px;
        height: 68px;
        min-width: 68px;
        font-size: 30px;
    }

    .step-item {
        gap: 24px;
    }

    .step-title {
        font-size: 21px;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .step-description {
        font-size: 16px;
        line-height: 1.45;
    }
}

/* ===================================
   SEGUNDA PARALLAX SECTION STYLES
   =================================== */

.parallax-section-two {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-background-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('img/carousel/slide2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.parallax-overlay-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(247, 147, 30, 0.8) 0%,
            rgba(31, 41, 55, 0.6) 50%,
            rgba(124, 58, 237, 0.8) 100%);
    z-index: 2;
}

.parallax-content-two {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--white);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.parallax-text-two {
    max-width: 800px;
    margin: 0 auto;
}

.parallax-title-two {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.parallax-title-two .title-light {
    font-weight: 300;
}

.parallax-title-two .title-heavy {
    font-weight: 700;
}

.parallax-description-two {
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.parallax-cta-two {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.parallax-cta-two:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.parallax-cta-two i {
    width: 16px;
    height: 16px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .parallax-title-two {
        font-size: var(--text-5xl);
    }

    .parallax-description-two {
        font-size: var(--text-xl);
    }
}

@media (min-width: 1024px) {
    .parallax-title-two {
        font-size: var(--text-6xl);
    }

    .parallax-cta-two {
        font-size: var(--text-lg);
        padding: 16px 32px;
    }

    .parallax-cta-two i {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   TERCERA PARALLAX SECTION STYLES
   =================================== */

.parallax-section-three {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-background-three {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('img/carousel/slide3.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.parallax-overlay-three {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.8) 0%,
            rgba(31, 41, 55, 0.6) 50%,
            rgba(255, 122, 24, 0.8) 100%);
    z-index: 2;
}

.parallax-content-three {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--white);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.parallax-text-three {
    max-width: 800px;
    margin: 0 auto;
}

.parallax-title-three {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.parallax-title-three .title-light {
    font-weight: 300;
}

.parallax-title-three .title-heavy {
    font-weight: 700;
}

.parallax-description-three {
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.parallax-cta-three {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.parallax-cta-three:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.parallax-cta-three i {
    width: 16px;
    height: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .parallax-title-three {
        font-size: var(--text-5xl);
    }

    .parallax-description-three {
        font-size: var(--text-xl);
    }
}

@media (min-width: 1024px) {
    .parallax-title-three {
        font-size: var(--text-6xl);
    }

    .parallax-cta-three {
        font-size: var(--text-lg);
        padding: 16px 32px;
    }

    .parallax-cta-three i {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   CLIENTES SECTION STYLES
   =================================== */

.clientes-section {
    background: #f8fafc;
    padding: 80px 0;
    position: relative;
}

.clientes-content {
    text-align: center;
    max-width: 100%;
}

.clientes-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--secondary-orange);
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.01em;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    padding: 15px;
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-lg);
    background: transparent;
    text-decoration: none;
}

.logo-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.client-logo {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1) saturate(1);
    transition: all var(--transition-fast);
}

.logo-item:hover .client-logo {
    filter: brightness(1.1) saturate(1.15);
}

/* Mobile Small */
@media (max-width: 479px) {
    .clientes-section {
        padding: 60px 0;
    }

    .clientes-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }

    .logo-item {
        height: 70px;
        padding: 12px;
    }

    .client-logo {
        max-width: 90px;
        max-height: 55px;
    }
}

/* Mobile */
@media (min-width: 480px) and (max-width: 767px) {
    .clientes-section {
        padding: 60px 0;
    }

    .clientes-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    .logo-item {
        height: 80px;
        padding: 15px;
    }

    .client-logo {
        max-width: 100px;
        max-height: 60px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .clientes-section {
        padding: 70px 0;
    }

    .clientes-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .logo-item {
        height: 90px;
        padding: 18px;
    }

    .client-logo {
        max-width: 120px;
        max-height: 70px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .clientes-section {
        padding: 90px 0;
    }

    .clientes-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .logos-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
    }

    .logo-item {
        height: 100px;
        padding: 20px;
    }

    .client-logo {
        max-width: 140px;
        max-height: 80px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .clientes-title {
        font-size: 52px;
        margin-bottom: 70px;
    }

    .logos-grid {
        gap: 50px;
    }

    .logo-item {
        height: 110px;
    }

    .client-logo {
        max-width: 150px;
        max-height: 85px;
    }
}

/* ===================================
   PARALLAX CTA ANIMATIONS - INTERSECTION OBSERVER
   =================================== */

/* Efecto shine general para todos los CTAs */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease-in-out;
    z-index: 1;
}

.parallax-cta:hover .shine-effect,
.parallax-cta-two:hover .shine-effect,
.parallax-cta-three:hover .shine-effect {
    left: 100%;
}

/* Primer CTA - Arrow teleport effect */
.parallax-cta-one {
    position: relative;
    overflow: hidden;
}

.cta-icon-left {
    width: 16px;
    height: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.cta-icon-right {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.cta-text {
    position: relative;
    z-index: 2;
}

.parallax-cta-one:hover .cta-icon-left {
    opacity: 0;
    transform: translateX(60px);
}

.parallax-cta-one:hover .cta-icon-right {
    opacity: 1;
    transform: translateX(0);
}

/* Segundo CTA - Sparkles bounce effect */
.parallax-cta-two {
    position: relative;
    overflow: hidden;
}

.cta-sparkles {
    width: 16px;
    height: 16px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.parallax-cta-two:hover .cta-sparkles {
    transform: scale(1.4);
    animation: sparklesBounce 0.6s ease-out;
}

@keyframes sparklesBounce {
    0% {
        transform: scale(0.3) rotate(0deg);
    }

    50% {
        transform: scale(1.6) rotate(180deg);
    }

    100% {
        transform: scale(1.4) rotate(360deg);
    }
}

/* Tercer CTA - Zap lightning effect */
.parallax-cta-three {
    position: relative;
    overflow: hidden;
}

.cta-zap {
    width: 16px;
    height: 16px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px var(--primary-orange));
}

.parallax-cta-three:hover .cta-zap {
    transform: scale(1.3) translateY(-2px);
    animation: zapStrike 0.8s ease-out;
    filter: drop-shadow(0 0 12px var(--primary-orange)) drop-shadow(0 0 20px rgba(247, 147, 30, 0.5));
}

@keyframes zapStrike {
    0% {
        transform: scale(0.2) translateY(-30px);
        opacity: 0;
    }

    30% {
        transform: scale(1.6) translateY(-5px);
        opacity: 1;
    }

    60% {
        transform: scale(1.1) translateY(2px);
    }

    100% {
        transform: scale(1.3) translateY(-2px);
    }
}

/* Mobile automatic animations when visible */
@media (max-width: 768px) {
    .parallax-cta-one.visible .cta-icon-left {
        opacity: 0;
        transform: translateX(60px);
    }

    .parallax-cta-one.visible .cta-icon-right {
        opacity: 1;
        transform: translateX(0);
    }

    .parallax-cta-one.visible .shine-effect {
        left: 100%;
    }

    .parallax-cta-two.visible .cta-sparkles {
        transform: scale(1.4);
        animation: sparklesBounce 0.6s ease-out;
    }

    .parallax-cta-two.visible .shine-effect {
        left: 100%;
    }

    .parallax-cta-three.visible .cta-zap {
        transform: scale(1.3) translateY(-2px);
        animation: zapStrike 0.8s ease-out;
        filter: drop-shadow(0 0 12px var(--primary-orange)) drop-shadow(0 0 20px rgba(247, 147, 30, 0.5));
    }

    .parallax-cta-three.visible .shine-effect {
        left: 100%;
    }
}

/* Responsive adjustments for CTA animations */
@media (min-width: 768px) {

    .cta-icon-left,
    .cta-icon-right,
    .cta-sparkles,
    .cta-zap {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 1024px) {

    .cta-icon-left,
    .cta-icon-right,
    .cta-sparkles,
    .cta-zap {
        width: 20px;
        height: 20px;
    }
}/* ===================================
   DEMO MODAL STYLES
   =================================== */

.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.demo-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-normal);
}

.demo-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-close i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-purple);
    margin-bottom: 12px;
    text-align: center;
}

.modal-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-600);
    margin-bottom: 32px;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--gray-800);
    transition: all var(--transition-fast);
}

.modal-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.modal-input::placeholder {
    color: var(--gray-400);
}

.modal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.modal-button:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.modal-button i {
    width: 20px;
    height: 20px;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .modal-content {
        padding: 40px 30px;
        width: 95%;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .modal-input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .modal-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .modal-button i {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   FOOTER CREDITS STYLES
   =================================== */

.footer-credits {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credits p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 0;
    text-align: left;
}

.footer-credits a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-credits a:hover {
    color: var(--secondary-purple);
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .footer-credits {
        margin-top: 24px;
        padding-top: 20px;
    }

    .footer-credits p {
        font-size: 13px;
        text-align: center;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}
/* ===================================
   DEMO NOTIFICATIONS - MEJORADO
   =================================== */

.demo-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 450px;
    min-width: 320px;
    transform: translateX(500px);
    opacity: 0;
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-purple);
}

.demo-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.notification-content i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-content span {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    font-weight: 400;
}

.demo-notification.error {
    border-left-color: #EF4444;
    background: #FEF2F2;
}

.demo-notification.error i {
    color: #EF4444;
}

.demo-notification.error .notification-content span {
    color: #991B1B;
}

.demo-notification.info {
    border-left-color: var(--primary-purple);
    background: #F5F3FF;
}

.demo-notification.info i {
    color: var(--primary-purple);
}

.demo-notification.info .notification-content span {
    color: #5B21B6;
}

.demo-notification.success {
    border-left-color: #10B981;
    background: #ECFDF5;
}

.demo-notification.success i {
    color: #10B981;
}

.demo-notification.success .notification-content span {
    color: #065F46;
}

@media (max-width: 767px) {
    .demo-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        padding: 16px 20px;
    }
    
    .notification-content {
        gap: 12px;
    }
    
    .notification-content i {
        width: 20px;
        height: 20px;
    }
    
    .notification-content span {
        font-size: 14px;
    }
}