/* ---------- circulo -------- */

.tecnicas_circulo {
    display: none;
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.circle-container {
    display: none;
    position: relative;
    width: 600px;  /* Aumentado */
    height: 600px; /* Aumentado */
    animation: rotate 90s linear infinite; /* La animación sigue igual */
}
.circle {
    position: absolute;
    width: 110px;  /* Aumentado */
    height: 110px; /* Aumentado */
    background-color: #25516e;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle:nth-child(1) { transform: translate(-50%, -50%) translateX(200px);}
.circle:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg) translateX(200px) rotate(-45deg);}
.circle:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translateX(200px) rotate(-90deg);}
.circle:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translateX(200px) rotate(-135deg);}
.circle:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translateX(200px) rotate(-180deg);}
.circle:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translateX(200px) rotate(-225deg);}
.circle:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translateX(200px) rotate(-270deg);}
.circle:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg) translateX(200px) rotate(-315deg);}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
@keyframes content_rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.letra {
    /* background-color: red; */
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    animation: content_rotate 90s linear infinite; /* La animación sigue igual */
    text-align: center;

}

/* ------------- fin circulo ------------ */






/* --------------seccion 1 (grig) -------------- */

.grid-container {
    font-family: Arial, sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 100px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card i {
    max-width: 80px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #88dbff;
}

.card-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1em;
    /* color: #777; */
    color: #39738c;
    
}

#informacion {    
    transform: translateY(-10px);
    display: flex;
    margin: 150px auto ;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    height: 60px;
    width: 240px;
    background-color: transparent;
    /* border: 2px solid rgb(255, 102, 0); */
    border: 2px solid #fd0202;
    border-radius: 50px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    transition: .7s;
}
#informacion:hover {
    background-color: #fd0202;
    color: white;
}


@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; /* Una sola columna en pantallas pequeñas */
        padding: 20px; /* Ajusta el padding para móviles */
    }

    .card {
        padding: 15px; /* Ajusta el padding dentro de cada tarjeta */
    }

    .card-title {
        font-size: 1.2em; /* Reduce el tamaño de la fuente del título */
    }

    .card-description {
        font-size: 0.9em; /* Reduce el tamaño de la fuente de la descripción */
    }

    #informacion {
        margin: 50px auto; /* Reduce el margen para el botón en dispositivos móviles */
        width: 200px; /* Ajusta el tamaño del botón */
        height: 50px;
        font-size: 18px; /* Reduce el tamaño de la fuente del botón */
    }
}

/* ----------- fin seccion 1 ---------- */








/* ---------------- seccion 2 ---------------- */

.custom-section {
    font-family: Arial, sans-serif;
    background-image: url('https://www.wework.com/es-LA/ideas/wp-content/uploads/sites/15/2017/06/Web_150DPI-20190927_10th_Floor_Conference_Room_2_v1.jpg'); /* Reemplaza con tu imagen de fondo */
    background-size: cover;
    background-position: center;
    padding: 50px;
    color: white;
    position: relative;
    height: 900px;
    padding-top: 150px;
    margin-bottom: 100px;
}

.custom-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(1, 25, 47, 0.507); Oscurece la imagen de fondo */
    background-color: #1b2827b0;
    z-index: 0;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
}

.text-content {
    max-width: 45%;
}

.text-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.2em;
    line-height: 1.6;
}

.steps-container {
    max-width: 45%;
    border-left: 1px solid #00c3bf;
}

.step {
    display: flex;
    align-items: center;
    margin: 50px 0px;
}

.step-icon {
    border-radius: 50px;
    display: flex;
    height: 80px;
    width: 80px;
    align-items: center;
    justify-content: center;
    background-color: #00c3bf;
    font-size: 2em;
    margin-right: 20px;
    color: #FFD700; /* Color dorado para los íconos */
    margin-left: -40px;
}

.step-text h3 {
    color: #00c3bf;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 1em;
    line-height: 1.4;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content, .steps-container {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .step {
        justify-content: center;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    #barra {
        margin-top: 10px;
        height: 5px;
        width: 30px;
        background-color: #00c3bf
    }
}


    @media (max-width: 768px) {
    .custom-section {
        padding: 20px;
        height: auto;
        padding-top: 80px;
    }

    .content-container {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .text-content, 
    .steps-container {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .text-content h2 {
        font-size: 2em;
    }

    .text-content p {
        font-size: 1em;
    }

    .steps-container {
        border-left: none;
        border-top: 1px solid #00c3bf;
        padding-top: 20px;
    }

    .step {
        flex-direction: column;
        align-items: center;
        margin: 30px 0;
    }

    .step-icon {
        margin: 0 0 10px 0;
    }

    .step-text h3 {
        font-size: 1.2em;
    }

    .step-text p {
        font-size: 0.9em;
    }

    #barra {
        margin: 0 auto 20px auto;
        height: 5px;
        width: 60px;
        background-color: #00c3bf;
    }
}

/* ------------- din seccion2 ------------- */























