/* Estilos para la sección de Soluciones */
.soluciones-section {
    background: #ABABAD;
    padding: 60px 0 120px; /* Reducido el padding superior */
    position: relative;
    overflow: hidden;
}

.soluciones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(245, 243, 242, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(130, 103, 104, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 10%, rgba(245, 243, 242, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.soluciones-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Eliminar soluciones-header ya que ahora está en el hero */
.soluciones-header {
    display: none; /* Ya no necesario porque está en hero */
}

/* Solución Principal */
.solucion-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.solucion-item.reverse {
    direction: rtl;
}

.solucion-item.reverse > * {
    direction: ltr;
}

.solucion-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 
        0 20px 80px rgba(130, 103, 104, 0.15),
        0 8px 32px rgba(130, 103, 104, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solucion-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 120px rgba(130, 103, 104, 0.2),
        0 16px 48px rgba(130, 103, 104, 0.15);
}

.solucion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solucion-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(171, 171, 173, 0.85) 0%, rgba(130, 103, 104, 0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucion-image:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.solucion-image:hover .overlay-icon {
    transform: translateY(0);
}

.solucion-content {
    padding: 40px;
    background: rgba(245, 243, 242, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 
        0 16px 64px rgba(130, 103, 104, 0.1),
        0 8px 32px rgba(130, 103, 104, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.solucion-content:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 24px 96px rgba(130, 103, 104, 0.15),
        0 12px 48px rgba(130, 103, 104, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.solucion-title {
    color: #826768;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.solucion-description {
    color: #826768;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.8;
}

.solucion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.solucion-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.solucion-list li:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(4px);
}

.solucion-list li svg {
    color: #826768;
    flex-shrink: 0;
}

.solucion-list li span {
    color: #826768;
    font-size: 1rem;
    font-weight: 500;
}

.solucion-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #826768 0%, #A2948A 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solucion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.solucion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(130, 103, 104, 0.3);
    color: white;
    text-decoration: none;
}

.solucion-button:hover::before {
    left: 100%;
}

/* Otras Soluciones */
.otras-soluciones {
    margin: 120px 0;
}

.otras-soluciones-title {
    color: #826768;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

.soluciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solucion-card {
    background: rgba(245, 243, 242, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(130, 103, 104, 0.1),
        0 4px 16px rgba(130, 103, 104, 0.05);
}

.solucion-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 80px rgba(130, 103, 104, 0.15),
        0 8px 32px rgba(130, 103, 104, 0.1);
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solucion-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(130, 103, 104, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.card-overlay svg {
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.solucion-card:hover .card-overlay svg {
    transform: translateY(0);
}

.card-content {
    padding: 32px;
}

.card-title {
    color: #826768;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.card-description {
    color: #826768;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.8;
}

.card-button {
    color: #826768;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-button:hover {
    color: #A2948A;
    text-decoration: none;
    transform: translateX(4px);
}

.card-button::after {
    content: '';
    width: 16px;
    height: 2px;
    background: currentColor;
    transition: width 0.2s ease;
}

.card-button:hover::after {
    width: 20px;
}

/* Call to Action */
.cta-section {
    margin-top: 120px;
    padding: 60px;
    background: linear-gradient(135deg, #826768 0%, #A2948A 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 80px rgba(130, 103, 104, 0.2),
        0 8px 32px rgba(130, 103, 104, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #826768;
    text-decoration: none;
    padding: 20px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: #826768;
    text-decoration: none;
}

.imagen-completa {
    object-fit: contain !important;
    width: 100%;
    height: 100%;
}

/* ========================================
   HERO SECTION CON CLOUD-WORD
   ======================================== */

.soluciones-hero-section {
    background: linear-gradient(135deg, #826768 0%, #A2948A 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.soluciones-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

/* Contenido de texto */
.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin: 20px 0;
}

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

.stat-number {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.hero-btn.primary {
    background: rgba(255, 255, 255, 0.9);
    color: #826768;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-btn.primary:hover {
    color: #826768;
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.3);
    background: white;
}

.hero-btn.secondary:hover {
    color: white;
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Contenido de imagen */
.hero-image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hacer que la imagen cloud-word tenga el mismo estilo que las otras */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Tamaño más grande pero consistente */
    aspect-ratio: 4/3; /* Mismo aspect ratio que otras imágenes */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Mismo estilo que .solucion-image */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 80px rgba(130, 103, 104, 0.15),
        0 8px 32px rgba(130, 103, 104, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white; /* Fondo blanco para la imagen */
}

.hero-image-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 32px 120px rgba(130, 103, 104, 0.2),
        0 16px 48px rgba(130, 103, 104, 0.15);
}

.hero-cloud-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mismo comportamiento que otras imágenes */
    transition: transform 0.4s ease;
    animation: cloudFloat 6s ease-in-out infinite;
}

.hero-cloud-image:hover {
    transform: scale(1.05); /* Mismo efecto hover que otras imágenes */
}

/* Overlay igual que otras imágenes */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(130, 103, 104, 0.85) 0%, rgba(162, 148, 138, 0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container:hover .hero-image-overlay {
    opacity: 1;
}

.hero-overlay-icon {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-overlay-icon {
    transform: translateY(0);
}

/* Ajustar decoración para no interferir */
.hero-image-decoration {
    position: absolute;
    top: -50px; /* Más separado del contenedor principal */
    left: -50px;
    right: -50px;
    bottom: -50px;
    pointer-events: none;
}

/* Responsive igual que otras imágenes */
@media (max-width: 1200px) {
    .hero-image-container {
        max-width: 550px;
    }
}

@media (max-width: 1024px) {
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        max-width: 300px;
    }
}
.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    animation: floatIcon 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.floating-icon.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon.icon-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 4s;
}

.floating-icon.icon-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

/* Animaciones */
@keyframes cloudFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-12px) rotate(3deg);
    }
}

/* Ajustar transición entre hero y contenido */
.soluciones-section .soluciones-container {
    position: relative;
}

.soluciones-section .soluciones-container::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(171, 171, 173, 0.1), transparent);
    pointer-events: none;
}

/* Mejorar el espaciado del primer elemento */
.soluciones-section #asistencia-vial {
    margin-top: 40px;
}

/* ========================================
   RESPONSIVE DESIGN PARA HERO
   ======================================== */

@media (max-width: 1200px) {
    .hero-content-grid {
        gap: 60px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .solucion-item {
        gap: 60px;
        margin-bottom: 100px;
    }
    
    .soluciones-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .soluciones-hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-content {
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .soluciones-section {
        padding: 40px 0 80px;
    }
    
    .solucion-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
    }
    
    .solucion-item.reverse {
        direction: ltr;
    }
    
    .solucion-content {
        order: 2;
    }
    
    .solucion-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .otras-soluciones {
        margin: 80px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .cta-text h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .soluciones-hero-section {
        padding: 80px 0 40px;
    }
    
    .soluciones-hero-container {
        padding: 0 16px;
    }
    
    .hero-content-grid {
        gap: 32px;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .hero-btn {
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .soluciones-container {
        padding: 0 16px;
    }
    
    .soluciones-section {
        padding: 30px 0 60px;
    }
    
    .solucion-content {
        padding: 32px 24px;
    }
    
    .solucion-title {
        font-size: 1.75rem;
    }
    
    .solucion-description {
        font-size: 1rem;
    }
    
    .solucion-item {
        margin-bottom: 60px;
    }
    
    .soluciones-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .otras-soluciones-title {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .cta-section {
        padding: 40px 24px;
        margin-top: 80px;
    }
    
    .cta-icon {
        width: 64px;
        height: 64px;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .soluciones-hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .hero-image-container {
        max-width: 250px;
    }

    .floating-icon {
       width: 36px;
       height: 36px;
   }
   
   .solucion-content {
       padding: 24px 16px;
   }
   
   .solucion-list li {
       padding: 8px 12px;
   }
   
   .solucion-button {
       padding: 12px 24px;
       font-size: 0.8rem;
   }
   
   .card-content {
       padding: 20px;
   }
   
   .cta-section {
       padding: 32px 16px;
   }
   
   .cta-content {
       gap: 24px;
   }
   
   .cta-icon {
       width: 56px;
       height: 56px;
   }
}

/* ========================================
  AJUSTES ADICIONALES PARA MEJOR UX
  ======================================== */

/* Smooth scroll */
html {
   scroll-behavior: smooth;
}

/* Mejoras en la transición entre secciones */
.soluciones-section {
   position: relative;
}

/* Asegurar que las anclas funcionen correctamente con navbar fijo */
.solucion-item[id] {
   scroll-margin-top: 120px;
}

/* Efectos de entrada para las soluciones */
@media (prefers-reduced-motion: no-preference) {
   .solucion-item {
       opacity: 0;
       transform: translateY(30px);
       animation: fadeInUp 0.8s ease-out forwards;
   }
   
   .solucion-item:nth-child(1) { animation-delay: 0.1s; }
   .solucion-item:nth-child(2) { animation-delay: 0.2s; }
   .solucion-item:nth-child(3) { animation-delay: 0.3s; }
   .solucion-item:nth-child(4) { animation-delay: 0.4s; }
   .solucion-item:nth-child(5) { animation-delay: 0.5s; }
   .solucion-item:nth-child(6) { animation-delay: 0.6s; }
}

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

/* Mejoras en la accesibilidad */
.hero-btn:focus,
.solucion-button:focus,
.card-button:focus,
.cta-button:focus {
   outline: 2px solid rgba(255, 255, 255, 0.8);
   outline-offset: 2px;
}

/* Optimización para pantallas muy grandes */
@media (min-width: 1600px) {
   .soluciones-hero-container,
   .soluciones-container {
       max-width: 1600px;
   }
   
   .hero-content-grid {
       gap: 120px;
   }
   
   .solucion-item {
       gap: 100px;
   }
}

/* Fix para Safari y Webkit */
@supports (-webkit-backdrop-filter: none) {
   .hero-badge,
   .solucion-content,
   .solucion-card,
   .floating-icon,
   .cta-icon {
       -webkit-backdrop-filter: blur(20px);
   }
}

/* Fallback para navegadores que no soportan backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
   .hero-badge {
       background: rgba(255, 255, 255, 0.2);
   }
   
   .solucion-content {
       background: rgba(245, 243, 242, 0.95);
   }
   
   .solucion-card {
       background: rgba(245, 243, 242, 0.95);
   }
   
   .floating-icon {
       background: rgba(255, 255, 255, 0.2);
   }
   
   .cta-icon {
       background: rgba(255, 255, 255, 0.2);
   }
}

/* Optimizaciones para mejor rendimiento */
.solucion-image img,
.card-image img,
.hero-cloud-image {
   will-change: transform;
}

.floating-icon {
   will-change: transform;
}

/* Estados de carga */
.hero-cloud-image {
    width: 100%; /* Ajusta este porcentaje para hacer la imagen más grande o pequeña */
    height: 100%; /* Ajusta este porcentaje para el alto */
    object-fit: contain; /* Cambia a 'cover' si quieres que llene todo el espacio */
    transition: transform 0.4s ease;
    animation: cloudFloat 6s ease-in-out infinite;
    margin: auto; /* Centra la imagen */
}

@keyframes imageLoad {
   to {
       opacity: 1;
   }
}

/* Mejoras para impresión */
@media print {
   .soluciones-hero-section,
   .floating-icon,
   .hero-buttons,
   .solucion-button,
   .card-button,
   .cta-button {
       display: none;
   }
   
   .solucion-item {
       page-break-inside: avoid;
       margin-bottom: 40px;
   }
   
   .solucion-content {
       background: white;
       box-shadow: none;
       border: 1px solid #ccc;
   }
}