 .hero-section {
        position: relative;
        background: linear-gradient(135deg, #1A1A2E, #0F3460);
        color: white;
        padding: 170px 20px 100px;
        text-align: center;
        overflow: hidden;
        z-index: 1;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        animation: fadeInUp 1.2s ease;
    }

    .hero-section h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        font-weight: bold;
        color: #ffffff;
    }

    .hero-section h1 span {
        color: #E94560;
    }

    .hero-section p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 30px;
        line-height: 1.6;
    }

    .hero-btn {
        background-color: #E94560;
        color: white;
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .hero-btn:hover {
        background-color: #f25674;
        transform: scale(1.05);
    }

    /* Animación de entrada */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


.tool-card {
        display: block;
        background: #ffffff;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        color: #1A1A2E;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .tool-card:hover {
        background: #e0e0e0;
        transform: scale(1.03);
    }






    .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .tool-card {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tool-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .tool-card .icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .tool-card h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #1A1A2E;
    }

    .tool-card p {
        font-size: 0.95rem;
        color: #444;
        margin-bottom: 15px;
    }

    .tool-card .btn {
        display: inline-block;
        background-color: #0F3460;
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .tool-card .btn:hover {
        background-color: #1A1A2E;
    }
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .benefit-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    }

    .benefit-icon {
        font-size: 50px;
        margin-bottom: 15px;
        color: #1A1A2E;
    }

    .benefit-card h4 {
        margin-bottom: 10px;
        color: #1A1A2E;
        font-size: 1.2rem;
    }

    .benefit-card p {
        color: #555;
        font-size: 0.95rem;
    }



     .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: #f8f8f8;
        border-radius: 12px;
        padding: 30px 20px 25px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        position: relative;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        margin-bottom: 15px;
        object-fit: cover;
    }

    .testimonial-text {
        font-style: italic;
        color: #333;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .testimonial-name {
        color: #1A1A2E;
        font-weight: bold;
        font-size: 0.95rem;
    }




     .cta-btn {
        display: inline-block;
        background-color: #E94560;
        color: white;
        padding: 12px 28px;
        font-size: 1rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .cta-btn:hover {
        background-color: #f25674;
        transform: scale(1.05);
    }