
/* Estilo para resaltar textos en el intro */
.intro-highlight {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.75);
    color: #000000;
    border-radius: 18px;
    padding: 32px 24px;
    margin: 0 auto 24px auto;
    max-width: 700px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.25);  
    font-weight: bold;
}
/*
RcardenasDev
*/

/*Eliminamos los margenes y paddings que agrega el navegador por defecto*/






/* start all section */
#intro,
#intro .fp-slide,
#intro .fp-tableCell,

#sec1,
#sec1 .fp-slide,
#sec1 .fp-tableCell,

#sec2,
#sec2 .fp-slide,
#sec2 .fp-tableCell,

#sec3,
#sec3 .fp-slide,
#sec3 .fp-tableCell,    



footer,
footer .fp-slide,
footer .fp-tableCell 

/*stlBody*/
body {
    background: #000000;
    color: #fcf8e3;
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 400;
    height: auto !important;
}
/* /stlBody */

/* stlA : style <a href>*/
#stlA {
    background-color: rgba(0, 0, 0, 0);
    color: #00eaff;
    border-color: white;
}
/* /stlA */

#stlA:hover {
    background: #00eaff;
    color: white;
}

/* /allsection */

/* allheading */
h1,
h2,
h3,
h4,
h5 {
    color: #ffffff;
    font-weight: bold;
}

/* /allheading */

/* allsection */
#sec1,
#sec2,
#sec3{
    padding-top: 100px;
    padding-bottom: 120px;
}

/* /allsection */

/* simpletextrotator */
.rotating {
    display: inline-block;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
    -moz-transform: rotateX(0) rotateY(0) rotateZ(0);
    -ms-transform: rotateX(0) rotateY(0) rotateZ(0);
    -o-transform: rotateX(0) rotateY(0) rotateZ(0);
    transform: rotateX(0) rotateY(0) rotateZ(0);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin-x: 50%;
}

.rotating.flip {
    position: relative;
}

.rotating .front,
.rotating .back {
    left: 0;
    top: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.rotating .front {
    position: absolute;
    display: inline-block;
    -webkit-transform: translate3d(0, 0, 1px);
    -moz-transform: translate3d(0, 0, 1px);
    -ms-transform: translate3d(0, 0, 1px);
    -o-transform: translate3d(0, 0, 1px);
    transform: translate3d(0, 0, 1px);
}

.rotating.flip .front {
    z-index: 1;
}

.rotating .back {
    display: block;
    opacity: 0;
}

.rotating.spin {
    -webkit-transform: rotate(360deg) scale(0);
    -moz-transform: rotate(360deg) scale(0);
    -ms-transform: rotate(360deg) scale(0);
    -o-transform: rotate(360deg) scale(0);
    transform: rotate(360deg) scale(0);
}

.rotating.flip .back {
    z-index: 2;
    display: block;
    opacity: 1;

    -webkit-transform: rotateY(180deg) translate3d(0, 0, 0);
    -moz-transform: rotateY(180deg) translate3d(0, 0, 0);
    -ms-transform: rotateY(180deg) translate3d(0, 0, 0);
    -o-transform: rotateY(180deg) translate3d(0, 0, 0);
    transform: rotateY(180deg) translate3d(0, 0, 0);
}

.rotating.flip.up .back {
    -webkit-transform: rotateX(180deg) translate3d(0, 0, 0);
    -moz-transform: rotateX(180deg) translate3d(0, 0, 0);
    -ms-transform: rotateX(180deg) translate3d(0, 0, 0);
    -o-transform: rotateX(180deg) translate3d(0, 0, 0);
    transform: rotateX(180deg) translate3d(0, 0, 0);
}

.rotating.flip.cube .front {
    -webkit-transform: translate3d(0, 0, 100px) scale(0.9, 0.9);
    -moz-transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
    -ms-transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
    -o-transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
    transform: translate3d(0, 0, 100px) scale(0.85, 0.85);
}

.rotating.flip.cube .back {
    -webkit-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.9, 0.9);
    -moz-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -ms-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -o-transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    transform: rotateY(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
}

.rotating.flip.cube.up .back {
    -webkit-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.9, 0.9);
    -moz-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -ms-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    -o-transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
    transform: rotateX(180deg) translate3d(0, 0, 100px) scale(0.85, 0.85);
}

/* /simpletextrotator */

/* intro */
#intro {
    background: url('../images/edu/eduPL/bg-eduPL.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 120px;
    padding-bottom: 140px;
    text-align: center;
}

#intro h1 {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 6px;
    padding: 25px 35px;
    margin: 30px 0;
}

#intro h2 {
    padding-bottom: 10px;
}

#intro .btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    width: 180px;
    height: 60px;
    margin-top: 40px;
    padding-top: 18px;
    transition: all 0.4s ease-in-out;
}

#intro .btn:hover {
    background: linear-gradient(135deg, #00c853 60%, #1de9b6 100%);
    border-color: transparent;
}

/* Botón de continuación hacia temas de la ruta (Algoritmos, etc.) */
.eduPL-next-wrapper {
    margin-top: 40px;
    text-align: center;
}

.eduPL-next-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    border: 1px solid #00c853;
    color: #00c853;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.eduPL-next-btn:hover,
.eduPL-next-btn:focus {
    background-color: #00c853;
    color: #000000;
    border-color: #00c853;
}

/* /intro */

/* sec1 */
#sec1 {
    background: #1a1a1a;
}

#sec1 h2 {
    text-align: center;
}

#sec1 .media {
    margin-top: 30px;
}

#sec1 .media .fa {
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #00eaff;
    font-size: 24px;
    margin-right: 24px;
    width: 60px;
    height: 60px;
    line-height: 55px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.4s ease-in;
}

#sec1 .media .fa:hover {
    background: #ffffff;
    cursor: pointer;
}

#sec1 .media .media-heading {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
}



/* /sec1 */  

/* sec2 */
#sec2 h4 {
    padding: 15px 0;
    color: #00eaff;
}

#sec2 .progress {
    border-radius: 4px;
    background: #ffffff;
    height: 4px;
}

#sec2 .progress .progress-bar-danger {
    background: #00eaff;
}

#sec2 .text-top {
    padding-top: 50px;
}

#sec2 span {
    color: #ffffff;
    font-weight: bold;
    display: block;
    padding-bottom: 6px;
}

#sec2 small {
    font-weight: bold;
    float: right;
}

/* /sec2 */
/* sec3 */
#sec3 {
    background: #1a1a1a;
}

#sec3 h2 {
    text-align: center;
}

#sec3 .media {
    margin-top: 30px;
}

#sec3 .media .fa {
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #00eaff;
    font-size: 24px;
    margin-right: 24px;
    width: 60px;
    height: 60px;
    line-height: 55px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.4s ease-in;
}

#sec3 .media .fa:hover {
    background: #ffffff;
    cursor: pointer;
}

#sec3 .media .media-heading {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
}
/* Sobrescribir Bootstrap para progress-bar-danger solo en sec3 */
#sec3 .progress-bar-danger {
    background-color: #00eaff !important;
}

#sec3 .text-danger,
#sec3 .media .text-danger {
    color: #00eaff !important;
}
/* /sec3 */  




/* === eduPL intro content section styles (root level) === */
:root {
    --edu-green: #00c853;
    --edu-black: #0b0b0b;
    --edu-white: #ffffff;
}

.eduPL-section {
    background-color: var(--edu-black);
    padding: 80px 20px;
    text-align: center;
}

/* High-specificity enforcement for the intro content section */
#eduPL-intro-content {
    background-color: #000000 !important;
    color: var(--edu-white);
    width: 100%;
}

#eduPL-intro-content .container {
    background-color: transparent !important;
}

.eduPL-title {
    color: var(--edu-green);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.eduPL-subtitle {
    color: var(--edu-white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.eduPL-text {
    color: var(--edu-white);
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}
/* === /eduPL intro content section styles (root level) === */

/* === eduPL Section 2: Logic conceptual section (root level) === */
.eduPL-section-logic {
    background-color: #111111;
    padding: 90px 20px;
    text-align: center;
    color: var(--edu-white);
}

/* High-specificity enforcement to avoid parent overrides */
#eduPL-logic {
    background-color: #111111 !important;
    color: var(--edu-white);
    width: 100%;
}

#eduPL-logic .container {
    background-color: transparent !important;
}

.eduPL-logic-title {
    color: var(--edu-green);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.eduPL-logic-subtitle {
    color: var(--edu-white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 26px;
}

.eduPL-logic-text,
.eduPL-logic-text-secondary {
    color: var(--edu-white);
    max-width: 860px;
    margin: 0 auto 16px auto;
    font-size: 16px;
    line-height: 1.75;
}
/* === /eduPL Section 2: Logic conceptual section === */

/* === eduPL Section 2 cards === */
.eduPL-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.eduPL-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.eduPL-card-icon {
    color: var(--edu-green);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 14px;
}

.eduPL-card-title {
    color: var(--edu-green);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.eduPL-card-text {
    color: var(--edu-white);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .eduPL-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .eduPL-card {
        padding: 22px 18px;
    }
}
/* === /eduPL Section 2 cards === */

/* === eduPL Section 3: Purpose (distinct, clean) === */
.eduPL-purpose {
    background-color: #0a0a0a;
    padding: 96px 20px;
    text-align: center;
    color: var(--edu-white);
}

.eduPL-purpose .container {
    background-color: transparent !important;
}

.eduPL-purpose-title {
    color: var(--edu-green);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.eduPL-purpose-subtitle {
    color: var(--edu-white);
    font-size: 18px;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 34px auto;
    line-height: 1.7;
}

.eduPL-purpose-wrapper {
    max-width: 1040px;
    margin: 0 auto;
}

.eduPL-purpose-wrapper .row {
    margin-left: 0;
    margin-right: 0;
}

.eduPL-purpose-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 940px;
}

.eduPL-purpose-item {
    color: var(--edu-white);
    margin: 0;
    padding: 12px 0 6px 0;
    font-size: 16px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
/* Flex wrapper for uniform centering and width */
.eduPL-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}

/* explicit numeration element */
.eduPL-number {
    color: var(--edu-green);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .eduPL-purpose {
        padding: 80px 18px;
    }
    .eduPL-purpose-title {
        font-size: 30px;
    }
    .eduPL-purpose-subtitle {
        font-size: 17px;
    }
    .eduPL-purpose-item::before {
        font-size: 28px;
    }
}
/* === /eduPL Section 3: Purpose === */

/* === eduPL Section 4: What you will learn === */
.eduPL-learn {
    background-color: #080808;
    padding: 96px 20px;
    text-align: center;
    color: var(--edu-white);
}

.eduPL-learn .container {
    max-width: 960px;
    margin: 0 auto;
}

.eduPL-learn-title {
    color: var(--edu-green);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.eduPL-learn-subtitle {
    color: var(--edu-white);
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto 30px auto;
    max-width: 820px;
    line-height: 1.7;
}

.eduPL-learn-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0 auto;
    max-width: 880px;
    text-align: left;
}

.eduPL-learn-list li {
    color: var(--edu-white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .eduPL-learn {
        padding: 80px 18px;
    }
    .eduPL-learn-title {
        font-size: 30px;
    }
    .eduPL-learn-subtitle {
        font-size: 17px;
    }
}
/* === /eduPL Section 4: What you will learn === */
/* === eduPL Section 5: Focus and limits === */
.eduPL-focus {
    background-color: #050505;
    padding: 96px 20px;
    text-align: center;
    color: var(--edu-white);
}

.eduPL-focus .container {
    max-width: 1100px;
    margin: 0 auto;
}

.eduPL-focus-title {
    color: var(--edu-green);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.eduPL-focus-subtitle {
    color: var(--edu-white);
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto 32px auto;
    max-width: 840px;
    line-height: 1.7;
}

.eduPL-focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
}

.eduPL-focus-block {
    background-color: #101010;
    border-radius: 12px;
    padding: 24px 32px;
    text-align: left;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    max-width: 900px;
    width: 100%;
}

.eduPL-focus-block-title {
    color: var(--edu-green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.eduPL-focus-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.eduPL-focus-list li {
    color: var(--edu-white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.eduPL-focus-text {
    color: var(--edu-white);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

@media (min-width: 992px) {
    .eduPL-focus-grid {
		grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .eduPL-focus {
        padding: 80px 18px;
    }
    .eduPL-focus-title {
        font-size: 30px;
    }
    .eduPL-focus-subtitle {
        font-size: 17px;
    }
}
/* === /eduPL Section 5: Focus and limits === */





