/* Estilo para el título de la sección FAQ */
.faq-title-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    color: #ffffff !important;
    font-weight: 700 !important;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

/* --- Estilos para Acordeón FAQ en web-design.php --- */
.accordion-item {
    background-color: rgba(10, 20, 40, 0.5); /* Fondo oscuro semitransparente */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.accordion-button {
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 15px !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05);
    color: #00bfff; /* Color de acento cuando está abierto */
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    color: #ccc;
    padding: 1.5rem;
}

.accordion-collapse {
    border: 0;
}

.accordion-button.collapsed {
    border-bottom: 0;
}

/* --- Estilos FAQ visibles (web-faq) --- */
#web-faq .faq-card { border: 0; }
#web-faq .faq-card .card-header { background: #fff; border: 0; }
#web-faq .faq-card .btn-link { text-decoration: none; }
#web-faq .faq-card .btn-link:hover { filter: saturate(1.1); }
#web-faq .card-body { background: #fff; color: #1c1c1c; }
/* Mostrar solo un icono según estado (usa los <i> de Font Awesome) */
#web-faq button[aria-expanded="true"] .fa-plus { display: none; }
#web-faq button[aria-expanded="false"] .fa-minus { display: none; }
/* Desactivar pseudo-elemento de icono heredado para evitar duplicado */
#web-faq .faq-header .btn::after { content: none !important; }
/* Badge subtítulo sutil - no compite con concept-box */
.badge-subtitle {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--turquesa-dark);
    padding: 8px 0;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--turquesa);
    transition: all 0.3s ease;
}

.badge-subtitle:hover {
    color: var(--turquesa);
    border-bottom-color: var(--turquesa-dark);
}

.badge-subtitle i {
    color: var(--turquesa);
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Caja conceptual para explicación de web artesanal */
.concept-box {
    display: flex;
    align-items: center;
    background-color: var(--turquesa-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin: 15px auto 25px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--turquesa);
    transition: all 0.3s ease;
    color: #fff;    
}

.concept-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.concept-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.concept-icon i {
    font-size: 24px;
    color: var(--turquesa-dark);
}

.concept-text {
    flex: 1;
}

.concept-text p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--font-color);
}

/* Sección Hero y Slider */
.web-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0px 0;
}

#web-design-carousel {
    width: 100%;
}

/* Mejoras para el slider */
#slider {
    position: relative;
    background: linear-gradient(45deg, rgba(1, 33, 43, 0.92), rgba(3, 47, 51, 0.8));
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-item .bg-overlay-img {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.bg-overlay-img {
    background-size: contain; /* o 'auto', o un tamaño específico */
    background-repeat: no-repeat;
    background-position: center center; /* o la posición que prefieras */
}

.carousel-item .container {
    position: relative;
    z-index: 100;
    padding-top: 120px;
    padding-bottom: 120px;
}

.carousel-inner .bg-overlay {
    z-index: 5;
    opacity: 0.4;
}


/* Estilo unificado para badges de pre-título */
.pre-title-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.9);
    color: var(--turquesa);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pre-title-badge i {
    margin-right: 8px;
    color: var(--accent-color);
}

.pre-title-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.text-shadow {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.scroll-down-btn:hover {
    color: #fff;
}

.scroll-down-btn .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.scroll-down-btn:hover .mouse {
    border-color: #fff;
}

.scroll-down-btn .mouse-dot {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    animation: mouse-scroll 2s infinite;
}

.scroll-down-btn:hover .mouse-dot {
    background-color: #fff;
}

@keyframes mouse-scroll {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Estilos para sección CTA */
#web-cta {
    position: relative;
    overflow: hidden;
}

/* Elemento de llamada a la acción con glassmorfismo */
.glass-cta {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
}

.glass-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.2);
    transform: translateY(-2px);
}

/* Secciones con glassmorfismo */
.glass-card-section {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Estilos para tarjetas con efecto glassmorfismo */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

/* Mejorar efecto glassmorfismo en hover */
.glass-card:hover {
    box-shadow: 0 12px 48px rgba(31, 38, 135, 0.25);
    transform: translateY(-5px);
}

.glass-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Sección de Proceso (oscura) */
.dark-section {
    position: relative;
    background-color: #101218;
    color: #fff;
    background-image: url('../img/seo_process.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

.dark-section-cta {
    position: relative;
    background-color: #101218;
    color: #fff;
    background-image: url('../img/web_listo.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 18, 24, 0.85);
    z-index: 1;

}

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

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

.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* Proceso Timeline - Mejorado */
.process-timeline {
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(105,176,225,0.3), rgba(255,255,255,0.05));
    transform: translateX(0%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(105,176,225,0.5);
}

/* Encabezado del proceso con decoración */
.process-heading {
    position: relative;
    margin-bottom: 30px;
}

.process-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.process-decor span {
    height: 2px;
    width: 50px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.process-decor i {
    font-size: 24px;
    color: #69B0E1;
    margin: 0 15px;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.process-item {
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(105,176,225,0.2);
}

.process-item:hover .process-icon {
    border-color: rgba(105,176,225,0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(105,176,225,0.4);
    background: rgba(255, 255, 255, 0.1);
}

.process-icon i {
    font-size: 40px;
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(105,176,225,0.7);
}

.process-item:hover .process-icon i {
    transform: scale(1.1);
    color: #69B0E1;
}

.process-number {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    top: -5px;
    right: -5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.process-item h4 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.process-item:hover h4 {
    color: #69B0E1;
}

.process-item h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-item:hover h4:after {
    width: 60px;
    background: rgba(105,176,225,0.5);
}

/* Flechas de proceso */
.process-arrow {
    position: absolute;
    right: -15px;
    top: 50px;
    z-index: 5;
}

.process-arrow i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(5px); opacity: 0.8; }
    100% { transform: translateX(0); opacity: 0.3; }
}

.process-item:hover .process-arrow i {
    color: #69B0E1;
}

/* Icono de completado */
.process-complete {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(141, 226, 179, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.process-item:hover .process-complete {
    opacity: 1;
    transform: scale(1);
}

.process-complete i {
    color: #8DE2B3;
    font-size: 14px;
}

/* Beneficios del proceso */
.process-benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-benefit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.process-benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(105, 176, 225, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.process-benefit:hover .process-benefit-icon {
    background: rgba(105, 176, 225, 0.4);
}

.process-benefit-icon i {
    font-size: 20px;
    color: #fff;
}

.process-benefit-content h5 {
    margin-bottom: 10px;
}

.process-benefit-content p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Features Grid */
.features-grid {
    gap: 30px;
}

.feature-card {
    height: 100%;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}


.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
    color: #fff;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}


/* Estilos para botones de "Conoce más" con estética glassmórfica */
.feature-card-item .btn.btn-sm.btn-outline-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--cnvs-themecolor, #0D687C);
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 8px;
    min-width: 85%;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card-item .btn.btn-sm.btn-outline-primary:hover {
    background: var(--cnvs-themecolor, #0D687C);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 104, 124, 0.3);
}

.feature-card-item .btn.btn-sm.btn-outline-primary:hover::after {
    left: 100%;
}

/* Estilos mejorados y atractivos para las características de los proyectos */
.project-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Espacio entre los tags */
}

.project-features li {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px; /* Bordes redondeados para el efecto tag */
    font-size: 0.85em;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.project-features li i {
    margin-right: 8px;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Asignar colores diferentes a los iconos de los tags de proyecto */
.project-features li:nth-child(3n+1) {
    background-color: rgba(0, 123, 255, 0.08); /* Azul */
    border: 1px solid rgba(0, 123, 255, 0.15);
    color: #007bff;
}
.project-features li:nth-child(3n+2) {
    background-color: rgba(23, 162, 184, 0.08); /* Cian */
    border: 1px solid rgba(23, 162, 184, 0.15);
    color: #17a2b8;
}
.project-features li:nth-child(3n+3) {
    background-color: rgba(40, 167, 69, 0.08); /* Verde */
    border: 1px solid rgba(40, 167, 69, 0.15);
    color: #28a745;
}

/* Hover states para los nuevos colores */
.project-features li:hover {
    transform: translateY(-3px);
}
.project-features li:nth-child(3n+1):hover {
    background-color: rgba(0, 123, 255, 0.15);
    box-shadow: 0 8px 20px -10px rgba(0, 123, 255, 0.4);
}
.project-features li:nth-child(3n+2):hover {
    background-color: rgba(23, 162, 184, 0.15);
    box-shadow: 0 8px 20px -10px rgba(23, 162, 184, 0.4);
}
.project-features li:nth-child(3n+3):hover {
    background-color: rgba(40, 167, 69, 0.15);
    box-shadow: 0 8px 20px -10px rgba(40, 167, 69, 0.4);
}

/* Estilos para los iconos en los planes de precios */
.pricing-features ul {
    padding-left: 0;
    list-style: none;
}
.pricing-features li {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 6px 0;
}
.pricing-features li i {
    margin-right: 15px;
    font-size: 1.1em;
    width: 25px;
    text-align: center;
    transition: color 0.3s ease;
}

/* Colores variados para los iconos de los planes */
.pricing-features li:nth-child(5n+1) i { color: #007bff; } /* Azul */
.pricing-features li:nth-child(5n+2) i { color: #28a745; } /* Verde */
.pricing-features li:nth-child(5n+3) i { color: #17a2b8; } /* Cian */
.pricing-features li:nth-child(5n+4) i { color: #fd7e14; } /* Naranja */
.pricing-features li:nth-child(5n+5) i { color: #6f42c1; } /* Púrpura */

.pricing-features li.text-muted {
    color: #888 !important; /* Asegurar que el texto se vea atenuado */
}

.pricing-features li.text-muted i {
    color: #aaa !important; /* Sobrescribir el ciclo de colores */
}

/* Estilos mejorados para iconos de beneficios */
.tech-benefit-item > i.fas.fa-check-circle,
.tech-benefit-item > i.fas.fa-check {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(105, 176, 225, 0.9), rgba(141, 226, 179, 0.8));
    border-radius: 50%;
    margin-right: 18px;
    font-size: 18px;
    color: white;
    box-shadow: 0 5px 15px rgba(105, 176, 225, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-benefit-item:hover > i.fas {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(105, 176, 225, 0.5);
    background: linear-gradient(135deg, rgba(105, 176, 225, 1), rgba(141, 226, 179, 0.9));
}

/* Resplandor alrededor del icono */
.tech-benefit-item > i.fas::before {
    position: relative;
    z-index: 2;
}

.tech-benefit-item > i.fas::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.4;
    z-index: 1;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.tech-benefit-item:hover > i.fas::after {
    opacity: 0.7;
    filter: blur(12px);
}

/* Sección de Portfolio - Mejorado */
.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    margin: 15px 5px;
    background: #fff;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-image .bg-overlay {
    opacity: 0;
    background-color: rgba(105, 176, 225, 0.75);
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-image .bg-overlay {
    opacity: 1;
}

.portfolio-image .bg-overlay-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 3;
}

.overlay-trigger-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
}

.portfolio-item:hover .overlay-trigger-icon {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-desc {
    padding: 25px;
    background: #fff;
    transition: all 0.3s ease;
}

.portfolio-desc h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.portfolio-desc h3 a {
    color: #333;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-desc h3 a {
    color: #69B0E1;
}

.portfolio-desc span {
    font-size: 14px;
    color: #777;
}

/* Sección de precios - Mejorada */
.pricing-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.pricing-boxes > [class*="col-"] {
    padding: 15px;
    display: flex;
}

.pricing-box {
    padding: 40px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(105, 176, 225, 0.2);
}

.pricing-featured {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(105, 176, 225, 0.3);
    z-index: 2;
}

.pricing-featured:hover {
    transform: translateY(-25px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(105, 176, 225, 0.3);
    z-index: 3;
}

.pricing-title {
    margin-bottom: 30px;
}

.pricing-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-subtitle {
    color: #777;
    font-size: 14px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.price-unit {
    font-size: 14px;
    color: #777;
}

.price-number {
    font-size: 42px;
    font-weight: 700;
    color: #333;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 15px;
}

.pricing-action {
    margin-top: auto;
}

/* Testimonios */
.testimonial {
    margin-bottom: 20px;
}

.testimonial-content {
    padding: 30px;
    padding-top: 40px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 25px;
    color: rgba(105, 176, 225, 0.3);
    font-size: 24px;
    transition: all 0.3s ease;
}

.testimonial:hover .testimonial-quote {
    color: rgba(105, 176, 225, 0.7);
    transform: scale(1.2);
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transform: rotate(45deg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 0;
    border-left: 0;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin-bottom: 3px;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 13px;
    color: #777;
}

 

/* CTA - Mejorado */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(16, 18, 24, 0.92), rgba(8, 55, 87, 0.8));
    z-index: 1;
}

#web-cta {
    position: relative;
    overflow: hidden;
}

#web-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    z-index: 0;
    background: linear-gradient(45deg, rgba(15, 74, 127, 0.92), rgba(0, 31, 52, 0.8));
}

.cta-icon-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(105,176,225,0.2);
}

.cta-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 25px rgba(105,176,225,0.4);
}

.cta-icon i {
    font-size: 32px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Estilos para las estadísticas en CTA */
.cta-stat {
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.cta-stat:hover {
    transform: translateY(-5px);
}

.cta-stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-stat-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-primary {
    background: var(--degradado-turquesa-dark);
    border: none;
    box-shadow: 0 8px 15px rgba(105, 176, 225, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(105, 176, 225, 0.4);
    background: linear-gradient(135deg, #5a9fcf, #7cd1a2);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Ajuste para la posición vertical del contenido del slider */
#slider.slider-element .hero-content {
    padding-top: 20vh; /* Puedes ajustar este valor (e.g., 8vh, 12vh, o un valor fijo en px como 80px) */
    padding-bottom: 5vh; /* Opcional: un poco de padding inferior también */
}
/* --- Estilos para Sección Tecnología Avanzada --- */

/* Tarjetas flotantes sobre la imagen principal */
.feature-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.feature-floating-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-floating-card .feature-mini-icon {
    margin-right: 8px;
    color: var(--cnvs-themecolor, #0D687C); /* Usa el color primario de Canvas o un color por defecto */
    font-size: 1.1em;
}

.feature-floating-card.left-top {
    top: 20px;
    left: 20px;
}

.feature-floating-card.right-top {
    top: 20px;
    right: 20px;
}

.feature-floating-card.left-bottom {
    bottom: 20px;
    left: 20px;
}

.feature-floating-card.right-bottom {
    bottom: 20px;
    right: 20px;
}

/* Beneficios tecnológicos (lista dentro de la tarjeta glass) */
.tech-benefits .tech-benefit-item {
    display: flex;
    align-items: flex-start; /* Alinea el ícono con la primera línea del texto */
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.tech-benefits .tech-benefit-item:last-child {
    margin-bottom: 0;
}

.tech-benefits .tech-benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.tech-benefits .tech-benefit-item > i {
    font-size: 1.5em; /* Tamaño del ícono de check */
    margin-right: 15px;
    margin-top: 3px; /* Ajuste vertical fino del ícono */
    /* color: var(--cnvs-themecolor, #0D687C); Ya tiene text-primary */
}

.tech-benefits .tech-benefit-item h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.tech-benefits .tech-benefit-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Mini características tecnológicas (grid inferior) */
.tech-feature-mini {
    background: #fff; /* Fondo sólido para contraste o glassmorfismo si se prefiere */
    /* background: rgba(255, 255, 255, 0.7); */ /* Opción glass */
    /* backdrop-filter: blur(8px); */
    /* -webkit-backdrop-filter: blur(8px); */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%; /* Para igualar alturas en la fila si es necesario */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-feature-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.tech-feature-mini .tech-icon-small {
    font-size: 2.5em; /* Tamaño del ícono */
    color: var(--cnvs-themecolor, #0D687C);
    margin-bottom: 20px;
    width: 70px; /* Contenedor del icono */
    height: 70px;
    background-color: rgba(13, 104, 124, 0.1); /* Fondo suave para el icono */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tech-feature-mini:hover .tech-icon-small {
    background-color: var(--cnvs-themecolor, #0D687C);
    color: #fff;
}

.tech-feature-mini h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tech-feature-mini p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* --- Fin Estilos para Sección Tecnología Avanzada --- */
/* Estilos generales y decorativos */
.gradient-text {
    background: linear-gradient(135deg, var(--turquesa), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-pastel {
    background-color: #f5f7fa;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #ebf2f8 100%);
}

.img-showcase {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-showcase-hover {
    transition: transform 0.3s ease-in-out;
}

.img-showcase-hover:hover {
    transform: scale(1.15) translateY(-10px);
}

.main-feature-image {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.main-feature-image img{
    transition: transform 0.3s ease-in-out;
}

.main-feature-image img:hover {
    transform: scale(1.05) translateY(-10px);

}

/* --- Estilos para los nuevos componentes del Hero Slider --- */

/* 1. Gráfico de Proceso (Infografía) */
/* Keyframes para la animación de flotación */
@keyframes float-animation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Nuevo Diseño Infografía: Anillos Orbitales --- */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-slow-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.hero-process-infographic {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50%;
    animation: subtle-float 8s ease-in-out infinite; /* Animación de flotación */
}

.orbital-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Más brillo */
    box-shadow: 0 0 20px rgba(var(--turquesa-rgb), 0.25); /* Más brillo */
}

/* 4 anillos, del más externo al más interno */
.ring1 { width: 400px; height: 400px; animation: rotate-slow 50s linear infinite; }
.ring2 { width: 320px; height: 320px; animation: rotate-slow-reverse 40s linear infinite; }
.ring3 { width: 240px; height: 240px; animation: rotate-slow 30s linear infinite; }
.ring4 { width: 160px; height: 160px; animation: rotate-slow-reverse 20s linear infinite; }

.process-node {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--turquesa);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 22px var(--turquesa); /* Más brillo */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efecto hover corregido y más pronunciado */
.process-node:hover {
    transform: scale(1.8) !important; /* Usamos !important para asegurar que sobreescriba la posición de la animación */
}

/* Posicionamiento de cada nodo en su anillo y cuadrante */
.ring1 .node1 { top: -11px; left: 50%; transform: translateX(-50%); }
.ring2 .node2 { top: 50%; right: -11px; transform: translateY(-50%); }
.ring3 .node3 { bottom: -11px; left: 50%; transform: translateX(-50%); }
.ring4 .node4 { top: 50%; left: -11px; transform: translateY(-50%); }

.node-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0.4; /* Ligeramente visible por defecto */
    visibility: visible;
    transform: translateY(-35px) scale(0.8); /* Un poco más pequeño por defecto */
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.process-node:hover .node-label {
    opacity: 1;
    transform: translateY(-35px) scale(1); /* Tamaño y opacidad completos al pasar el ratón */
}

/* Ocultamos las flechas, ya no son necesarias */
.process-arrow {
    display: none;
}

/* 2. Tarjetas de KPIs */
.hero-kpi-cards {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    perspective: 1000px;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    animation: float-animation 6s ease-in-out infinite;
}

.kpi-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.kpi-card .kpi-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.kpi-card .kpi-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.kpi-card .kpi-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 3. Contenedor Animación Lottie */
.hero-lottie-animation {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px; /* Aseguramos altura */
    margin: -50px auto; /* Ajuste para centrar mejor visualmente */
}

#lottie-container {
    width: 100%;
    height: 100%;
}

/* --- Animación de Mockups en Slide 3 --- */
.hero-mockups-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50%; /* Para bajar los mockups y que no los tape el menú */
}

.mockups-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1800px;
}

.mockup-container {
    position: absolute;
    width: 65%;
    transform-style: preserve-3d;
    opacity: 0; /* Inicia invisible */
}

.mockup-item {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 20px 22px 39px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #2d3748;
}

/* --- ESTADO 1: Animación de Entrada --- */
/* Se definen los z-index, pero la animación la inicia el JS */
.container-1 { z-index: 3; }
.container-2 { z-index: 2; }
.container-3 { z-index: 1; }

/* Clases que el JS usará para disparar la animación */
.start-anim-1 { animation: mockup-enter-1 1.2s ease-out 0.2s forwards; }
.start-anim-2 { animation: mockup-enter-2 1.2s ease-out 0.5s forwards; }
.start-anim-3 { animation: mockup-enter-3 1.2s ease-out 0.8s forwards; }

@keyframes mockup-enter-1 { from { opacity: 0; transform: translateZ(-200px) rotateY(45deg) translateX(60%); } to { opacity: 1; transform: translateZ(50px) rotateY(-20deg) translateX(-30%); } }
@keyframes mockup-enter-2 { from { opacity: 0; transform: translateZ(-200px) rotateY(45deg) translateX(60%); } to { opacity: 1; transform: translateZ(-20px) rotateY(-5deg) translateX(0%); } }
@keyframes mockup-enter-3 { from { opacity: 0; transform: translateZ(-200px) rotateY(45deg) translateX(60%); } to { opacity: 1; transform: translateZ(-90px) rotateY(10deg) translateX(30%); } }

/* --- ESTADO 2: Interactivo (después de la entrada) --- */

/* Posiciones finales para un traspaso sin saltos desde la animación */
.container-1.is-interactive { transform: translateZ(50px) rotateY(-20deg) translateX(-30%); }
.container-2.is-interactive { transform: translateZ(-20px) rotateY(-5deg) translateX(0%); }
.container-3.is-interactive { transform: translateZ(-90px) rotateY(10deg) translateX(30%); }

/* Activar transiciones y flotación SÓLO en modo interactivo */
.mockup-container.is-interactive {
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform; /* Optimización para el hover */
}
.mockup-container.is-interactive .mockup-floater {
    will-change: transform; /* Activa la capa de renderizado para la flotación */
    animation: float-animation 6s ease-in-out infinite;
}

/* Desincronizar la animación de flotar para un efecto más natural */
.container-2.is-interactive .mockup-floater { animation-delay: 0.5s; }
.container-3.is-interactive .mockup-floater { animation-delay: 1s; }

.mockup-container.is-interactive .mockup-item {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- Interacciones de Hover (controladas por JS) --- */

/* El escalado se aplica al item para no bloquear la flotación del 'floater' */
.mockups-wrapper.hover-1 .container-1.is-interactive .mockup-item,
.mockups-wrapper.hover-2 .container-2.is-interactive .mockup-item,
.mockups-wrapper.hover-3 .container-3.is-interactive .mockup-item {
    transform: scale(1.15);
}

/* Hover en 1 (Izquierda) */
.mockups-wrapper.hover-1 .container-1.is-interactive { transform: translateZ(100px) rotateY(-15deg) translateX(-30%); z-index: 10; }
.mockups-wrapper.hover-1 .container-2.is-interactive { transform: translateZ(-50px) rotateY(-5deg) translateX(50%);  z-index: 2; }
.mockups-wrapper.hover-1 .container-3.is-interactive { transform: translateZ(-120px) rotateY(10deg) translateX(80%); z-index: 1; }

/* Hover en 2 (Centro) */
.mockups-wrapper.hover-2 .container-1.is-interactive { transform: translateZ(20px) rotateY(-25deg) translateX(-80%); z-index: 2; }
.mockups-wrapper.hover-2 .container-2.is-interactive { transform: translateZ(100px) rotateY(0) translateX(0); z-index: 10; }
.mockups-wrapper.hover-2 .container-3.is-interactive { transform: translateZ(-50px) rotateY(25deg) translateX(80%); z-index: 1; }

/* Hover en 3 (Derecha) */
.mockups-wrapper.hover-3 .container-1.is-interactive { transform: translateZ(-60px) rotateY(-25deg) translateX(-80%); z-index: 1; }
.mockups-wrapper.hover-3 .container-2.is-interactive { transform: translateZ(-30px) rotateY(-5deg) translateX(-50%); z-index: 2; }
.mockups-wrapper.hover-3 .container-3.is-interactive { transform: translateZ(100px) rotateY(15deg) translateX(30%); z-index: 10; }

/* --- Fin Estilos Hero Slider --- */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    margin-right: 10px;
    margin-top: 5px;
}

.btn-link {
    color: #69B0E1;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #5295c0;
}

.btn-link:hover i {
    transform: translateX(5px);
}


/* Estilos para los módulos superiores mejorados */
.feature-modules-row {
    margin-bottom: 40px;
    justify-content: center;
}

.feature-module {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.feature-module:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
}

.feature-module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(105, 176, 225, 0.25);
}

.feature-module h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.feature-module p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Estilos adicionales para mejorar la sección de tecnologías */

/* Feature cards para la sección Tecnología Avanzada */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.feature-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    color: white;
    box-shadow: 0 5px 15px rgba(105, 176, 225, 0.3);
}

.feature-card-icon i {
    font-size: 1.8rem;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card-content {
    flex: 1;
    color: #666;
}

.feature-tag {
    display: inline-block;
    background: rgba(105, 176, 225, 0.15);
    color: #69B0E1;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Mejora para listas de características */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #8DE2B3;
}

/* Mejora para el CTA */
.glass-cta {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
    padding: 35px;
    margin-bottom: 40px;
    text-align: center;
}

.glass-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.2);
    transform: translateY(-5px);
}

.glass-cta h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.glass-cta .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Estilos adicionales para mejorar el glassmorfismo y layout */

/* Estilos para cajas de características en la introducción */
.feature-box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(31, 38, 135, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

/* Estilos para la sección de matriz de servicios por sectores */
/* Estilos mejorados para las pestañas de servicios por sector */
.tabs-alt {
    position: relative;
    margin-bottom: 3rem;
}

.tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    border: none;
}

.tab-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 104, 124, 0.3), transparent);
    z-index: -1;
}

.tab-nav li {
list-style: none;
margin: 0 0.5rem;
position: relative;
}

.tab-nav li a {
display: flex;
align-items: center;
justify-content: center;
padding: 1rem 1.5rem;
color: #555;
font-weight: 600;
transition: all 0.3s ease;
border-bottom: 2px solid transparent;
text-decoration: none;
position: relative;
border-radius: 12px 12px 0 0;
background: transparent;
min-width: 120px;
}

.tab-nav li a::before {
content: '';
position: absolute;
bottom: -2px;
left: 0;
right: 0;
height: 2px;
background: transparent;
transition: all 0.3s ease;
}

.tab-nav li a i {
margin-right: 8px;
font-size: 1.1rem;
color: #0D687C;
}

.tab-nav li.ui-tabs-active a {
color: #0D687C;
background: rgba(13, 104, 124, 0.05);
}

.tab-nav li.ui-tabs-active a::before {
background: #0D687C;
}

.tab-nav li a:hover {
color: #0D687C;
background: rgba(13, 104, 124, 0.03);
}

.tab-container {
position: relative;
margin-top: 1rem;
overflow: hidden;
min-height: 500px; /* Altura fija para evitar saltos */
}

.tab-content {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    transform: translateY(20px) scale(0.95);
    height: auto;
    z-index: 1;
    display: none;
}

.tab-content.ui-tabs-active,
.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0) scale(1);
    z-index: 2;
    display: block !important;
}

/* Animación para las tarjetas de servicios */
@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card {
    animation: cardAppear 0.6s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
    opacity: 0;
}

/* ESTILOS PARA SECTOR-TABS */
.sector-tabs-simple {
    margin: 30px 0;
}

.sector-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    gap: 15px;
}

.sector-nav li {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
    border: 1px solid rgba(13, 104, 124, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sector-nav li i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: #0D687C;
}

.sector-nav li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-nav li.active {
    background: #0D687C;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sector-nav li.active i {
    color: white;
}

.sector-container {
    position: relative;
    min-height: 450px;
}

.tab-content {
    display: none;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 104, 124, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h5 {
    color: #0D687C;
    margin-bottom: 1rem;
}

.service-card-icon {
    background: rgba(13, 104, 124, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #0D687C;
    font-size: 1.5rem;
}

.mini-testimonial {
    background: rgba(13, 104, 124, 0.05);
    border-left: 3px solid #2197B1;
    padding: 1rem;
    border-radius: 4px 8px 8px 4px;
    font-style: italic;
    margin-top: 1.5rem;
}

.mini-testimonial cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
    font-style: normal;
    color: #0D687C;
}

/* Estilos mejorados para el timeline horizontal del proceso */
.process-timeline-horizontal {
    display: flex;
    flex-wrap: wrap;
    margin: 3rem 0;
    position: relative;
    padding: 1rem 0;
}

.process-timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    z-index: 1;
    border-radius: 4px;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px; /* Espacio para el icono */
}

.process-step-header {
    text-align: center;
    margin-bottom: 15px;
}

.process-step-content {
    flex: 1;
    text-align: center;
}

.process-step-icon-container {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.process-step::after {
    content: '\f054'; /* Icono de flecha FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -25px;
    color: #0D687C;
    font-size: 24px;
    transform: translateY(-50%);
    z-index: 5;
}

.process-step:last-child::after {
    display: none;
}

.process-step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D687C, #1a98b5);
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(13, 104, 124, 0.3);
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

/* Animación de pulso para los círculos del proceso */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(13, 104, 124, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(13, 104, 124, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(13, 104, 124, 0.3);
    }
}

.process-step-circle.animate-pulse {
    animation: pulse-animation 1s ease-in-out;
}

/* =================================
   ESTILOS PROCESO - LIMPIOS Y REORGANIZADOS
   ================================= */
.process-step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #0D687C;
    font-size: 20px;
    border: 2px solid #0D687C;
}

.process-step:hover .process-step-circle {
    box-shadow: 0 15px 35px rgba(13, 104, 124, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.process-step-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
}

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

.process-step h4 {
    color: #0D687C;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.process-step p {
    color: #333;
    font-size: 0.95rem;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.process-step-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D687C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    z-index: 2;
}

.rgpd-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
    color: #fff;
    font-size: 0.9rem;
}

.rgpd-badge i {
    margin-right: 0.5rem;
    color: #8DE2B3;
}

.section-light-glass {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Estilos para la sección de testimonios */
.testimonial-content {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    margin-bottom: 15px;
    color: var(--primary-color);
    z-index: -100;
    opacity: 0.6;
}

/* Estilos para tarjetas de características con imágenes */
.feature-card-image-container {
    position: relative;
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
    height: 180px; /* Altura fija para la imagen */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el contenedor */
    transition: transform 0.6s ease, filter 0.6s ease;
}

.feature-card-item:hover .feature-card-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Reposicionamiento de la etiqueta de característica */
.feature-card-image-container .feature-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(105, 176, 225, 0.85), rgba(141, 226, 179, 0.85));
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Overlay sutil para mejorar contraste */
.feature-card-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

/* Estilos para la sección de proyectos */
.portfolio-item {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

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

.portfolio-image img {
    transition: transform 0.5s ease;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-button {
    background: #fff;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.portfolio-item:hover .overlay-button {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-desc {
    padding: 15px;
}

.portfolio-desc h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

/* Estilos para la sección de servicios */
.service-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #69B0E1, #8DE2B3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-content {
    padding: 30px;
    flex: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.service-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}


/* Media Queries movil*/
@media (max-width: 991px) {
    .process-timeline:before {
        display: none;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .pricing-boxes {
        gap: 20px;
    }
 .feature-floating-card {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    .feature-floating-card .feature-mini-icon {
        font-size: 1em;
    }

    .hero-mockups-container, .hero-kpi-cards, .hero-process-infographic {
        transform: scale(0.85);
        margin-top: -40px;
        transform-origin: center center;
    }
}
 

/* For Mobile Phones - reorder and restyle */
 

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
    
    .concept-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .concept-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .process-item {
        margin-bottom: 30px;
    }
    
    .hero-content {
        padding: 80px 0;
    }

    .main-feature-image {
        margin-bottom: 30px; /* Espacio si las tarjetas flotantes se ocultan o reposicionan */
    }
    .feature-floating-card {
        /* Considerar si se deben ocultar o simplificar mucho en móviles */
        /* Ejemplo: posicionarlas de forma más estática o reducir su tamaño */
        position: absolute; /* Cambiar a relativo para que fluyan */
        /*width: calc(50% - 10px);  Dos por fila */
        margin: 5px;
        width: auto !important;
        text-align: center;
        display: inline-block; /* Para que se alineen */
        top: auto; left: auto; right: auto; bottom: auto; /* Resetear posiciones absolutas */
    }
    .main-feature-image {
        display: flex; /* Para centrar las tarjetas relativas */
        flex-wrap: wrap;
        justify-content: center;
    }
    .tech-feature-mini {
        padding: 20px;
    }
    .tech-feature-mini .tech-icon-small {
        font-size: 2em;
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .tech-feature-mini h5 {
        font-size: 1.05rem;
    }

    .sector-nav {
        flex-direction: column;
        align-items: stretch; /* Los botones ocupan todo el ancho */
        gap: 10px;
    }

    .tab-btn {
        flex-basis: 100%; /* Cada botón ocupa el ancho completo */
        max-width: 100%;
    }

    .carousel-item .container {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
        overflow: hidden; /* Prevent scaled elements from creating horizontal scroll */
    }

    .mockup-container {
        width: 45%;
    }
    
    /* Reorder columns for mobile using Flexbox */
    .carousel-item .row {
        display: flex;
        flex-direction: column;
    }
    .carousel-item .row > .col-lg-6:first-child { /* Text & Buttons column */
        order: 2;
    }
    .carousel-item .row > .col-lg-6:last-child { /* Graphics column */
        order: 1;
    }

    /* Style the graphics containers for mobile */
    .hero-mockups-container, .hero-kpi-cards, .hero-process-infographic {
        transform: scale(0.7);
        transform-origin: center;
        height: auto;
        margin-top: -75px;
        margin-bottom: -58px;
        pointer-events: none; /* Make container non-interactive */
    }

    .hero-kpi-cards {
        transform: scale(0.9);
        top: 95%;
        position: relative;
        left: -2%;
        margin-top: 22px;
        margin-bottom: -143px;
    }

    .hero-process-infographic {
        transform: scale(0.4);
        margin-top: 14vh;
    }

    #slider.slider-element .hero-content {
        padding-top: 26vh;
        
    }

    /* Make the actual interactive items clickable again */
    .hero-mockups-container .is-interactive,
    .hero-kpi-cards .kpi-card,
    .hero-process-infographic .infographic-step {
        pointer-events: auto;
    }

    /* Adjust text size */
    .hero-content h1 {
        font-size: 2.2rem; /* Smaller title */
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    /* Style and stack the buttons */
    .hero-buttons {
        margin-top: 1.5rem;
    }
    .hero-buttons .btn {
        display: block;
        width: 80%;
        margin: 8px auto !important;
        float: none !important;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}


@media (max-width: 575px) { /* Móviles muy pequeños */
    .feature-floating-card {
        width: 100%; /* Una por fila */
        margin: 8px 0;
    }
}
 


/* Media Query para móviles muy pequeños (opcional, si necesitas más ajustes) */
@media (max-width: 480px) {
    .tab-btn {
        padding: 12px 8px;
        font-size: 0.9rem; /* Si el texto es muy grande */
    }
    .tab-btn i {
        font-size: 1.6em;
    }

    .hero-kpi-cards {
        transform: scale(0.5);
        top: 92%;
        position: relative;
        left: -10%;
    }
}

/* ========================================
   ESTILOS FORMULARIO DE CONTACTO MODERNO
   ======================================== */

.bg-gradient-modern {
    /* Fondo pastel cálido acorde al sitio */
    background: radial-gradient(at 47% 33%, var(--bg-pastel, #FDFCF1) 0%, transparent 59%),
                radial-gradient(at 82% 65%, #E1DEBB, #F0EDCF 55%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-modern::before { /* No necesitamos overlay oscuro aquí */
    content: none;
}

.text-gradient-colorful {
    /* Degradado acorde al petróleo/turquesa y acento cálido */
    background: linear-gradient(45deg, #0D687C, #207C8A, #FFCC89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.form-widget-modern {
    position: relative;
    z-index: 1;
}

.contact-form-wrap-modern {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e8e5d1; /* borde cálido suave */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-header-modern {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--degradado-sintesia, linear-gradient(135deg,#053140 0%, #17586d 100%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--turquesa-rgb, 13,104,124), 0.25);
}

.form-header-modern h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header-modern p {
    margin: 0;
    opacity: 0.9;
}

.custom-input-modern {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.custom-input-modern:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--turquesa, #0D687C);
    box-shadow: 0 0 0 0.2rem rgba(var(--turquesa-rgb, 13,104,124), 0.25);
}

.form-floating > label {
    padding-left: 1rem;
}

.btn-modern-gradient {
    background: linear-gradient(135deg, var(--turquesa, #0D687C) 0%, var(--turquesa-dark, #0a5467) 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--turquesa-rgb, 13,104,124), 0.28);
    position: relative;
    overflow: hidden;
}

.btn-modern-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--turquesa-rgb, 13,104,124), 0.4);
}

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

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

/* Tarjetas de información de contacto */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-info-card-modern:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-info-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.bg-gradient-primary {
    background: var(--degradado-sintesia, linear-gradient(135deg,#053140 0%, #17586d 100%));
}
.bg-gradient-success {
    background: linear-gradient(135deg, #FFCC89 0%, #E1DEBB 100%);
    color: #333;
}
.bg-gradient-info {
    background: linear-gradient(135deg, rgba(var(--turquesa-rgb, 13,104,124), 0.9) 0%, var(--turquesa, #0D687C) 100%);
}
.bg-gradient-warning {
    background: linear-gradient(135deg, #F6E6A7 0%, #F0EDCF 100%);
    color: #333;
}

.contact-info-content-modern h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-content-modern p {
    margin: 0;
    opacity: 0.9;
}

.contact-info-content-modern a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-content-modern a:hover {
    opacity: 0.8;
}

/* Overrides de tipografía para que el bloque sea legible sobre fondo claro */
#contact-web-design .text-white,
#contact-web-design h2,
#contact-web-design h3,
#contact-web-design p,
#contact-web-design label,
#contact-web-design .form-check-label {
    color: #084f65 !important; /* azul petróleo del sitio */
}

#contact-web-design .form-header-modern p { color: #207C8A !important; }

/* Unificar color de iconos de labels en la paleta del sitio */
#contact-web-design .form-floating label i { color: var(--turquesa, #0D687C) !important; opacity: 0.9; }

/* Ajuste de tarjetas de información para fondo pastel */
#contact-web-design .contact-info-card-modern {
    background: #ffffffe6;
    border: 1px solid #e8e5d1;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-modern {
        margin-top: 2rem;
    }
    
    .form-header-modern {
        margin-bottom: 1.5rem;
    }
    
    .form-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-form-wrap-modern {
        padding: 1.5rem;
    }
    
    .btn-modern-gradient {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info-card-modern {
        padding: 1rem;
    }
    
    .contact-info-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}