           .objetivo-card {
             background: linear-gradient(135deg, #0f3d2e, #1f6f54);
             color: white;
             border-radius: 15px;
             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
             transition: transform 0.3s ease, box-shadow 0.3s ease;
           }

           .objetivo-card:hover {
             transform: translateY(-8px);
             box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
           }

           .icono-robot {
             font-size: 50px;
             text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
           }

           .titulo-objetivo {
             font-weight: bold;
             text-transform: uppercase;
             letter-spacing: 2px;
           }

           .texto-objetivo {
             font-size: 16px;
             line-height: 1.7;
             opacity: 0.95;
           }


           .beneficios-card {
             background: white;
             border-radius: 15px;
             padding: 25px;
             box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
             transition: transform 0.3s ease;
           }

           .beneficios-card:hover {
             transform: translateY(-8px);
           }

           .titulo-beneficios {
             text-align: center;
             font-weight: bold;
             margin-bottom: 20px;
             color: #0f3d2e;
           }

           .beneficio-item {
             display: flex;
             align-items: flex-start;
             margin-bottom: 15px;
           }

           .icono {
             font-size: 28px;
             margin-right: 10px;
           }

           .beneficio-item p {
             margin: 0;
             font-size: 14px;
             color: #555;
           }