/*Luis Villalobos*/


@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

/*======RESETEARLO POR DEFAULT======*/

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/

  --first-color: hsl(18, 95%, 55%);
  --second-color: hsl(42, 98%, 52%);
  --first-gradient: linear-gradient(90deg,
                  hsl(18, 95%, 55%),
                  hsl(18, 98%, 64%));
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(225, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(255, 20%, 10%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);

  /*========== Font and typography ==========*/
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

img {
  display: block;
  max-width: 100%;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}
.section__title, 
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: .5rem;
}

.main {
  overflow: hidden;
}

/*==============HEADER BAR================*/

* {
    
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif; 
    box-sizing: border-box;

}

header {
    width: 100%;
    height: 80px;
    background-color: #121213;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    position: fixed; 
    top: 0;       
    left: 0;
    z-index: 1000;
}

.bars {

    display: none;

}

.nav-bar ul {

    display: flex;

}

.nav-bar ul li a {

    display: block;
    color: #ffffff;
    font-size: 18px; 
    padding: 10px 25px; 
    border-radius: 15px;
    transition: 0.2s;
    margin: 0 5px;

}


.nav-bar ul li a:hover {

    color: #0f0d0d;
    background-color: #ffe00e;

}


@media (max-width:900px) {

    header {

        padding: 0px 30px;
    
    }

    .bars {

        display: block;
        cursor: pointer;

    }

    .bars .line {

        width: 30px;
        height: 3px;
        background-color: #fff;
        margin: 6px 0px;
    }

    .nav-bar{

        height: 0px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background-color: #202124;
        transition: 0.5s;
        overflow:hidden;
    }

    
    .nav-bar.active { 

        height: 450px;

    }

    .nav-bar ul {

        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;

    }
    
    .nav-bar ul li a {
        margin-bottom: 20px;
        text-align: center;
    }

    .nav-bar ul li a {

        margin-bottom: 20px;

    }

}

/*================INICIO==================*/

.home {

    padding: 145px 0;   
    align-items: center;
    justify-content: center;
    background-color: #282825;

}

.home__container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}

.home__content {

    display: flex;
    flex-direction: column;
    justify-content: center;

}

.tagline {

    font-size: 1rem;
    color: #ffe00e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;

}

.home__title {

    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;

}

.home__description {

    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;

}

.home__buttons{

    display: flex;
    justify-content: left;
    align-items: center;
    gap: 2rem;

}

.home__images img {

    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15); 
    object-fit: cover;
    gap: 2rem;
    
}

.home__images img:hover{

    border-radius: 50%; 
    box-shadow: 0 0 30px hsla(76, 97%, 43%, 0.3);

}

@media screen and (max-width: 768px) {

    .home__container {

        grid-template-columns: 1fr;
        text-align: center;

    }

    .home__content {

        align-items: center;

    }

    .home__title {

        font-size: 2.5rem;

    }

    .home__description {

        font-size: 1rem;

    }

    .button, .button__link {

        font-size: 0.9rem;

    }

    .home__images img {

        align-items: center;

    }
}

/*==============BOTONES==========*/

.button{

    display: inline-flex;
    background: #ffe00e;
    color: #131212;
    border-radius: 15px;
    font-weight: var(--font-semi-bold);
    padding: 1rem 2rem;
    transition: box-shadow .4s;

}

.button:hover{

    box-shadow: 0 8px 32px hsla(76, 94%, 49%, 0.3);
    color: var(--white-color);

}

.button__link{

    display: flex;
    align-items: center;
    column-gap: .25rem;
    color: #ffe00e;

}

.button__link span{

    font-weight: var(--font-semi-bold);

}

.button__link i{

    font-size: 1.5rem;
    transition: transform .4s;

}

.button__link:hover i{

    transform: translateX(.25rem);

}


/*=====================ANIMACIONES INICIO========================*/

@keyframes fadeInScale {

    0% {
        opacity: 0;
        transform: scale(0.9); 
    }
    100% {
        opacity: 1;
        transform: scale(1); 
    }

}


.home {

    padding: 145px 0;
    align-items: center;
    justify-content: center;
    background-color: #282825;

}

.home__container {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInScale 2s forwards; 

}

.home__content {

    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInScale 2s forwards;

}

.home__images img {

    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15); 
    object-fit: cover;
    gap: 2rem;
    animation: fadeInScale 2s forwards; 

}

.home__title, .home__description, .home__buttons {

    animation: fadeInScale 1s forwards; 

}

@media screen and (max-width: 768px) {
    .home__container {
        grid-template-columns: 1fr; 
        gap: 30px; 
    }

    .home__title {
        font-size: 2.5rem; 
    }

    .home__description {
        font-size: 1rem; 
    }
}

@media screen and (max-width: 480px) {
    .home__title {
        font-size: 2rem; 
    }

    .home__description {
        font-size: 0.9rem; 
    }
}


/*==================SERVICIO====================*/

.service {

    text-align: center;
    padding: 200px 0;

}

.service h2 {

    font-size: 36px;
    margin-bottom: 20px;
    position: relative;

}

.service h2::after {

    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background-color: #ffe00e;
    margin: 10px auto 0;

}

.service-container {

    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;

}

.service-box {

    background-color: white;
    border: 1px solid #eee;
    border-radius: 10px;
    width: 30%;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;

}

.service-box .icon {

    margin-bottom: 20px;

}

.service-box .icon i {
    font-size: 50px; 
    color: black;
    margin-bottom: 10px;
}

.service-box img {

    width: 60px;
    height: 60px;

}

.service-box h3 {

    font-size: 24px;
    color: #ffe00e;
    margin-bottom: 10px;

}

.service-box p {

    font-size: 16px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;

}

.service-box .btn {

    display: inline-block;
    padding: 10px 20px;
    background-color: #ffe00e;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;

}

.service-box .btn:hover {

    background-color: #e4c80d;

}

.modal-overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 1000;

}

.modal-content {

    background: #fff;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    text-align: center;
    position: relative;

}

.modal-content h3 {

    margin-bottom: 20px;

}

.close {

    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;

}

.service-container {

    display: flex;
    gap: 20px;
    justify-content: center;

}

.service-container {

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto;

}

.service-box {

    width: 100%;
    max-width: 350px;
    margin: 10px;
    box-sizing: border-box;

}

@media (min-width: 768px) {

    .service-box {

        width: 45%;

    }

}

@media (min-width: 1024px) {

    .service-box {

        width: 30%;
    
    }

}

.modal-content {

    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    text-align: center;

}

/*==================ANIMACION SERVICIO===================*/

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service {
    text-align: center;
    padding: 200px 0;
}

.service h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.service h2::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background-color: #ffe00e;
    margin: 10px auto 0;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto;
}

.service-box {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}


.service-box:nth-child(1) {
    animation-delay: 0.4s;
}

.service-box:nth-child(2) {
    animation-delay: 0.6s;
}

.service-box:nth-child(3) {
    animation-delay: 0.8s; 
}

.service-box .icon {
    margin-bottom: 20px;
}

.service-box .icon i {
    font-size: 50px; 
    color: black;
    margin-bottom: 10px;
}

.service-box img {
    width: 60px;
    height: 60px;
}

.service-box h3 {
    font-size: 24px;
    color: #ffe00e;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-box .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffe00e;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-box .btn:hover {
    background-color: #e4c80d;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.modal-content h3 {
    margin-bottom: 20px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}


@media (min-width: 768px) {
    .service-box {
        width: 45%; 
    }
}

@media (min-width: 1024px) {
    .service-box {
        width: 30%; 
    }
}

.service-box {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 10px;
    width: 30%;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.service-box.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .service-box {
        width: 100%;
    }
}

/*==================PROYECTOS===================*/
.projects {
    padding: 80px 0;
    background-color: #282825;
}

.projects .section__title {
    color: #fff;
}

.projects__container {
    padding-block: 1.5rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px;
}

.projects__card {
    width: 350px;
    height: 450px;
    background-color: var(--container-color);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: border-color .4s, transform 0.3s; /* Añadido transform para la animación */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0; /* Comienza oculto */
    transform: translateY(20px); /* Desplazamiento inicial */
    animation: fadeInUp 2s ease forwards; /* Animación de entrada */
}

.projects__card:hover {
    border-color: #ffe00e;
    transform: scale(1.05); /* Aumenta el tamaño al pasar el cursor */
}

.projects__card .btn {

    display: inline-block;
    padding: 10px 20px;
    background-color: #ffe00e;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;

}

.projects__card .btn:hover {

    background-color: #e4c80d;

}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects__img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-bottom: 1px solid #e0e0e0;
}

.projects__data {
    padding: 1.5rem 1rem 3rem;
    text-align: center;
    flex-grow: 1;
}

.projects__title {
    font-size: var(--h2-font-size);
    margin-block: 5rem;
}

.projects__date {
    display: block;
    font-weight: var(--font-medium);
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.swiper {
    margin-inline: initial;
    padding-bottom: 4rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-prev,
.swiper-button-next {
    top: initial;
    bottom: 0;
    width: 32px;
    height: 32px;
    background-color: var(--container-color);
    box-shadow: 0 2px 8px hsla(255, 8%, 4%, .1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--title-color);
}

.swiper-button-prev {
    left: calc(50% - 3rem);
}

.swiper-button-next {
    right: calc(50% - 3rem);
}

/*=================EQUIPO================*/
.team {
    padding: 100px 0;
}

.team .section__title {
    color: #131212;
}

.wrapper .card_Container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.card_Container .card {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1), inset 0 0 0 1000px rgba(67, 52, 109, .6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Comienza oculto */
    transform: translateY(20px); /* Desplazamiento inicial */
    animation: slideIn 1.5s ease forwards; /* Animación de deslizamiento */
}

.card_Container .card:nth-child(even) {
    animation-name: slideInRight; /* Deslizar desde la derecha para tarjetas en posición par */
}

.card_Container .card:nth-child(odd) {
    animation-name: slideInLeft; /* Deslizar desde la izquierda para tarjetas en posición impar */
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.card .imbBx,
.imbBx img {
    width: 100%;
    height: 100%;
}

.card .content {
    position: absolute;
    bottom: -160px;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.65s;
}

.card:hover .content {
    bottom: 0;
    transition-delay: 0s;
}

.content .contentBx h3 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
}

.card:hover .content .contentBx h3 {
    opacity: 1;
    transform: translateY(0);
}

.content .contentBx h3 span {
    font-size: 12px;
    font-weight: 300;
    text-transform: initial;
}

.content .sci {
    position: relative;
    bottom: 10px;
    display: flex;
}

.content .sci li {
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.2s * var(--i));
}

.card:hover .content .sci li {
    transform: translateY(0);
    opacity: 1;
}

.content .sci li a {
    color: #fff;
    font-size: 24px;
}
 

/*==================CONTACTANOS================*/

.contact {

    width: 100%;
    height: 100%;
    --s: 200px; /* control the size */
    --c1: #1d1d1d;
    --c2: #4e4f51;
    --c3: #3c3c3c;
  
    background: repeating-conic-gradient(
          from 30deg,
          #0000 0 120deg,
          var(--c3) 0 180deg
        )
        calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
      repeating-conic-gradient(
        from 30deg,
        var(--c1) 0 60deg,
        var(--c2) 0 120deg,
        var(--c3) 0 180deg
      );
    background-size: var(--s) calc(var(--s) * 0.577);

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 0;
    color: white;
}

.contact__container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.contact__form,
.contact-info {
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 45%;
    opacity: 0; 
    transform: scale(0.9); 
    transition: opacity 1.5s ease, transform 1.5s ease; 
}

.contact__form.animate,
.contact-info.animate {
    opacity: 1;
    transform: scale(1); 
}

.contact__form {
    flex-grow: 1;
}

.contact__form h2 {
    margin-bottom: 20px;
}

.contact__form form {
    display: flex;
    flex-direction: column;
}

.contact__form label {
    margin-bottom: 5px;
}

.contact__form input,
.contact__form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #131212;
    border-radius: 5px;
}

.contact__form textarea {
    resize: none;
    height: 100px;
}

button {
    font-family: inherit;
    font-size: 18px;
    background: linear-gradient(to bottom, #ffe00e 0%, #bda60b 100%);
    color: white;
    padding: 0.8em 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

button span {
    display: block;
    margin-left: 0.4em;
    transition: all 0.3s;
}

button svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: all 0.3s;
}

button .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 0.5em;
    transition: all 0.3s;
}

button:hover .svg-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
}

button:hover svg {
    transform: rotate(45deg);
}

.contact-info {
    flex-grow: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    margin-right: 10px;
    text-decoration: none;
    color: #007bff;
}

.social-media a:hover {
    text-decoration: underline;
}

iframe {
    margin-top: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact__form,
    .contact-info {
        width: 100%;
    }
}


/*=====================FOOTER========================*/

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    overflow: hidden; /* Para ocultar elementos que se salen del contenedor */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 10px;
    opacity: 0; /* Comienza oculto */
    transform: translateY(20px); /* Desplazamiento inicial */
    transition: opacity 2s ease, transform 2s ease; /* Transiciones */
}

.footer-section.animate {
    opacity: 1; /* Final visible */
    transform: translateY(0); /* Regresar a la posición original */
}

.footer-section h3 {
    color: #ffe00e;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section ul {
    margin: 0;
    padding: 0;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a,
.footer-section .social-links a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.footer-section .social-links {
    display: flex;
    justify-content: space-between;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #222;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }
}

/*================SCROLL BAR===================*/

::-webkit-scrollbar{

    width: .6rem;
    background-color: hsl(255, 5%, 75%);

}

::-webkit-scrollbar-thumb{

    background-color: hsl(255, 5%, 65%);

}

::-webkit-scrollbar-thumb:hover{

    background-color: hsl(255, 5%, 55%);

}

/*=================SCROLL UP==================*/

.scrollup{

    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--body-color);
    box-shadow: 0 4px 16px hsla(255, 90%, 8%, .15);
    color: var(--title-color);
    display: inline-flex;
    padding: 6px;
    font-size: 1.5rem;
    z-index: var(--z-tooltip);
    transition: bottom .4s, transform .4s;

}

.scrollup:hover{

    transform: translateY(-.5rem);

}

/*===========SHOW SCROLL UP=============*/

.show-scroll{

    bottom: 3rem;

}



/*=================================PAGINA ADICIONAL PARA EL PROYECTO ESCANER DETECTOR DE COLORES=========================================*/

