/* Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0D0D0D;
    color: #ffffff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    padding: 1rem 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-columna {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.izquierda {
    justify-content: flex-start;
}

.derecha {
    justify-content: flex-end;
}

.logo {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #80BFB9;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #80BFB9;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.sociales {
    display: flex;
    gap: 1.5rem;
}

.sociales a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sociales a:hover {
    color: #80BFB9;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 80px; /* Para compensar el header fijo */
}

.slider-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13,13,13,0.8) 30%, rgba(63,63,64,0.5) 100%);
}

.slide-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-text {
    transform: translateY(0);
    opacity: 1;
}

.slide-subtitle {
    color: #80BFB9;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Botón WhatsApp */
.whatsapp-btn {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 3;
    background: #80BFB9;
    color: #0D0D0D;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(128, 191, 185, 0.3);
}

.whatsapp-btn:hover {
    background: #63A69A;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(128, 191, 185, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Navegación Slider */
.slider-nav {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #80BFB9;
    transform: scale(1.3);
}

/* Sección Atención Urgente */
.atencion-urgente {
    padding: 8rem 5%;
    background: #3f3f3f;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.encabezado {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitulo {
    color: #80BFB9;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.titulo {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.descripcion {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.dispositivo-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
}

.macbook {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.servicio-item {
    position: absolute;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.servicio-burbuja {
    width: 50px;
    height: 50px;
    background: #80BFB9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 191, 185, 0.3);
}

.servicio-texto {
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: #0D0D0D;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.servicio-item:hover .servicio-texto {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.servicio-item:hover .servicio-burbuja {
    background: #63A69A;
    transform: scale(1.1) rotate(15deg);
}

.cta-urgente {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem auto 0;
    padding: 1.2rem 2.5rem;
    background: #80BFB9;
    color: #0D0D0D;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(128, 191, 185, 0.3);
}

.cta-urgente:hover {
    background: #63A69A;
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(128, 191, 185, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .titulo {
        font-size: 2rem;
    }
    
    .servicio-item {
        transform: scale(0.8);
    }
    
    .servicio-texto {
        font-size: 0.8rem;
    }
    
    .cta-urgente {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* Sección Reparación */
.reparacion-section {
    padding: 6rem 5%;
    background: #0D0D0D;
    position: relative;
    overflow: hidden;
}

.reparacion-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
}

.reparacion-col {
    position: relative;
}

.reparacion-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reparacion-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(128, 191, 185, 0.2);
}

.decoracion-linea {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #80BFB9 50%, 
        transparent 100%);
    opacity: 0.3;
}

/* Contenido Textual */
.reparacion-titulo {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.titulo-gradient {
    background: linear-gradient(45deg, #80BFB9, #ffffff);
    -webkit-background-clip: text;
    background-clip: text; /* Propiedad estándar */
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback para navegadores modernos */
}

.titulo-destacado {
    color: #80BFB9;
    display: inline-block;
    position: relative;
}

.titulo-destacado::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reparacion-col:hover .titulo-destacado::after {
    transform: scaleX(1);
}

.reparacion-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Lista de Beneficios */
.beneficios-list {
    list-style: none;
    margin-bottom: 3rem;
}

.beneficio-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(63, 63, 64, 0.3);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.beneficio-item:hover {
    background: #3F3F40;
    transform: translateX(10px);
}

.icono-beneficio {
    font-size: 1.8rem;
    color: #80BFB9;
    min-width: 40px;
    padding-top: 5px;
    transition: transform 0.3s ease;
}

.beneficio-item:hover .icono-beneficio {
    transform: rotate(15deg) scale(1.1);
}

.beneficio-texto h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.beneficio-texto p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Botón CTA */
.cta-reparacion {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #80BFB9, #63A69A);
    color: #0D0D0D;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 191, 185, 0.3);
}

.cta-reparacion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 191, 185, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .reparacion-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reparacion-titulo {
        font-size: 2.2rem;
    }
    
    .decoracion-linea {
        display: none;
    }
    
    .beneficio-item {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .reparacion-titulo {
        font-size: 1.8rem;
    }
    
    .cta-reparacion {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* Sección Testimonios */
.testimonios-section {
    padding: 8rem 5%;
    background: #3F3F40;
    position: relative;
    overflow: hidden;
}

.testimonios-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
}

.testimonio-card {
    position: absolute;
    width: 300px;
    background: #0D0D0D;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    border: 2px solid #80BFB9;
}

.testimonio-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones flotantes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-1 {
    animation: float 4s ease-in-out infinite;
    left: 5%;
    top: 20%;
}

.floating-2 {
    animation: float 5s ease-in-out infinite;
    right: 5%;
    top: 40%;
}

.testimonio-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonio-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #80BFB9;
}

.cliente-info h4 {
    color: #80BFB9;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cliente-info p {
    color: #ffffff;
    font-size: 0.8rem;
    opacity: 0.7;
}

.testimonio-texto {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.rating {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonio-card {
        position: relative;
        width: 100%;
        margin-bottom: 2rem;
        left: 0 !important;
        right: 0 !important;
        animation: none !important;
    }
    
    .testimonios-container {
        min-height: auto;
    }
}

/* Sección Recuperación */
.recuperacion-section {
    padding: 6rem 5%;
    background: #0D0D0D;
}

.recuperacion-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Columna Contenido */
.seccion-titulo {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.seccion-lead {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.servicios-lista {
    list-style: none;
}

.servicio-item-1 {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(63, 63, 64, 0.3);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.servicio-item-1:hover {
    background: #3F3F40;
    transform: translateX(10px);
}

.servicio-item-1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #80BFB9;
    transition: width 0.3s ease;
}

.servicio-item-1:hover::after {
    width: 100%;
}

.icono-servicio {
    font-size: 1.8rem;
    color: #80BFB9;
    min-width: 40px;
    padding-top: 5px;
    transition: transform 0.3s ease;
}

.servicio-item:hover .icono-servicio {
    transform: rotate(15deg) scale(1.1);
}

.servicio-contenido h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.servicio-contenido p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Columna Imagen */
.disco-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.disco-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(128, 191, 185, 0.2));
    transition: transform 0.3s ease;
}

.disco-img:hover {
    transform: rotate(-5deg) scale(1.03);
}

/* Etiquetas interactivas */
.servicio-tag {
    position: absolute;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tag-burbuja {
    width: 50px;
    height: 50px;
    background: #80BFB9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 191, 185, 0.3);
}

.tag-texto {
    position: absolute;
    top: 100%;
    background: #0D0D0D;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.servicio-tag:hover .tag-texto {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.servicio-tag:hover .tag-burbuja {
    background: #63A69A;
    transform: scale(1.1) rotate(15deg);
}

/* Responsive */
@media (max-width: 992px) {
    .recuperacion-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .seccion-titulo {
        font-size: 2.2rem;
    }
    
    .disco-container {
        max-width: 400px;
    }
    
    .servicio-tag {
        transform: scale(0.9);
    }
}

@media (max-width: 576px) {
    .seccion-titulo {
        font-size: 1.8rem;
    }
    
    .servicio-item {
        padding: 1rem;
    }
    
    .tag-burbuja {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Sección Componentes */
.componentes-section {
    padding: 6rem 5%;
    background: #3F3F40;
}

.componentes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Columna Imagen */
.pc-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.pc-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.beneficio-card {
    position: absolute;
    background: rgba(13, 13, 13, 0.9);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 220px;
    backdrop-filter: blur(5px);
    border: 1px solid #80BFB9;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.beneficio-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.beneficio-icono {
    width: 45px;
    height: 45px;
    background: #80BFB9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0D0D0D;
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icono {
    background: #63A69A;
    transform: rotate(15deg) scale(1.1);
}

.beneficio-texto h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.beneficio-texto p {
    color: #80BFB9;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Columna Contenido */
.seccion-titulo {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.seccion-descripcion p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.beneficios-lista {
    list-style: none;
    margin-bottom: 2.5rem;
}

.beneficios-lista li {
    color: #ffffff;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    opacity: 0.9;
}

.beneficios-lista i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #80BFB9;
}

.cta-componentes {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #80BFB9, #63A69A);
    color: #0D0D0D;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(128, 191, 185, 0.3);
}

.cta-componentes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 191, 185, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .componentes-container {
        gap: 2rem;
    }
    
    .seccion-titulo {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .componentes-container {
        grid-template-columns: 1fr;
    }
    
    .pc-container {
        max-width: 500px;
    }
    
    .beneficio-card {
        position: relative;
        width: 100%;
        margin-bottom: 1rem;
        left: 0 !important;
        right: 0 !important;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 576px) {
    .seccion-titulo {
        font-size: 1.8rem;
    }
    
    .beneficio-card {
        width: 100%;
    }
    
    .cta-componentes {
        width: 100%;
        justify-content: center;
    }
}

/* Sección Marcas */
.marcas-section {
    padding: 6rem 5%;
    background: #3F3F40;
    overflow: hidden;
}

.encabezado-marcas {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitulo {
    color: #80BFB9;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.titulo {
    font-size: 2.5rem;
    color: #ffffff;
}

.carrusel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carrusel-track {
    display: flex;
    width: max-content;
    animation: carrusel-scroll 40s linear infinite;
}

.carrusel-item {
    width: 200px;
    height: 120px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.carrusel-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.carrusel-item img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes carrusel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1200px) {
    .carrusel-item {
        width: 180px;
        margin: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .carrusel-track {
        animation-duration: 25s;
    }
    
    .carrusel-item {
        width: 140px;
        margin: 0 1rem;
    }
    
    .carrusel-item img {
        max-width: 120px;
    }
    
    .titulo {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .carrusel-track {
        animation-duration: 20s;
    }
    
    .carrusel-item {
        width: 100px;
        margin: 0 0.8rem;
    }
    
    .carrusel-item img {
        max-width: 80px;
    }
}

/* Sección Experiencia */
.experiencia-section {
    padding: 6rem 5%;
    background: #000000;
}

.experiencia-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: #0D0D0D;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: #80BFB9;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #80BFB9;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0D0D0D;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #63A69A;
    transform: rotate(15deg) scale(1.1);
}

.feature-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #80BFB9;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 80px;
}

.feature-description {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 300px;
}

/* Responsive */
@media (max-width: 992px) {
    .experiencia-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}