:root{
    --purple100: #ffe9f3;
    --purple200: #ffb5d6;
    --purple300: #ff6eaf;
    --purple400: #ff3f95;
    --purple500: #FF0073;
    --purple600: #E5046A;
    --purple700: #7B1444;
    --purple800: #461C31;
    --purple900: #220e18;
    --gray100: #D6EEEE;
    --gray200: #CBDEDE;
    --gray300: #B1C5C5;
    --gray400: #96A5A5;
    --gray500: #758484;
    --gray600: #5B6C6C;
    --gray700: #435555;
    --gray800: #263636;
    --gray900: #141F1F;
    --white: #F2F9F8;
    --black: #000000;
    --black100: #00070a50;
    --black50: #000706;
    --text-color: bisque;
    --border-radius: 0.75rem;
    --transition: 0.6s ease-in-out;
    --colorTexts: whitesmoke;
}

*,
::before,
::after {
    box-sizing: border-box;
}



.privacidad {
    padding: 1rem 20%;
}

body {
    overflow-x: hidden;
}

/*SCROLL BAR */

/* width */
::-webkit-scrollbar {
    height: 10px;
    scroll-behavior: smooth;
    direction: rtl; 
    white-space: nowrap;
    
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--gray200); 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--purple500); 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--purple700); 
  }
  


p {
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
}

.text-white {
    color: #fff !important;
}

.text-gray100 {
    color: var(--gray100);
    text-shadow: #263636 1px 1px 2px, #263636 0 0 25px, #263636 0 0 5px;
}
.text-gray200 {
    color: var(--gray200);
    text-shadow: #263636 1px 1px 2px, #263636 0 0 25px, #263636 0 0 5px;
}
.text-gray300 {
    color: var(--gray300);
    text-shadow: #263636 1px 1px 2px, #263636 0 0 25px, #263636 0 0 5px;
}

a:hover {
    filter: drop-shadow(13px 13px 20px rgb(215, 218, 210));
    color: rgb(0, 225, 255);
}

.body{
    background-color: var(--white);
    color: var(--gray900);
    transition: var(--transition);
}

.header {
    display: flex;
    align-items: left;
    justify-content: space-evenly;
    width: 100%;
    height: fit-content;
    background-color: var(--black);
    background: radial-gradient(
        circle,
        var(--black) 10%,
        var(--white) 90%
    );
    transition: var(--transition);
    border-bottom: 4px solid var(--purple800);
    margin-top: 0;
}

.header1 {
    position: relative;
    color: var(--white);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
    
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 1; 
    padding: 1rem; 
}




@media screen and (min-width: 768px) {
    .header1 {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 992px) {
    .header1 {
        width: 80%;
        margin: 0 10%;
    }
}

@media screen and (min-width: 1200px) {
    .header1 {
        width: 80%;
        margin: 0 10%;
    }
}

.small{
    font-size: 0.5em;
    margin-top: 1rem;
}

h1 {
    font-size: 8em;
    margin-bottom: 1.2em;
    text-align: center;
    margin-top: 2.6em;
    color: var(--purple500);
    font-family: 'League Spartan', sans-serif;
    text-shadow: 1px 1px 2px var(--black), 0 0 25px var(--purple900), 0 0 5px var(--gray900);
    
}

h2 {
    font-size: 6em;
    margin-bottom: 1.6rem;
    margin-top: 2em;
    text-align: center;
    margin-top: 1em;
    color: var(--purple500);
    font-family: 'League Spartan', sans-serif;
    text-shadow: 1px 1px 2px var(--black), 0 0 25px var(--purple900), 0 0 5px var(--gray900);
}

h3 {
    font-size: 2em;
    margin-bottom: 1.2em;
    text-align: center;
    margin-top: 1.2em;
    color: var(--purple500);
    font-family: 'League Spartan', sans-serif;
}

.cotizacion {
    background-image: url(/assets/images/template1.png);
    background-size: cover;
}


/*BUTTONS */

.button-flag{
    border-radius: 1.2rem; 
    width: 40px; height: 40px; 
    overflow: hidden; 
    display: flex;
    cursor: pointer;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 1.1rem 0 1.1rem;
}

#flags{
    display: flex;
    flex-direction: row;
}

.custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-primary {
    background-color: var(--purple500); 
    border: none;
    color: var(--white);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 4px 2px;
    cursor: pointer;
    height: fit-content;
    width: 200px;
}

.button-primary:hover {
    background-color: var(--purple700); 
    color: var(--gray200);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 4px 2px;
    cursor: pointer;
}

.button-ghost {
    background-color: var(--gray500);
    color: var(--black);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 4px 2px;
    cursor: pointer;
    width: 200px;
}

.button-ghost:hover {
    border-color: var(--gray600);
    background-color: var(--gray600);
    color: var(--white);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 4px 2px;
    cursor: pointer;
}

.button-ghost2 {
    color: var(--purple500);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button-ghost2:hover {
    
    border-bottom: solid 3px;
    border-color: var(--purple200);
    color: var(--purple200);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.nav-button {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.nav-button:hover {
    background-color: var(--black50);
}

#service-display .fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

#service-display .fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: var(--black50);
    color: var(--colorTexts);
    cursor: pointer;
    padding: 18px;
    width: fit-content;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: var(--black);
    color: var(--purple200);
    
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
    align-items: center;
    margin-bottom: 1em;
    max-width: 600px;
  }

.pack {
    background-color: var(--purple100);
    border-radius: var(--border-radius);
    border: 1px solid var(--black50);
    color: var(--black100);
    text-align: justify;
    margin: 1em 10px;     /* Simplificado para margen superior e inferior */
    flex: 1;              /* Permite que las cajas crezcan para ocupar el mismo espacio */
    min-width: 300px;     /* Ancho mínimo para que se mantenga un buen diseño */
    max-width: 800px;     /* Ancho máximo para evitar que crezcan demasiado */
    padding: 10px;
    max-height: 650px;   
}

.pack-title {
    font-size: 1.5rem;
    font-family: 'League Spartan', sans-serif;
    opacity: 0.8rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5em;
    color: var(--purple500);
}

/* CARDS */
.card{
    padding: 1em;
    background-color: var(--black50) !important;
    border-radius: var(--border-radius);
    border: 1px solid;
    color: whitesmoke;
    /* Chrome 10-25, Safari 5.1-6 -webkit-linear-gradient(to right, var(--purple700), */
    
}

.card__title{
    margin-top: 2em;
    padding: auto;
    text-align: center;
    font-family: 'Labrada';
    margin-bottom: 1em;
    font-size: 2.6rem;
    color: var(--purple300);
}

.card__subtitle{
    font-size: 1.5rem;
    font-family: 'Labrada';
    opacity: 0.8rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5em;
    color: var(--purple500);
}

.link{
    margin: 0.5em 0 0 0.5em;
    text-decoration: none;
    color: var(--purple100);
}

.link:hover{
    color: var(--purple400);
}

.card__text{
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
    -webkit-text-stroke-color: var(--purple100);
    color: var(--gray200);
    align-items: center;
    width: 100%;
    margin-bottom: 1em;
    height: fit-content;
    background: radial-gradient(
        circle,
        var(--purple800) 10%,
        var(--purple700) 90%
    );
    padding: 4em;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.4em;
}


.card__image-container{
    align-items: center;
    align-self: center;
    align-content: center;
    display: flex;
    min-width: 320px;
    border-radius: var(--border-radius);
    overflow: hidden;
    

    
    
}


/* MENU */
.wrapper{ 
    height:2000px; 
    width:100%; 
    padding-top:20px;
}

.fixed{
    position:fixed; 
    top:0;
}

label{
    color: var(--colorTexts);
    font-size: 16px;
    position: absolute;
    left: 5px;
    top:10px;
    transition: 0.5s ease all;
    pointer-events: none;
}

p .onImage{
    font-size: medium;
    font-family: 'Manrope', sans-serif;
    color: var(--purple100);
    padding: 1rem;
    text-align: justify;
    width: 600px;
    height: auto;
    background-color: #0007057a;
}

.iframes {
    max-height: 1024px;
    min-height: 400px;
    overflow-y: scroll;
    width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow-x: scroll;
    scroll-behavior: smooth;
    direction: rtl;
}

p .description{
    font-size: medium;
    font-family: inherit;
    color: var(--purple300);
}

/*CARRUSEL */
.carrusel-img {
    padding-left: 40%;
}

#carrusel {
    float:left;
    width: 500px;
    overflow:hidden;
    height:203px;
    position:relative;
    margin-top:20px;
    margin-bottom:20px;
}
 
#carrusel .left-arrow {
    position:absolute;
    left:10px;
    z-index:1;
    top:50%;
    margin-top:-9px;
}
 
#carrusel .right-arrow {
    position:absolute;
    right:10px;
    z-index:1;
    top:50%;
    margin-top:-9px;
}
 
.carrusel {
    width: 4000px;
    left:0px;
    position:absolute;
    z-index:0;
}
 
.carrusel>div {
    float: left;
    height: 203px;
    margin-right: 5px;
    width: 195px;
    text-align:center;
}
 
.carrusel img {
    cursor:pointer;
}
 
.product {
    border:#CCCCCC 1px solid;
    width: fit-content;
}


.flex-container{
    display: flex;
    border: white;
    padding: 2rem;
    background-color: var(--black50);
    margin-top: 4rem;
    flex-direction: column;
    align-items: center;
}

.horizontal-container{
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 60%;
        margin-left: 20%;
        margin-right: 20%;
        vertical-align: text-top;
}

@media only screen and (max-width: 600px) {
    .button-primary {
        background-color: var(--purple500); 
        border: none;
        color: var(--white);
        padding: 10px;
        border-radius: var(--border-radius);
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        margin: 4px 2px;
        cursor: pointer;
        width: 100px;
    }

    .button-primary:hover {
        border: 3px var(--purple500);
        color: var(--black);
        padding: 10px;
        border-radius: var(--border-radius);
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        margin: 4px 2px;
        cursor: pointer;
        width: 100px;
    }
    
    .button-ghost {
        
        color: var(--black);
        padding: 10px;
        border-radius: var(--border-radius);
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        margin: 4px 2px;
        cursor: pointer;
        width: 100px;
    }
    
    .button-ghost:hover {
        
        color: var(--white);
        padding: 10px;
        border-radius: var(--border-radius);
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        margin: 4px 2px;
        cursor: pointer;
        width: 100px;
    }

    .horizontal-container {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .privacidad {
        padding: 0;
    }
}
.horizontal-container-scroll{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 60%;
    margin-left: 20%;
    vertical-align: text-top;
    overflow-x: scroll;
    scroll-behavior: smooth; 
}

.horizontal-container-nocenter{
    display: flex;
    flex-direction: row;
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
    vertical-align: text-top;
}

.horizontal-container-icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
}

.container {
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 2em 0;
    padding: 2em 2rem;
	border-radius: 10px;
    background-color: var(--gray100);
	border: 1px solid var(--black50);
	box-shadow: 0px 0px 10px rgba(14, 13, 14, 0.712);
    color: var(--black50);
	overflow: hidden;
	transition: border-radius 0.5s ease;
}



/*BOXES */

.box {
    background-color: none;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray600);
    color: var(--gray900);
    text-align: justify;
    margin: 1em 10px;     /* Simplificado para margen superior e inferior */
    flex: 1;              /* Permite que las cajas crezcan para ocupar el mismo espacio */
    min-width: 300px;     /* Ancho mínimo para que se mantenga un buen diseño */
    max-width: 800px;     /* Ancho máximo para evitar que crezcan demasiado */
    padding: 10px;
    max-height: 650px;   
}

.box:hover {
    background-color: var(--black);
    border: 4px solid var(--purple400);
    color: var(--purple400);
}

.box:active {
    background-color: var(--black);
    border: 4px solid var(--purple600);
    color: var(--purple500);
}


.box-borderless {
    text-align: justify;
    align-content: center;
    margin-top: 1em;
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
    padding: 10px;
    align-items: center;
}

.box-image-container {
    border-radius: var(--border-radius);
    align-content: center;
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    height: fit-content;
    align-items: center;  
    overflow: hidden;
    transition: transform .2s; 
}


.box-text {
    background-color: var(--black100); 
    width: 100%; 
    height: fit-content; 
    border-radius: var(--border-radius);
    text-align: justify;
}

.box-title {
    background-color: var(--black);
    background: -webkit-linear-gradient(to right, var(--black), var(--purple900));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, var(--black), var(--purple900));
    border-radius: var(--border-radius);
    border: 1px solid whitesmoke;
    color: white;
    text-align: center;
    align-items: center;
    
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    height: auto;
    
    
    
    padding: 1em;
    box-shadow: 20px 10px 8px var(--gray600);
}

.box-footer {
    background-color: var(--black);
    border-radius: var(--border-radius);
    border: 1px solid whitesmoke;
    color: rgb(241, 243, 202);
    text-align: left;
    width: 60%;
    height: 300px;
    padding: 20px;
    align-items: center;
    box-shadow: 10px 10px 8px var(--gray500);
}

.principal {
    background-image: url("../images/portada.png");
    background-size: cover;
    background-position: right;
    position: relative;
    color: white;
    text-align: center;
    align-items: center; 
    width: 100%;
    margin-bottom: 1em;
    height: fit-content;
    padding: 1em;
    padding-top: 3em;
}

video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* El video estará detrás del contenido */
}

.video-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Estilos base */
img#service-image,
.display-image {
  width: 300px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  border-radius: 1.2rem; /* Añadido: borde redondeado */
}

/* Efecto de hover para aplicar filtro */
img#service-image:hover,
.display-image:hover {
  filter: drop-shadow(0 0 5px var(--purple500)) saturate(150%);
  transform: scale(1.1); /* Aplica el efecto de zoom */
}

/* Estilos para el div envolvente simulado para el efecto de modal */
#image-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/*MODAL ACTUALIZADO */
/* Las reglas ya están aplicadas en las secciones anteriores debido al uso de .display-image */
/*FIN MODAL ACTUALIZADO */
.modal-fullscreen {
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.modal-content {
    height: 100%; /* Asegura que el contenido del modal ocupe todo el alto */
}

/* Flexbox para centrar el contenido */
.modal-body {
    display: flex;
    flex-direction: column;
}

figure {
    display: inline-block;
    height: 600px;
    overflow: hidden;
    
}
figcaption {
    font-style: oblique;
    text-align: center;
    margin: 10px 0px;
    color: var(--gray700);
}
.imagen img {
    max-width: 100%;
    cursor: pointer;
    overflow: hidden;
}
.modalImg {
    cursor: pointer;
    border-radius: 0.4rem;
    max-height: 80%;
    overflow: hidden;
}
.imodalImg:hover {
    opacity: 0.8;
}
.modal {
    display: none;
    /* ocultar por defecto */
    position: fixed;
    width: 80%;
    height: 80%;
    position: fixed;
    top: 0;
    left: 0;
    border: solid 1px;
    background: rgba(0, 0, 0, 0.9);
    padding-top: 5%;
    overflow: hidden;
}
#modalImg {
    display: block;
    position: fixed;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
}
#modalClose {
    position: absolute;
    cursor: pointer;
    top: 30px;
    right: 50px;
    color: var(--purple100);
    transition: all;
    font-weight: bold;
    font-size: 5rem;
}
#modalText {
    margin: auto;
    display: block;
    text-align: center;
    color: var(--purple100);
}
/* animaciones */
#modalText {
    animation-name: zoom;
    animation-duration: 0.7s;
}

section#contact {
    background-color: #21252936;
    background-image: url("../assets/images/PORTADA_Crearte.webp");
    background-repeat: no-repeat;
    background-position: center;
    padding: 2em;
    margin: 2rem 0;
  }
  section#contact .section-heading {
    color: #fff;
  }
  section#contact form#contactForm .form-group {
    margin-bottom: 1.5rem;
  }
  section#contact form#contactForm .form-group input,
  section#contact form#contactForm .form-group textarea {
    padding: 1.25rem;
  }
  section#contact form#contactForm .form-group input.form-control {
    height: auto;
  }
  section#contact form#contactForm .form-group-textarea {
    height: 100%;
  }
  section#contact form#contactForm .form-group-textarea textarea {
    height: 100%;
    min-height: 10rem;
  }
  section#contact form#contactForm p.help-block {
    margin: 0;
  }
  section#contact form#contactForm .form-control:focus {
    border-color: var(--blue500);
    box-shadow: none;
  }
  section#contact form#contactForm ::-webkit-input-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
  }
  section#contact form#contactForm :-moz-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
  }
  section#contact form#contactForm ::-moz-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
  }
  section#contact form#contactForm :-ms-input-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
  }

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

  /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    
}
  
  
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}
  
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    color: var(--purple500);
    border-radius: 4rem;
    border: 2px solid var(--purple500);
}
  
  /* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
}


/*SMARTPHONE MODE*/

@media screen and (max-width:1024px){

    .horizontal-container-scroll{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}
@media screen and (max-width:1024px){
    
    .box-title{
        margin-left: 0;
        margin-right: 0;
        width: 100%;

    }
    .card__text{
        margin-left: 0;
        margin-right: 0;
        width: 100%; 
    }
    
    .horizontal-container-nocenter{
        display: flex;
        flex-direction: column;
        width: 60%;
        margin-left: 0;
        margin-right: 0;
        vertical-align: text-top;
    }
    .box{
        margin: 0 1rem;
        width: 100%;
        height: 640px; 
    }
    .box:hover {
        background-color: var(--black);
        border-radius: var(--border-radius);
        border: 4px solid var(--purple400);
        color: var(--purple400);
        margin: 0 1rem;
        width: 100%; 
        height: 640px; 
    }
    
    .box:active {
        background-color: var(--black);
        border-radius: var(--border-radius);
        border: 4px solid var(--purple600);
        color: var(--purple500);
        margin: 0 1rem;
        width: 100%; 
        height: 640px; 
    }
    .box-footer {
        display: flex;
        flex-direction: column;
        background-color: var(--black);
        border-radius: var(--border-radius);
        border: 1px solid whitesmoke;
        color: var(--purple100);
        text-align: justify;
        width: 100%;
        height: 300px;
        
        align-items: center;
        box-shadow: 10px 10px 8px var(--gray500);
    }
    .carrusel-img {
        padding-left: 10%;
    }

    
 
.button-ghost2 {
    color: var(--gray500);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    width: 300px;
}

.button-ghost2:hover {
    border-top: solid 3px;
    border-bottom: solid 3px;
    border-color: var(--purple500);
    color: var(--purple500);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    width: 300px;
}
}