* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.diseño-29 {
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: url('../imagenes/contenido/intento6-seguridad-familia.webp') center/cover no-repeat;
    position: relative;
}

.diseño-29 .solucionesSEC-content {
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.diseño-29 .tarjeta-geometrica {
    border-radius: 40px;
    padding: 4rem 3rem;
    box-shadow: 0 40px 70px -20px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Geometría sagrada de fondo */
.diseño-29 .geometria {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.diseño-29 .circulo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--azul, #095374);
    border-radius: 50%;
    animation: rotarCirculo 20s linear infinite;
}

.diseño-29 .circulo1 {
    width: 300px;
    height: 300px;
    border-color: var(--verde, #b0bf3e);
}

.diseño-29 .circulo2 {
    width: 400px;
    height: 400px;
    border-color: var(--azul, #095374);
    animation-direction: reverse;
}

.diseño-29 .circulo3 {
    width: 500px;
    height: 500px;
    border-color: var(--verde-claro, #d0da89);
    animation-duration: 30s;
}

@keyframes rotarCirculo {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.diseño-29 h1.titulo {
    color: white;
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2), 6px 6px 0 rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    white-space: normal; /* Para que el texto se ajuste */
    word-break: break-word;
}


.diseño-29 p.subtitulo {
    color: var(--blanco, #434444);
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin: 2rem auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.diseño-29 .solucionesSEC-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.diseño-29 .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.diseño-29 .btn-primario {
    background: var(--azul, #095374);
    color: white;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.diseño-29 .btn-primario:hover {
    background: var(--verde, #b0bf3e);
    color: var(--blanco, #434444);
    transform: translateY(-3px);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.diseño-29 .btn-secundario {
    background: transparent;
    color: var(--blanco, #095374);
    border: 2px solid var(--azul, #095374);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.diseño-29 .btn-secundario:hover {
    background: var(--azul, #095374);
    color: white;
    transform: translateY(-3px);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* RESPONSIVE PARA .diseño-29 */
@media screen and (max-width: 992px) {
    .diseño-29 {
        min-height: 500px;
        padding: 1.5rem;
    }
    
    .diseño-29 .tarjeta-geometrica {
        padding: 3rem 2rem;
    }
    
    .diseño-29 h1.titulo {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media screen and (max-width: 768px) {
    .diseño-29 {
        min-height: 450px;
        padding: 1rem;
    }
    
    .diseño-29 .tarjeta-geometrica {
        padding: 2.5rem 1.5rem;
        border-radius: 30px;
    }
    
    .diseño-29 h1.titulo {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .diseño-29 p.subtitulo {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin: 1.5rem auto;
    }
    
    .diseño-29 .solucionesSEC-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .diseño-29 .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .diseño-29 {
        min-height: 400px;
    }
    
    .diseño-29 .tarjeta-geometrica {
        padding: 2rem 1rem;
    }
    
    .diseño-29 h1.titulo {
        font-size: clamp(1.5rem, 7vw, 1.8rem);
        margin-bottom: 1rem;
    }
}

/* Animaciones condicionales */
@media (prefers-reduced-motion: reduce) {
    .diseño-29 .circulo {
        animation: none;
    }
}

