@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "PixelGosub";
    src: url("assets/fonts/PixelGosub.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-primary: #3D348B;
    --color-secondary: #F18701;
    --color-secondary-light: #FFD59F;
    --color-accent-yellow: #F7B801;
    --color-accent-yellow-light: #FFE8A3;
    --color-accent-red: #F35B04;
    --color-accent-red-light: #FEC3A2;
    --color-text: #3A3A3A;
    --color-text-secondary: #151415;
    --color-bg: #ffffff;
    --color-light-blue: #7678ED;
    --color-off-white: transparent;

    --font-main: 'Montserrat', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    :root{
        --color-off-white: #FAFBFB;
    }
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}



img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-square{
    border-radius: 0.75rem !important;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white !important;
}

.btn-primary-gradient {
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-light-blue)
    );
    color: #fff !important;
    border: none;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.btn-secondary-gradient {
    background: linear-gradient(
        135deg,
        var(--color-accent-red),
        var(--color-secondary)
    );
    color: #fff !important;
    border: none;
}

.btn-accent {
    background-color: var(--color-accent-yellow);
    color: var(--color-primary);
}

/* Header */
.main-header {
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 4rem;
    /* Adjust based on actual logo size */
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.25px;
}

.main-nav a.icon-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    font-size: 1rem;
}

.main-nav img{
    width: 1.25rem;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-lg) 0 0;
    background: radial-gradient(circle at top right, #fff5e6 0%, var(--color-off-white) 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--color-accent-yellow);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    letter-spacing: -3px;
    
}

.hero-content .highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
    font-family: "PixelGosub";
    letter-spacing: 0px;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--color-accent-yellow);
    z-index: -1;
    opacity: 0.6;
    border-radius: 10px;
    transform: rotate(-2deg);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

@media (max-width: 768px) {
  .hero-content p{
        font-size: 1rem;
        letter-spacing: -0.5px;
  }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-image {
    position: relative;
}

.blob-shape {
    width: 100%;
    /* padding-bottom: 100%; */
    background-color: rgba(118,120,237,.4);
    /* background: url('assets/img/bg-hero-02.png');
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat; */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center ;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.blob-shape img{
    width: 95%;
    
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotate(180deg);
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

.wave-divider-top{
    bottom: unset;
    top: 0;
}

.wave-divider-top svg{
    transform: rotate(0deg);
}

.wave-divider-top .shape-fill {
    fill: #FFFFFF;
}

/* About Section */
.about-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 3.5rem;
}

.about-section .lead {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-sm);
    color: white;
}

.icon-box img{
    width: 60%;
    
}


/* CTA Section */
.cta-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b72b4' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.signup-form {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.signup-form input {
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    width: 300px;
    font-size: 1rem;
}

/* Footer */
.main-footer {
    background-color: var(--color-text);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    /* Make logo white if it's not already */
}

.footer-links a {
    margin: 0 15px;
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .hero-buttons a{
        font-size: 1rem;
    }

    .main-nav {
        display: none;
        /* Hide nav on mobile for now */
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--color-primary);
        margin: 5px 0;
    }

    .signup-form {
        flex-direction: column;
        align-items: center;
    }

    .signup-form input {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}
/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ABOUT SECTION (background image style) */
.about-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}


@media (max-width: 768px) {
  .about-card {
        padding: 2rem 2rem;
  }


}

.about-card h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.about-card p {
  font-size: 0.95rem;
  color: #666;
}

.about-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon img {
  width: 36px;
}

/* Icon colors */
.icon-yellow {
  background-color: var(--color-accent-yellow-light);
}

.icon-orange {
  background-color: var(--color-accent-red-light);
}

.icon-purple {
  background-color: var(--color-secondary-light);
}

.about-wrapper {
  position: relative;
  z-index: 2;
}

/* .about-content {
  max-width: 780px;
} */

/* Background image */
.about-bg-image {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  pointer-events: none;
}

.about-bg-image img {
  width: 520px;
  max-width: none;
}

.about-content .about-lead{
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .about-content .about-lead {
        margin-bottom: 1.5rem;
  }
}

/* Cards remain on top */
.about-cards {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
    .about-cards{
        grid-template-columns: repeat(1, 1fr);
    }

    
  .about-bg-image {
    display: none;
    
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }
}


/* Programas Section */
.programas-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-off-white);
}

.programas-content{
    position: relative;
    z-index: 2;
}

.programas-wrapper {
    position: relative;
    z-index: 2;
}

.programas-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 3.5rem;
}

.programas-card{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;

}

.programas-cards{
    
    display: flex;
    flex-direction: column;
    margin: 0 18rem;
    gap: 5rem;
    /* width: 50%; */
    
}

@media (max-width: 768px){

    .programas-cards{
        margin: 0;
    }

}

.programas-cards .item-container{
    display: flex;
    width: 100%;
}

.programas-cards .item-container .img-container{
    flex: 1 4;
    /* padding: 3rem 2rem; */
    /* background: url('assets/img/img-blockidz.png');
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    border-top-left-radius: 2.5rem;
    border-bottom-left-radius: 2.5rem; */
    position: relative;
    left: 2%;
}

@media (max-width: 768px) {
    .programas-cards .item-container .img-container{
        display: none;
    }
}

.programas-cards .item-container .img-container img{
    /* padding: 2rem; */
    /* width: 100%; */
    height: 100%;
    border-top-left-radius: 2.5rem;
    border-bottom-left-radius: 2.5rem;
    object-fit: cover;
}

.programas-cards .item-container .text-container{
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    /* flex: 1.5 1; */
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    border-radius: 1.5rem;
    background-color: #fff;
    position: relative;
    left: 0;
}

.programas-cards .item-container .text-container h3{
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1rem;

}

@media (max-width: 768px){
    .programas-cards .item-container .text-container{
        padding: 1.25rem;
    }
    
    .programas-cards .item-container .text-container h3{
        font-size: 1.25rem;
    }

    
}

.programas-cards .item-container .text-container p{
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.25;
}

@media (max-width: 768px){

    .programas-cards .item-container .text-container p{
            font-size: 0.95rem;
            margin-bottom: 1rem;
            
        }

}

.programas-cards .item-container .text-container button{
    position: absolute;
    bottom: 0%;
    transform: translateY(50%);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;

}

@media (max-width: 768px){

    .programas-cards .item-container .text-container button{
            padding: 0.75rem 2rem;
            font-size: 0.8rem;
        }

}

.programas-cards .item-container .segment-container{
    padding: 3rem 1rem;
    background: #F0F0F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0.75 1;
    background-color: #F0F0F0;
    border-top-right-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
    position: relative;
    left: 0;
}

.programas-cards .item-container .segment-container h3{
    font-family: "PixelGosub";
    color: var(--color-primary);
    font-size: 2.75rem;
    font-weight: 300;

}

@media (max-width: 768px){
    .programas-cards .item-container .segment-container h3{
            font-size: 1.75rem;
        }
}

.programas-cards .item-container .segment-container span{
    font-size: 1.5rem;
    color: var(--color-primary);
}

@media (max-width: 768px){

    .programas-cards .item-container .segment-container span{
            font-size: 1.2rem;
            
        }

}

.programas-bg-image01{
    position: absolute;
    background-size: 50%;
    top: 0%;
    left: 5%;
    transform: translate(0, 60%);
    z-index: 1;
    pointer-events: none;

}

.programas-bg-image01 img {
    width: 400px;
    max-width: none;
    display: block;
}

/* Degradado */
/* .programas-bg-image01::after {
    content: "";
    position: absolute;
    inset: 0; 
    background: linear-gradient(
        to left,
        rgba(250, 251, 251, 1) 0%,
        rgba(250, 251, 251, 1) 45%,
        rgba(250, 251, 251, 0) 60%
    );
    pointer-events: none;
} */

.programas-bg-image02{
    position: absolute;
    background-size: 50%;
    bottom: 0%;
    right: 5%;
    transform: translate(20%, 10%);
    z-index: 1;
    pointer-events: none;

}

.programas-bg-image02 img {
    width: 350px;
    max-width: none;
    display: block;
}

/* Degradado */
/* .programas-bg-image02::after {
    content: "";
    position: absolute;
    inset: 0; 
    background: linear-gradient(to right, rgba(250, 251, 251, 1) 0%, rgba(250, 251, 251, 1) 20%, rgba(250, 251, 251, 0) 60%);
    pointer-events: none;
} */

/* ===============================
   COURSES SECTION
================================ */

.courses-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-off-white);
}

.courses-wrapper,
.courses-content {
  position: relative;
  z-index: 2;
}

/* Title */
.courses-content h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
  line-height: 3.5rem;
}

/* ===============================
   PROGRAM TOGGLE (BlockKidz / PyKidz)
================================ */

.courses-toggle {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.program-toggle {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-main);
}

@media (max-width: 768px) {
  .program-toggle {
    font-size: 1.1rem;
  }
}

.program-toggle .dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #fff;
  border: 0.3rem solid #D6D6D6;
}

@media (max-width: 768px) {
  .program-toggle .dot {
    width: 1rem;
  height: 1rem;
  }
}

.program-toggle.active {
  color: var(--color-primary);
  font-weight: 700;
}

.program-toggle.active .dot {
  border: 0.5rem solid var(--color-primary);
}

.program-toggle[data-program="pykidz"].active{
    color: var(--color-secondary);
}

.program-toggle[data-program="pykidz"].active .dot {
  border: 0.5rem solid var(--color-secondary);
}

@media (max-width: 768px) {
  .program-toggle.active .dot {
        border: 0.3rem solid var(--color-primary);
    }

    .program-toggle[data-program="pykidz"].active .dot {
        border: 0.3rem solid var(--color-secondary);
    }
}

/* ===============================
   PROGRAM GROUPS
================================ */

.courses-cards {
  position: relative;
}

.program-group {
  display: none;
  animation: fadeUp 0.4s ease;
}

.program-group.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===============================
   COURSE CARD
================================ */

.courses-card {
  background: #fff;
  border-radius: 32px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .courses-card {
       padding: 1.5rem;
    }

}

.courses-card .module {
  font-size: 0.75rem;
  /* letter-spacing: 1px; */
  /* color: #999; */
  display: block;
  text-transform: uppercase;
  text-align: center;
  /* margin-bottom: 0.5rem; */
    font-weight: 500;
}

.courses-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .courses-card h3 {
        font-size: 1.5rem;
    }

}

div[data-program="pykidz"] .courses-card h3{
    color: var(--color-secondary);
}

@media (max-width: 768px) {
  .card-content {
        margin-top: 1rem;
    }

}

/* ===============================
   CARD TABS (General / Sesiones)
================================ */

.card-tabs {
  display: flex;
  background: #EFEEF9;
  border-radius: 14px;
  padding: 4px;
  margin: 0 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .card-tabs {
        margin: 0 1rem;
    }

}

div[data-program="pykidz"] .card-tabs{
    background: #FFF4E6;
    
}

.card-tabs button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 0;
  border-radius: 10px;
  cursor: pointer;
  color: #666;
  font-size: 0.9rem;
    letter-spacing: -1px;
    font-family: var(--font-main);
  
}



.card-tabs button.active {
  background: #fff;
  font-weight: 600;
  /* color: var(--color-primary); */
}

/* ===============================
   CARD CONTENT
================================ */

.card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-content li {
  display: flex;
  /* justify-content: space-between; */
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.card-content li div {
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  /* color: #666; */
}

.card-content li div.item-icon{
    width: 1.25rem;
    margin-right: 1rem;
}

.card-content li div.item-title{
    width: 30%;
}

@media (max-width: 768px) {
  .card-content li div.item-title {
       font-size: 0.8rem;
    }

}

.card-content li div.item-value{
    width: 70%;
    padding-left: 1rem;
}

@media (max-width: 768px) {
  .card-content li div.item-value {
       font-size: 0.8rem;
    }

}

/* Tabs logic */
.tab-content {
  display: none;
  animation: fadeTab 0.25s ease;
}

.tab-content.active {
  display: block;
}

.courses-bg-image01{
    position: absolute;
    bottom: 10%;
    left: 0%;
    transform: translate(-50%, -5%);
    z-index: 1;
    pointer-events: none;

}

.courses-bg-image01 img{
    width: 300px;
    max-width: none;
    display: block;
}

.courses-bg-image02{
    position: absolute;
    top: 0%;
    right: 0%;
    transform: translate(-20%, -80%);
    z-index: 1;
    pointer-events: none;

}

.courses-bg-image02 img{
    width: 100px;
    max-width: none;
    display: block;
}



/* ===============================
   ANIMATIONS
================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .program-group.active {
    grid-template-columns: 1fr;
  }

  .courses-card {
    text-align: center;
  }

  .card-content li {
    /* flex-direction: column; */
    gap: 4px;
    text-align: center;
  }
}

/* ===============================
   PRICES SECTION
================================ */

.prices-section {
  padding: 6rem 0;
  background-color: var(--color-off-white);
  position: relative;
}

.prices-wrapper {
  text-align: center;
}

.prices-wrapper h2 {
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.prices-lead {
  color: #555;
  margin-bottom: 0.5rem;
  letter-spacing: -0.25px;
}

/* Toggle */
.prices-toggle {
  display: inline-flex;
  background: #F3F5F7;
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .prices-toggle {
    margin-bottom: 2rem;
  }
}

.price-toggle {
  border: none;
  background: transparent;
  padding: 0.75rem 3rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 10px;
  color: #666;
  font-family: var(--font-main);
}

@media (max-width: 768px) {
  .price-toggle {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
}

.price-toggle.active {
  background: var(--color-primary);
  color: #fff;
  font-weight: 500;
}

.price-toggle[data-program="pykidz"].active{
    background-color: var(--color-accent-red);
}

/* Groups */
.prices-group {
  display: none;
  animation: fadeUp 0.4s ease;
}

.prices-group.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Card */
.price-card {
  background: #fff;
  border-radius: 32px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (max-width: 768px) {
    .price-card {
        padding: 1.5rem;
    }
  
}

.price-card.featured {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-light-blue)
  );
  color: #fff;
  transform: translateY(-12px);
}

.prices-content{
    position: relative;
}

.price-tag-container{
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .price-tag-container{
        gap: 0.5rem;
    }
  
}

.price-tag-container img{
    width: 1.25rem;
}


.price-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  /* opacity: 0.8; */
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 768px) {
    .price-tag {
        letter-spacing: 0;
    }
  
}

.price-amount-container{
    display: flex;
    /* flex-direction: column; */
    /* align-items: center; */
    justify-content: center;
    gap: 1rem;
}

.price-amount{
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.price-symbol {
  font-size: 2rem;
  margin-top: 1rem;
  color: var(--color-primary);
}

.price-card.featured .price-symbol{
    color: #fff !important;
}

.price-amount strong {
  font-size: 3.5rem;
  margin-left: 4px;
  letter-spacing: -1px;
  color: var(--color-primary);
}

@media (max-width: 768px) {
    .price-amount strong {
        font-size: 2.5rem;
    }
  
}

.price-card.featured .price-amount strong{
    color: #fff !important;
}

.price-period {
  font-size: 0.95rem;
  /* opacity: 0.85; */
  color: var(--color-primary);
  font-weight: 500;
}

.price-card.featured  .price-period{
    color: #fff;
}

.price-features {
  list-style: none;
  padding: 0;
  /* margin-top: 1rem; */
  text-align: left;
}

.price-features li {
  padding: 0.5rem 0;
    font-size: 0.85rem;
    position: relative;
    padding-left: 22px;
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .price-features li{
        padding: 0.25rem 0;
        padding-left: 22px;
    }
  
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.price-card.featured .price-features li::before {
  color: #fff;
}

.price-card.featured .price-tag-container span{
    color: #fff;
}

.price-card a{
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card.featured a{
    background: #fff;
    color: var(--color-text) !important;
}

.prices-group[data-program="pykidz"] .price-card.featured {
  background: linear-gradient(
    90deg,
    var(--color-accent-red),
    var(--color-secondary)
  );
  color: #fff;
  transform: translateY(-12px);
}

.prices-group[data-program="pykidz"] .price-amount strong{
    color: var(--color-accent-red);
}

.prices-group[data-program="pykidz"] .price-symbol{
    color: var(--color-accent-red);
}

.prices-group[data-program="pykidz"] .price-period{
    color: var(--color-accent-red);
}

.prices-group[data-program="pykidz"] .price-card.featured  .price-period{
    color: #fff;
}

.prices-content .prices-bg-image01{
    position: absolute;
    bottom: 0%;
    right: 0%;
    transform: translate(100%, 0);
    z-index: 1;
    pointer-events: none;

}

.prices-content .prices-bg-image01 img{
    width: 100px;
    max-width: none;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .prices-group.active {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

/* ===============================
   SCHEDULE SECTION
================================ */

.schedule-section {
  padding: 6rem 0;
  background: var(--color-off-white);
  text-align: center;
  position: relative;
}

.schedule-section .container{
    position: relative;
}

.schedule-toggle {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.schedule-toggle-btn {
  border: none;
  background: transparent;
  padding: 0.75rem 3rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 10px;
  color: #666;
  font-family: var(--font-main);
}


@media (max-width: 768px) {
  .schedule-toggle-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
}

.schedule-toggle-btn.active {
      background: var(--color-primary);
    color: #fff;
    font-weight: 500;
}

/* .schedule-toggle-btn.active::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
} */

.schedule-view {
  display: none;
}

.schedule-view.active {
  display: block;
}

.schedule-dates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .schedule-dates-grid {
    grid-template-columns: 1fr;
  }
}

.schedule-date-card {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  background: #f3f2fb;
  border-radius: 16px;
  overflow: hidden;
}

.schedule-date-card.primary .schedule-date-day {
  background: linear-gradient(180deg, var(--color-primary), var(--color-light-blue));
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.schedule-date-card.orange .schedule-date-day {
  background: linear-gradient(180deg, var(--color-accent-red), var(--color-secondary));
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.schedule-date-day strong {
  font-size: 3.5rem;
  display: block;
  font-family: "PixelGosub";
  font-weight: 500;
}

.schedule-date-day span {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 600;
}

.schedule-date-content {
  padding: 1rem 1.2rem;
}

.schedule-date-content small{
  font-weight: 400;
}

.schedule-date-content h4 {
  margin: 0 0 0.5rem;
  text-align: left;
  font-size: 1.1rem;
}

.schedule-date-meta {
  font-size: 0.85rem;
  /* color: #555; */
  margin-bottom: 0.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-date-meta div{
  display: flex;
  gap: 5px;
  /* justify-content: center; */
  align-items: center;
}

.schedule-date-meta img{
  width: 20px;
}

.schedule-date-meta span{
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.schedule-date-card .btn {
  margin-top: 0.5rem;
}

.schedule-date-card.orange .btn{
  background: linear-gradient(
        135deg,
        var(--color-accent-red),
        var(--color-secondary)
    );

}




.schedule-section h2 {
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.schedule-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.schedule-range {
  font-weight: 500;
  font-size: 1.1rem;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  cursor: pointer;
  font-size: 1.4rem;
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.schedule-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 3rem;
    letter-spacing: -0.25px;
}

/* Calendar grid */
.schedule-calendar {
  display: grid;
  grid-template-columns: 80px repeat(6, 1fr);
  gap: 2px;
  background: #F3F5F7;
}

/* Time column */
.schedule-time {
  background: transparent;
  padding: 12px 6px;
  font-size: 0.75rem;
  color: #666;
}

/* Day header */
.schedule-day {
  background: #F3F5F7;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.schedule-day .day-number{
    font-family: "PixelGosub";
    letter-spacing: 0px;
    font-size: 1.5rem;

}

.schedule-day .day-text{
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: -0.5px;

}

/* Cell */
.schedule-cell {
  background: #fff;
  min-height: 70px;
  position: relative;
  padding: 6px;
}

/* Event */
.schedule-event {
  background: #f3f5f7;
  /* border-left: 4px solid var(--color-primary); */
  border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0rem;
  font-size: 0.75rem;
  text-align: left;
  width: 90%;
  position: absolute;
  z-index: 2;
  display: flex;
}

.schedule-event .seccion-container{
    background: var(--color-primary);
    padding-top: 1rem;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.schedule-event .seccion-container p{
    color: #fff;
    writing-mode: sideways-lr; /* Text flows top-to-bottom, lines stack right-to-left */
    font-size: 0.8rem;
    LETTER-SPACING: 1px;
    font-weight: 500;

}

.schedule-event .course-container{
    padding: 0.5rem;
}


.schedule-event.purple{
    background: #f3f5f7;
}


.schedule-event.orange {
  background: #f3f5f7;
  border-left-color: #ff8c00;
}

.schedule-event.orange .seccion-container{
    background: var(--color-accent-red);

}


.schedule-event .course-title{
    font-size: 1rem;
    letter-spacing: -0.5px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.15rem;
}

.schedule-event.orange .course-title{
    color: var(--color-secondary);
}

.schedule-event .course-sesion{
    letter-spacing: -0.5px;
    color: var(--color-text);
    font-size: 0.85rem;
    margin-bottom: 1rem;

}

.schedule-event.orange .course-sesion{
    
    color: var(--color-text);
}

.schedule-event .course-horario{
    letter-spacing: -0.5px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;

}

.schedule-event.orange .course-horario{
    color: var(--color-text);
}

.schedule-event a {
  margin-top: 6px;
  font-size: 0.7rem;
      position: absolute;
    bottom: 0;
    transform: translateY(50%);
    padding: 0.5rem 1rem;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-light-blue)
    );
    color: #fff !important;
    border: none;
}

.schedule-event.orange a{
    background: linear-gradient(
        135deg,
        var(--color-accent-red),
        var(--color-secondary)
    ); 

}

.schedule-event a:hover{
    transform: translateY(45%);
}

.schedule-bg-image01{
    position: absolute;
    bottom: 0%;
    right: 10%;
    /* transform: translate(100%, 0); */
    z-index: 1;
    pointer-events: none;

}

.schedule-bg-image01 img{
    width: 180px;
    max-width: none;
    display: block;

}

/* ===============================
   RESPONSIVE (3 días)
================================ */

@media (max-width: 768px) {
  .schedule-calendar {
    grid-template-columns: 60px repeat(2, 1fr);
  }
}

/* ===============================
   START SECTION
================================ */

.start-section {
  padding: 6rem 0;
  /* background: #fff; */

}

.start-wrapper h2 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 4rem;
}

/* Layout */
.start-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* Image */
.start-image {
  position: relative;
}

.start-image img {
  width: 100%;
  /* max-width: 420px; */
}

/* Steps container */
.start-steps {
  background: #f9f9ff;
  border-radius: 32px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Step item */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  min-width: 42px;
  font-family: "PixelGosub";
    letter-spacing: 1px;
    text-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

/* Step text */
.step-content h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 600;
}

.step-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

/* Colors per step */
.step-1 .step-number {
  color: var(--color-primary);
}

.step-2 .step-number {
  color: var(--color-light-blue);
}

.step-3 .step-number {
  color: var(--color-accent-yellow);
}

.step-4 .step-number {
  color: var(--color-secondary);
}

@media (max-width: 992px) {
  .start-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .start-image img {
    margin: 0 auto;
  }

  .start-steps {
    padding: 2rem;
  }

  .step-item {
    align-items: center;
  }

  .step-content {
    text-align: left;
  }
}


/* ===============================
   FAQ SECTION
================================ */

.faq-section {
  padding: 6rem 0;
  /* background: #fff; */
  position: relative;
}

.faq-wrapper{
    position: relative;
    z-index: 2;
}

.faq-wrapper h2 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 4rem;
}

/* List */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
}

/* Item */
.faq-item {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2rem;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
    letter-spacing: -1px;
}

@media (max-width: 768px) {

    .faq-question h3{
        width: 80%;
    }
  
}



/* Toggle button */
.faq-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  /* background: var(--color-accent-orange); */
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Answer (accordion) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.8rem;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  /* background: #ddd; */
  /* color: #333; */
}

.faq-bg-image01{
    position: absolute;
    bottom: 0%;
    right: 0%;
    /* transform: translate(100%, 0); */
    z-index: 1;
    pointer-events: none;

}

.faq-bg-image01 img{
    width: 450px;
    max-width: none;
    display: block;

}

/* ===============================
   CTA SECTION – CLASE GRATUITA
================================ */

.cta-section {
  background: var(--color-primary);
  padding: 5rem 0;
  position: relative;
}

.cta-wrapper {
  display: flex;
  align-items: center;
}

.cta-content {
  max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 2.5rem;
  text-align: left;
  letter-spacing: -1.5px;
}

.cta-content h2 span {
  display: block;
  font-weight: 300;
  opacity: 1;
}

/* CTA Button */
.btn-cta {
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.cta-bg-image01{
    position: absolute;
    bottom: 0%;
    right: 20%;
    /* transform: translate(100%, 0); */
    z-index: 1;
    pointer-events: none;

}

.cta-bg-image01 img{
    width: 250px;
    max-width: none;
    display: block;

}

@media (max-width: 768px) {
  .cta-wrapper {
    justify-content: center;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #1f1f3d;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand img {
  max-width: 140px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Columns */
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-col a {
  color: #fff;
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
}

/* Social */
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.footer-social a img{
    width: 1rem;
}

/* Bottom */
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* ===============================
   PARALLAX BACKGROUND BLOBS
================================ */

.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Base blob */
.parallax-blob {
  position: absolute;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  filter: blur(clamp(40px, 6vw, 70px));
  opacity: 0.6;
  border-radius: 60% 40% 55% 45%;
  mix-blend-mode: multiply;
  will-change: transform;

}

.blob-1 {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(88, 85, 182, 0.55),
    rgba(88, 85, 182, 0.15) 60%,
    transparent 75%
  );
  top: -20%;
  left: -15%;
   animation: floatBlob 26s ease-in-out infinite;
}

.blob-2 {
  background: radial-gradient(
    circle at 60% 40%,
    rgba(255, 138, 0, 0.55),
    rgba(255, 138, 0, 0.15) 60%,
    transparent 75%
  );
  top: 20%;
  right: -20%;
  animation: floatBlob 32s ease-in-out infinite reverse;
}

.blob-3 {
  background: radial-gradient(
    circle at 40% 60%,
    rgba(142, 141, 237, 0.45),
    rgba(142, 141, 237, 0.12) 60%,
    transparent 75%
  );
  bottom: -25%;
  left: 15%;
  animation: floatBlob 28s ease-in-out infinite;
}

.blob-4 {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 193, 7, 0.45),
    rgba(255, 193, 7, 0.12) 60%,
    transparent 75%
  );
  bottom: 10%;
  right: 20%;
  animation: floatBlob 36s ease-in-out infinite reverse;
}

@media (max-width: 1024px) {
  .parallax-blob {
    opacity: 0.45;
    filter: blur(55px);
  }
}

@media (max-width: 768px) {
  .parallax-bg {
    position: absolute;
  }

  .parallax-blob {
    width: 260px;
    height: 260px;
    filter: blur(50px);
    opacity: 0.35;
  }

  /* Oculta algunos blobs */
  .blob-3,
  .blob-4 {
    display: none;
  }
}



/* Asegura que el contenido vaya encima */
section,
header,
footer {
  position: relative;
  z-index: 1;
}

@keyframes floatBlob {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(30px, -40px); }
  100% { transform: translate(0, 0); }
}

@media (max-width: 768px) {
  .courses-card,
  .price-card,
  .faq-item {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
}

@media (max-width: 768px) {

    .about-section,
    .programas-section,
    .courses-section,
    .prices-section,
    .schedule-section,
    .start-section,
    .faq-section{
        padding: 4rem 0;

    }

    .faq-section{
        padding-bottom: 22rem;
    }

    .about-bg-image,
    .programas-bg-image01,
    .programas-bg-image02,
    .courses-bg-image01,
    .courses-bg-image02,
    .prices-bg-image01,
    .schedule-bg-image01,
    .about-bg-image{
        display: none;

    }
    
    .about-section h2,
    .programas-section h2,
    .courses-section h2,
    .prices-section h2,
    .schedule-section h2,
    .start-section h2,
    .faq-section h2 {
        font-size: 1.75rem;
        line-height: 1.25;
    }


}



/* ===============================
   HERO START BANNER
================================ */

.hero-image{
    position:relative;
}

/* Banner llamativo */

.hero-start-banner{
  

    position:absolute;
    top:30px;
    left: -40px;

    background:linear-gradient(
        135deg,
        #3D348B,
        #7678ED
    );

    color:white;

    padding:18px 28px;

    border-radius:50px;

    font-weight:700;

    font-size:1rem;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,0.25);

    animation:heroBadgeFloat 3s ease-in-out infinite;

    z-index:3;
}

@media (max-width: 768px) {
  .hero-start-banner{
    left: 15%;
    top: -10%;
    transform: translateX(-50%) ;
  }
}

/* Fecha grande */

.hero-start-banner span{

    display:block;

    font-size:2.5rem;

    font-weight:900;

    letter-spacing:1px;
}

/* animación */

@keyframes heroBadgeFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ROBOT FLOATING */

.hero-robot{

    animation: robotFloat 5s ease-in-out infinite;

}

@keyframes robotFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ===============================
   CODE PARTICLES
================================ */

.hero-particles{

    position:absolute;
    inset:0;

    pointer-events:none;

    z-index:2;

}

.code-particle{

    position:absolute;

    color:white;

    font-weight:700;

    font-size:20px;

    opacity:0.6;

    animation: codeFloat 8s linear infinite;

}

/* posiciones */

.code-particle:nth-child(1){
    top:10%;
    left:15%;
}

.code-particle:nth-child(2){
    top:20%;
    right:10%;
}

.code-particle:nth-child(3){
    bottom:20%;
    left:10%;
}

.code-particle:nth-child(4){
    bottom:10%;
    right:20%;
}

.code-particle:nth-child(5){
    top:40%;
    left:5%;
}

.code-particle:nth-child(6){
    top:60%;
    right:5%;
}

/* animación */

@keyframes codeFloat{

    0%{
        transform:translateY(0px);
        opacity:0.3;
    }

    50%{
        transform:translateY(-20px);
        opacity:0.9;
    }

    100%{
        transform:translateY(0px);
        opacity:0.3;
    }

}