/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Variables CSS */
:root {
    --primary-color: #8ACE06;
    --primary-hover: #008543;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-dark: #1a1a1a;
    --transition-speed: 0.3s;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Estilos del Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    padding: 0.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.98);
}

.logo {
    height: 40px;
    transition: transform var(--transition-speed) ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navegación */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Botón CTA */
.cta-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--background-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e6e6e6;
    line-height: 1.6;
}

.hero-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
}

.hero-button:hover {
    background-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.3);
}

/* Controles del Slider */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-button {
        padding: 1rem 2rem;
    }
}
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Botones de navegación del slider */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.slider-nav button {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Actualización de los dots del slider */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}
.solutions-container {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f5f7fa, #ffffff);
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.solutions-header h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.solutions-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-green);
    transition: width var(--transition-fast);
}

.solutions-header h2:hover::after {
    width: 120px;
}

.solutions-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Fuerza 4 columnas */
    gap: 1.5rem;
    max-width: 1600px; /* Aumentado para acomodar 4 tarjetas */
    margin: 0 auto;
    padding: 2rem;
}

/* Tarjeta individual */
.property-card {
    position: relative;
    height: 450px; /* Altura aumentada */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(5px);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.9)
    );
    z-index: 1;
    transition: all var(--transition-slow);
}

.property-card:hover::before {
    background: linear-gradient(
        175deg,
        rgba(0,166,81,0.2),
        rgba(0,166,81,0.95)
    );
}

.card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-card:hover .card-image {
    transform: scale(1.15);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    transform: translateY(40px);
    opacity: 0.8;
    transition: all var(--transition-slow);
}

.property-card:hover .card-content {
    transform: translateY(0);
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
    fill: var(--text-light);
    transition: all var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.property-card:hover .card-icon {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

.card-title {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--text-light);
    transition: width var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.property-card:hover .card-title::after {
    width: 100%;
}

.card-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow) 0.2s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.property-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
}

.card-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.property-card:hover .card-button {
    opacity: 1;
    transform: translateY(0);
}

.card-button:hover {
    background: var(--text-light);
    color: var(--primary-green);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 1400px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .solutions-container {
        padding: 2rem 1rem;
    }

    .solutions-header h2 {
        font-size: 2rem;
    }

    .property-card {
        height: 400px;
    }
}

/* Estilos base */
.ultra-gallery {
    height: 1200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Container principal */
  .ultra-gallery__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
  }
  
  /* Items individuales */
  .ultra-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
  }
  
  /* Imágenes */
  .ultra-gallery__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .ultra-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  
  /* Overlay con texto */
  .ultra-gallery__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to top,
      rgba(12, 18, 32, 0.9),
      rgba(12, 18, 32, 0.4)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .ultra-gallery__title {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #c6a355;
    padding-bottom: 10px;
  }
  
  /* Efectos hover */
  .ultra-gallery__item:hover .ultra-gallery__image {
    transform: scale(1.1);
  }
  
  .ultra-gallery__item:hover .ultra-gallery__content {
    opacity: 1;
  }
  
  .ultra-gallery__item:hover .ultra-gallery__title {
    transform: translateY(0);
  }
  
  /* Fondo con efecto */
  .ultra-gallery__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(45deg, rgba(198, 163, 85, 0.05) 0%, transparent 70%),
      linear-gradient(-45deg, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ultra-gallery__container {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, 1fr);
      height: auto;
      gap: 15px;
      padding: 20px 0;
    }
  
    .ultra-gallery {
      height: auto;
      min-height: 100vh;
      padding: 20px;
    }
  
    .ultra-gallery__item {
      height: 60vh;
    }
  
    .ultra-gallery__title {
      font-size: 1.5rem;
    }
  }
  .features-premium {
    position: relative;
    min-height: 100vh;
    padding: 6rem 2rem;
    background: #005ac6;
    overflow: hidden;
    margin-top: 100px;
  }
  
  /* Efectos de fondo */
  .features-premium__background {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .features-premium__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.1), transparent 40%),
      radial-gradient(circle at 80% 80%, rgba(198, 163, 85, 0.1), transparent 40%);
  }
  
  .features-premium__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle, #c6a355 1px, transparent 1px),
      radial-gradient(circle, #4a90e2 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.1;
    animation: particleMove 20s linear infinite;
  }
  
  /* Contenedor principal */
  .features-premium__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  /* Encabezados */
  .features-premium__heading {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #dfe7cf, #e2dac4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .features-premium__subheading {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
  }
  
  /* Grid de características */
  .features-premium__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  /* Tarjetas individuales */
  .feature-card {
    background: rgba(236, 231, 231, 0.397);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    min-width: 250px;
  }
  
  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .feature-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .feature-card:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
      0 10px 30px rgba(198, 163, 85, 0.1),
      0 0 30px rgba(74, 144, 226, 0.1);
    border-color: rgba(198, 163, 85, 0.3);
  }
  
  /* Iconos */
  .feature-card__icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(198, 163, 85, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .feature-card__icon {
    font-size: 2rem;
  }
  
  /* Textos de tarjetas */
  .feature-card__title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
  }
  
  .feature-card__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #c6a355, transparent);
  }
  
  .feature-card__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  /* Decoración de tarjetas */
  .feature-card__decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #c6a355, #4a90e2);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: transform 0.4s ease;
  }
  
  .feature-card:hover .feature-card__decoration {
    transform: translate(30%, -30%) scale(1.2);
  }
  
  /* CTA */
  .features-premium__cta {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
  }
  
  .features-premium__button {
    background: linear-gradient(45deg, #8ACE06, #8ACE06);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .features-premium__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 163, 85, 0.3);
  }
  
  .features-premium__button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 45%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 55%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }
  
  .features-premium__button:hover::after {
    transform: translateX(100%);
  }
  
  /* Animaciones */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes particleMove {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50px);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .features-premium {
      padding: 4rem 1.5rem;
    }
    
    .features-premium__heading {
      font-size: 2.2rem;
    }
    
    .features-premium__subheading {
      font-size: 1rem;
      margin-bottom: 3rem;
    }
    
    .features-premium__grid {
      gap: 1.5rem;
    }
    
    .feature-card {
      padding: 2rem 1.5rem;
    }
  }
  @media (max-width: 1200px) {
    .features-premium__grid {
      grid-template-columns: repeat(4, minmax(250px, 1fr));
    }
  }
  .client-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #001730 0%, #000814 100%);
  }
  
  .client-showcase__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Título elegante */
  .client-showcase__title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .client-showcase__heading {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #00ffd5, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .client-showcase__subheading {
    color: #c0c0c0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  
  /* Grid de collage profesional */
  .client-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
    margin-bottom: 80px;
  }
  
  .collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 213, 0.1);
    background: #001220;
  }
  
  /* Distribución específica para crear interés visual */
  .collage-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .collage-item:nth-child(4) {
    grid-column: span 2;
  }
  
  /* Manejo profesional de imágenes */
  .collage-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .collage-item:hover .collage-item__image {
    transform: scale(1.05);
  }
  
  /* Overlay corporativo */
  .collage-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 23, 48, 0.9), rgba(0, 23, 48, 0));
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  
  .collage-item:hover .collage-item__content {
    transform: translateY(0);
  }
  
  .collage-item__title {
    color: #00ffd5;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .collage-item__description {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Estadísticas empresariales */
  .statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: rgba(0, 23, 48, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 213, 0.1);
  }
  
  .statistic-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
  }
  
  .statistic-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #00ffd5, transparent);
    opacity: 0.3;
  }
  
  .statistic-item:last-child::after {
    display: none;
  }
  
  .statistic-item__number {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00ffd5, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .statistic-item__label {
    color: #c0c0c0;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  /* Responsive empresarial */
  @media (max-width: 1024px) {
    .client-collage {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .statistics {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .statistic-item:nth-child(2)::after {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .client-collage {
      grid-template-columns: 1fr;
    }
    
    .collage-item:nth-child(1),
    .collage-item:nth-child(4) {
      grid-column: span 1;
    }
    
    .statistics {
      grid-template-columns: 1fr;
      padding: 20px;
    }
    
    .statistic-item::after {
      display: none;
    }
  }
  

 /* Estilos principales de la sección */
.testimonials-collage {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

/* Efectos de fondo */

/* Contenedor principal */
.testimonials-collage__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Título y subtítulo */
.testimonials-collage__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-collage__title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #c6a355, #e9d5a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-collage__subtitle {
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de fotos */
.testimonials-collage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1.5rem;
  margin: 4rem 0;
}

/* Estilos de las tarjetas de fotos */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.photo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Distribución especial del grid */
.photo-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card:nth-child(4) {
  grid-column: span 2;
}

/* Imagen dentro de la tarjeta */
.photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card:hover .photo-card__img {
  transform: scale(1.1);
}

/* Overlay con información */
.photo-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.photo-card:hover .photo-card__overlay {
  transform: translateY(0);
}

.photo-card__name {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.photo-card__quote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Sección de estadísticas */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.stat-item {
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #8ACE06;
}

.stat-item__number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-item__text {
  color: rgb(255, 252, 252);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
  .testimonials-collage__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .photo-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .photo-card:nth-child(4) {
    grid-column: span 1;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  min-height: 100vh;
}

.super-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.ultra-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.mega-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
}

.awesome-image-section {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.awesome-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.awesome-image-section:hover img {
  transform: scale(1.05);
}

.fancy-form-section {
  flex: 1;
  min-width: 300px;
}

.epic-form-group {
  margin-bottom: 25px;
  position: relative;
}

.cool-input, .cool-select, .cool-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #f8f9fa;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cool-input:focus, .cool-select:focus, .cool-textarea:focus {
  outline: none;
  border-color: #4a90e2;
  background: white;
  box-shadow: 0 8px 15px rgba(74, 144, 226, 0.2);
  transform: translateY(-2px);
}

.cool-textarea {
  height: 150px;
  resize: vertical;
}

.fancy-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.fancy-checkbox-group:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.super-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.fancy-privacy-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.fancy-privacy-link:hover {
  color: #2d73c3;
  text-decoration: underline;
}

.mega-button {
  background: linear-gradient(135deg, #8ACE06, #005ac6);
  color: white;
  padding: 18px 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.mega-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(74, 144, 226, 0.4);
  background: linear-gradient(45deg, #67b26f, #4a90e2);
}

.mega-button:active {
  transform: translateY(-1px);
}

.floating-label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: white;
  padding: 0 5px;
  font-size: 12px;
  color: #4a90e2;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s ease;
}

.cool-input:focus + .floating-label,
.cool-select:focus + .floating-label,
.cool-textarea:focus + .floating-label {
  opacity: 1;
}

.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #67b26f, #4a90e2);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(200%);
  transition: transform 0.5s ease;
}

.success-message.show {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .mega-container {
      padding: 20px;
      gap: 20px;
  }

  .awesome-image-section {
      height: 300px;
  }

  .mega-button {
      padding: 15px 30px;
      font-size: 16px;
  }
}
.mega-footer {
  background: linear-gradient(90deg, #0a0a0a, #1a1a1a);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 40px 50px;
  border-top: 4px solid #40c057;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 2fr 1.2fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.logo-section {
  text-align: center;
}

.logo-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  height: 200px;
}

.logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(64, 192, 87, 0.2);
}

.logo-container img {
  height: 400px;
  width: 300px;
  padding-bottom: 180px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(45deg, #40c057, #2ea043);
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icons a:hover {
  transform: translateY(-3px) rotate(360deg);
  box-shadow: 0 5px 15px rgba(64, 192, 87, 0.3);
}

.main-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.link-column h3 {
  color: #40c057;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.link-column ul {
  list-style: none;
}

.link-column ul li {
  margin-bottom: 8px;
}

.link-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.link-column ul li a:hover {
  color: #40c057;
  transform: translateX(5px);
}

.link-column ul li a::before {
  content: "›";
  color: #40c057;
  font-size: 18px;
}

.contact-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info h3 {
  color: #40c057;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.office-info {
  font-size: 13px;
  margin-bottom: 15px;
  padding: 0px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.office-info:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.office-info strong {
  color: #40c057;
  display: block;
  margin-bottom: 5px;
}

.schedule-info p {
  font-size: 15px;
  margin-bottom: 5px;
  
}

.schedule-info strong {
  color: #40c057;
}

.lion-background {
  position: absolute;
  right: 0;
  bottom: -30%;
  opacity: 0.03;
  width: 300px;
  height: 300px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .footer-container {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .main-links {
      grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
      grid-template-columns: 1fr;
  }

  .mega-footer {
      padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .main-links {
      grid-template-columns: 1fr;
  }
}
