/* Variables globales - Actualización con nuevos colores */
:root {
    --primary-color: #4285f4;
    --primary-dark: #3367d6;
    --logo-color: rgba(95, 180, 249, 0.8);
    --secondary-color: #ff7043;
    --accent-color: #34a853;
    --text-dark: #263238;
    --text-medium: #78909c;
    --text-light: #b0bec5;
    --bg-light: #f5f7fa;
    --bg-white: #FFFFFF;
    --border-light: #E5E7EB;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    border-radius: var(--radius-md);
}

/* Componentes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn svg {
    margin-right: 12px;
    height: 24px;
    width: 24px;
}

/* Estilo mejorado para badges de app stores */
.store-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    transition: var(--transition);
    text-decoration: none;
    min-width: 200px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-badge .badge-icon {
    height: 36px;
    width: 36px;
    margin-right: 12px;
}

.store-badge .badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-badge .badge-subtitle {
    font-size: 0.7rem;
    color: var(--text-medium);
}

.store-badge .badge-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.card img {
    margin-top: 20px;
    width: 100%;
    object-fit: cover;
    height: 200px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    /* text-transform: uppercase; */
}

.divider {
    height: 1px;
    background-color: var(--border-light);
    margin: 60px 0;
    width: 100%;
}

/* Header/Nav - Nuevo estilo */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 8px;
    background-color: var(--logo-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section - Nuevo diseño */
.hero {
    padding: 160px 0 100px;
    background-color: var(--bg-white);
    background-image: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.app-screens {
    display: flex;
    position: relative;
    max-width: 100%;
    justify-content: flex-end;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    position: relative;
    z-index: 1;
    border: 8px solid white;
    object-fit: cover;
}

.phone-mockup-2 {
    width: 260px;
    height: 520px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: absolute;
    right: 80px;
    top: 30px;
    transform: rotate(5deg);
    border: 8px solid white;
    object-fit: cover;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(66, 133, 244, 0.3);
}

.app-badges {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
}

/* Badges específicos para la sección hero */
.hero .app-badges {
    display: flex;
    justify-content: flex-start; /* Alinea los badges a la izquierda en la sección hero */
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.hero .store-badge-container {
    height: 70px; /* Contenedores más grandes para la sección hero */
    margin: 0 0px 0 0; /* Elimina margen derecho del último badge */
}

.hero .store-badge-img {
    max-height: 60px; /* Imágenes más grandes para la sección hero */
}

.hero .store-badge-container:nth-child(1) .store-badge-img {
    max-width: 190px; /* Google Play badge más grande */
    height: 58px;
}

.hero .store-badge-container:nth-child(2) .store-badge-img {
    max-width: 170px; /* App Store badge más grande */
    height: 48px;
}

/* Features */
.features {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 20px;
}

.feature-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.feature-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.feature-bullets {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-bullets li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    color: var(--text-medium);
}

.feature-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.feature-device {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.device-mockup {
    position: relative;
    width: 260px;
    height: 530px;
    background-color: var(--text-dark);
    border-radius: 36px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.device-mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background-color: var(--text-dark);
    border-radius: 0 0 16px 16px;
    z-index: 1;
}

.device-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    overflow: hidden;
}

.feature-item:hover .device-mockup {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* Animación automática de los dispositivos */
@keyframes deviceAnimation {
    0% { transform: rotateY(-5deg) rotateX(5deg); }
    50% { transform: rotateY(0deg) rotateX(0deg) scale(1.05); }
    100% { transform: rotateY(-5deg) rotateX(5deg); }
}

.device-mockup.animate {
    animation: none;
}

/* Reemplazar la animación continua con una animación única */
@keyframes deviceAnimationOnce {
    0% { transform: rotateY(-5deg) rotateX(5deg); }
    100% { transform: rotateY(0deg) rotateX(0deg) scale(1.05); }
}

/* Clase para la animación única */
.device-mockup.animate-once {
    animation: deviceAnimationOnce 1s ease-out forwards;
}

/* How it works */
.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Download Section */
.download {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.store-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px; /* Altura fija para todos los contenedores */
    transition: var(--transition);
    margin: 0 10px;
}

.store-badge-container:hover {
    transform: translateY(-5px);
}

/* Estilos base para ambas imágenes */
.store-badge-img {
    height: auto; /* Eliminamos height: 100% para respetar proporciones */
    max-height: 50px; /* Altura máxima para ambos badges */
    width: auto;
    object-fit: contain;
    border-radius: 8px; /* Bordes suaves para ambos badges */
}

/* Ajustes específicos para cada badge */
.store-badge-container:nth-child(1) .store-badge-img {
    /* Google Play badge (proporción más ancha) */
    max-width: 190px; /* Google Play badge más grande */
    height: 58px;
}

.store-badge-container:nth-child(2) .store-badge-img {
    /* App Store badge (proporción más estrecha) */
    max-width: 170px; /* Limitación de ancho máximo */
    height: 42px; /* Altura específica basada en sus proporciones */
}

/* Mejoras para la visualización uniforme de badges de tiendas */
.store-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.store-badge-container:hover {
    transform: translateY(-5px);
}

.store-badge-img {
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Estilos específicos para la sección hero */
.hero .app-badges {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.hero .store-badge-container {
    height: 70px;
    margin: 0 20px 0 0;
}

.hero .store-badge-img {
    max-height: 60px;
}

.hero .store-badge-container:nth-child(1) .store-badge-img {
    max-width: 190px;
    height: 58px;
}

.hero .store-badge-container:nth-child(2) .store-badge-img {
    max-width: 170px;
    height: 48px;
}

/* Estilos específicos para la sección download (badges más grandes) */
.download .app-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
    align-items: center;
}

.download .store-badge-container {
    height: 80px;
    margin: 0 10px;
}

.download .store-badge-img {
    max-height: 70px;
}

.download .store-badge-container:nth-child(1) .store-badge-img {
    max-width: 210px;
    height: 66px;
}

.download .store-badge-container:nth-child(2) .store-badge-img {
    max-width: 190px;
    height: 56px;
}

/* Mejoras para el formulario de contacto */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

/* Media queries */
@media (max-width: 768px) {
    .app-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .store-badge-container {
        height: 50px;
    }

    .store-badge-container {
        margin: 0 0 10px 0;
    }
    
    .store-badge-container:nth-child(1) .store-badge-img {
        height: 44px;
    }
    
    .store-badge-container:nth-child(2) .store-badge-img {
        height: 38px;
    }
}

/* Media queries actualizados para los badges en la sección hero */
@media (max-width: 768px) {
    /* ...existing code... */
    
    /* Aún en móvil, mantener los badges alineados a la izquierda en la sección hero */
    .hero .app-badges {
        align-items: flex-start;
    }
    
    /* En móvil, reducir un poco el tamaño pero seguir siendo proporcionalmente más grandes */
    .hero .store-badge-container {
        height: 60px;
    }
    
    .hero .store-badge-container:nth-child(1) .store-badge-img {
        height: 52px;
    }
    
    .hero .store-badge-container:nth-child(2) .store-badge-img {
        height: 46px;
    }
}

/* Why us */
.why-us {
    background-color: var(--bg-light);
}

.why-us-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Contact form */
.contact {
    background-color: var(--bg-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 40px 0;
}

.footer a {
    color: var(--bg-light);
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: white;
}

.footer-link {
    display: block;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.terms {
    font-size: 0.9rem;
    max-height: 200px;
    overflow-y: auto;
    padding: 16px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Características destacadas */
.highlighted-features {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

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

.feature-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 16px;
}

/* Media queries para características destacadas */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Media queries - Actualizado */
@media (max-width: 992px) {
    .feature-item, .feature-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feature-bullets li {
        padding-left: 0;
        text-align: left;
    }

    .feature-bullets li::before {
        position: relative;
        display: inline-block;
        margin-right: 8px;
        top: 4px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .app-badges {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .app-screens {
        justify-content: center;
    }

    /* Correcciones para el formulario en desktop */
    .contact-form .form-control {
        width: 100%; 
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .store-badge-container {
        width: 100%;
        max-width: 220px;
    }

    .features-showcase {
        gap: 60px;
    }

    .device-mockup {
        width: 220px;
        height: 450px;
    }

    .hero {
        padding: 140px 0 80px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .phone-mockup-2 {
        width: 200px;
        height: 400px;
        right: 40px;
    }
    
    .nav-links {
        display: none;
    }

    /* Centrar badges en móvil en la sección hero */
    .hero .app-badges {
        justify-content: center !important; /* Uso de !important para asegurar que se aplique */
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .hero .store-badge-container {
        margin: 0 0 15px 0; /* Espaciado vertical entre badges */
        max-width: 180px;
    }

    /* Ajuste de tamaño para badges en móvil */
    .download .store-badge-container {
        height: 60px;
    }

    .download .store-badge-container:nth-child(1) .store-badge-img {
        height: 52px;
    }

    .download .store-badge-container:nth-child(2) .store-badge-img {
        height: 44px;
    }
}
/* Estilos para el nuevo componente de descripción de características */.features-description {    margin: 2rem auto 3.5rem;    max-width: 1100px;}.description-cards {    display: flex;    flex-wrap: wrap;    justify-content: center;    gap: 1.5rem;    margin-bottom: 2.5rem;}.description-card {    flex: 1;    min-width: 280px;    max-width: 350px;    background-color: var(--bg-white);    border-radius: var(--radius-md);    padding: 1.75rem;    box-shadow: var(--shadow-sm);    transition: var(--transition);    border-bottom: 3px solid transparent;    display: flex;    flex-direction: column;    align-items: center;    text-align: center;}.description-card:hover {    transform: translateY(-5px);    box-shadow: var(--shadow-md);    border-bottom: 3px solid var(--primary-color);}.description-icon {    width: 3rem;    height: 3rem;    border-radius: 50%;    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));    display: flex;    align-items: center;    justify-content: center;    margin-bottom: 1.25rem;}.description-icon svg {    width: 1.5rem;    height: 1.5rem;    color: white;}.description-card p {    color: var(--text-medium);    font-size: 1.05rem;    line-height: 1.5;    margin: 0;}.description-card strong {    color: var(--text-dark);    font-weight: 600;}/* Responsividad para la sección de descripción */@media (max-width: 992px) {    .description-cards {        flex-direction: column;        align-items: center;    }        .description-card {        width: 100%;        max-width: 500px;    }}
/* Estilos para la sección de propuesta de valor */
.value-proposition {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid transparent;
    text-align: left;
}

.value-card:hover {
    transform: translateY(-5px);
    border-left: 4px solid var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.value-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.value-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Media queries para la sección de propuesta de valor */
@media (max-width: 992px) {
    .value-proposition {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .value-card {
        max-width: 100%;
        text-align: center;
        border-left: none;
        border-top: 4px solid transparent;
    }
    
    .value-card:hover {
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }
    
    .value-icon {
        margin: 0 auto 1.5rem;
    }
}
