:root {
---background:radial-gradient(at 27.039556858793944% 49.872697504762776%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 0) 100%), radial-gradient(at 99.0082892251624% 32.50683186590735%, hsla(299.03743315508024, 100%, 36.666666666666664%, 1) 0%, hsla(299.03743315508024, 100%, 36.666666666666664%, 0) 100%), radial-gradient(at 98.78686439274787% 44.730245669865724%, hsla(223.1020408163265, 100%, 51.9607843137255%, 1) 0%, hsla(223.1020408163265, 100%, 51.9607843137255%, 0) 100%), radial-gradient(at 56.99257672748694% 20.769820041111263%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 0) 100%), radial-gradient(at 61.05004863915341% 36.36207460789087%, hsla(299.03743315508024, 100%, 36.666666666666664%, 1) 0%, hsla(299.03743315508024, 100%, 36.666666666666664%, 0) 100%), radial-gradient(at 32.279212374279695% 16.93903461224846%, hsla(223.1020408163265, 100%, 51.9607843137255%, 1) 0%, hsla(223.1020408163265, 100%, 51.9607843137255%, 0) 100%), radial-gradient(at 47.66104666768941% 33.277319242592554%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 0) 100%), radial-gradient(at 28.805813957288418% 84.35103327808365%, hsla(299.03743315508024, 100%, 36.666666666666664%, 1) 0%, hsla(299.03743315508024, 100%, 36.666666666666664%, 0) 100%), radial-gradient(at 28.908128236576434% 76.41028479134842%, hsla(223.1020408163265, 100%, 51.9607843137255%, 1) 0%, hsla(223.1020408163265, 100%, 51.9607843137255%, 0) 100%), radial-gradient(at 79.84564015946579% 82.8924792025433%, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 0) 100%), radial-gradient(at 26.723211536869908% 13.486840938556188%, hsla(299.03743315508024, 100%, 36.666666666666664%, 1) 0%, hsla(299.03743315508024, 100%, 36.666666666666664%, 0) 100%);
    ---morado1: #9a2eda;
    ---morado2: rgb(154 46 218);
    ---morado3: rgb(190, 134, 223);
    ---transparent1: rgba(255, 255, 255, 0.1);
    ---background-footer: #00000050;
    ---grey-isom: #333333;

    ---transparent-border: #e2e8f071;

    ---primary: white;
    ---secundary: rgb(209 213 219);

    /* Fonts */
    ---thin-font: 300;
    ---medium-font: 500;
    ---bold-font: 700;
    ---radius-botones: 8px;
}
/* Flotante */
.boton-flotante {
    height: 60px;
    width: 60px;
    display: flex;
    position: fixed;
    bottom: 50px;
    right: 40px;
    transition: ease-in 250ms;
    opacity: 30%;

}
.boton-flotante:hover {
    transform: scale(1.09);
    opacity: 100%;

}
:hover {
    text-decoration: none;
}
.botones-1 {
    padding: 10px 25px;
    border-radius: var(---radius-botones);
    background-color: var(---morado2);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 0 10px #00000022;
}
.botones-2 {
    padding: 15px 45px;
    border-radius: var(---radius-botones);
    background-color: var(---morado2);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 10px var(---morado1);
}
.botones-3 {
    padding: 15px 25px;
    border-radius: var(---radius-botones);
    background-color: var(---transparent1);
    border: 2px solid;
    color: white;
    font-weight: var(---medium-font);
    font-size: 1rem;
}
.botones-4 {
    padding: 10px 45px;
    border-radius: var(---radius-botones);
    background-color: transparent;
    border: 2px solid var(---morado2);
    color: var(---morado2);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 3rem;
}


h3 {
    font-size: 3rem;
    color: var(---primary);
    font-weight: var(---bold-font);
    margin: 10px;
}
.desc-h3 {
    font-size: 1.25rem;
    width: 55%;
    margin: 0 22.5%;
    color: var(---secundary);
}
section {
    width: 85%;
    padding: 4.5rem 7.5%;
}

/* animaciones */



/* Inicio */
body, html {
    padding: 0;
    margin: 0;
    font-family: ISOMfont;
    background-image: var(---background);
    min-height: 100vh;
    color: white;
    background-attachment: fixed;
    transition: ease-in 500ms;
    text-decoration: none;



}

.header.fixed {
    position: fixed;
    top: 0;
    height: 80px;
    left: 0;
    background: rgba(0, 0, 0, 0.184); /* Fondo semitransparente */
    backdrop-filter: blur(16px);       /* Efecto de desenfoque */
    -webkit-backdrop-filter: blur(16px); /* Compatibilidad con Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Línea sutil */
    transition: ease-out 300ms;

}

/* Header */
.header {
    height: 90px;
    width: 95%;
    padding: 0 2.5%;
    display: flex;
    justify-content: space-between;
}
.menu-toggle {
  display: none;
}
.header-logo {
    width: fit-content;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.logo-header {
    height: 80%;
}

.header-links {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.links-header {
    color: var(---principal);
    text-decoration: none;
    font-weight: var(---medium-font);
    font-size: 1rem;
    transition: ease-in 200ms;
}
.links-header:hover {
    color: var(---morado1);

}
.button-header {
    padding: 10px 25px;
    border-radius: var(---radius-botones);

}

/* Main */
.sect1-home {
    height: 88vh;
    width: 100%;
    padding: 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sect1-home h2 {
    font-size: 6rem;
    margin: 0;
}
.sect1-home-morado {
    color: var(---morado2);
}
.sect1-home p {
    width: 890px;
    font-size: 1.5rem;
    text-align: center;
    color: var(---secundary);
}

.sect1-home-botones {
    display: flex;
    width: 600px;
    justify-content: space-evenly;
    margin-top: 40px;
    
}
#boton-s1-h-b {
    display: flex;
    text-align: center; 
    align-items: center;
    justify-items: center;
}

.sect2-home {
    width: 85%;
    display: flex;
    justify-content: space-between;

}
.cajas {
    width: 18%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(---transparent1);
    border: 1px solid var(---transparent-border);
    border-radius: var(---radius-botones);

}
.title-cajas {
    font-size: 2.5rem;
    font-weight: var(---bold-font);
    margin: 15px;
}
.text-cajas {
    font-size: 1rem;
    font-weight: var(---medium-font);
    color: var(---secundary);
    margin: 0;
}
.title-cajas-l {
    font-size: 1.25rem;
    font-weight: var(---bold-font);
    margin: 15px;
}
.sect2-home svg {
    color: var(---morado1);
}


/* Sect3 Home */
.sect3-home {
    text-align: center;
}
.cajas-div {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.sect3-home svg {
    color: var(---morado1);
}


/* Footer */
.footer {
  background: var(---background-footer);
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
}
.logo-footer {
  width: 80%;
}
.social-footer {
  height: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  border-bottom: 2px solid var(---morado1);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.company h4 {
  color: #00bcd4;
  font-size: 24px;
  margin-bottom: 10px;
}

.company p {
  margin: 15px 0;
  color: #bbb;
}

.social-icons a {
  display: inline-block;
  
  color: #fff;
  background: #2c3e50;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
  height: 20px;
  width: 20px;
}

.social-icons a:hover {
  background: var(---morado1);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 25px 0 0 25px;
  background: var(---transparent1);
  color: #ffffff;
}

.newsletter-form button {
  padding: 0 15px;
  border: none;
  border-radius: 0 25px 25px 0;
  background: var(---morado3);
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.footer-links a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}
.company {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

/* REsponsive */
@media (max-width: 1024px) {
    .header-links {
        width: auto;
        gap: 10px;
        flex-wrap: wrap;
    }

    .sect1-home h2 {
        font-size: 4rem;
        text-align: center;
    }

    .sect1-home p {
        width: 90%;
        font-size: 1.2rem;
    }

    .sect1-home-botones {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .cajas-div,
    .sect2-home {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .cajas {
        width: 45%;
    }

    .desc-h3 {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px 0;
        height: 80px;
    }

    .header-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sect1-home h2 {
        font-size: 3rem;
    }

    .sect1-home p {
        font-size: 1rem;
    }

    .cajas {
        width: 90%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        align-content: center;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 80%;
        border-radius: 25px;
    }
}
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 100px;
        width: 100%;
        background-color: var(---);
    }


    .header-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
        gap: 15px;
        z-index: 999;
        transition: 150ms ease-in;

        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .header-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        margin-right: 20px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        border-radius: 3px;
    }
    .logo-footer {
        padding: 20px 0;

    }
    .logo-header {
      max-height: 90%;
    }
    .header-logo {
      height: 80%;
    }
}




