/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* estilos del menu hamburgesa */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
}

.cd-header {
    position: fixed;
    width: 100px;
    top: 0;
    right: 0;
    z-index: 100;
}

.header-wrapper {
    position: relative;
    width: calc(100% - 100px);
    margin-left: 10px;
}

.nav-but-wrap {
    position: relative;
    display: inline-block;
    float: left;
    padding-left: 40px;
    padding-top: 15px;
    margin-top: 26px;
    transition: all 0.3s ease-out;
}

.menu-icon {
    height: 30px;
    width: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: block;
    float: right;
}

.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #fff;
    margin-bottom: 7px;
    cursor: pointer;
    transition: background-color .5s ease, transform .2s ease;
}

.menu-icon__line-left {
    width: 16.5px;
    transition: all 200ms linear;
}

.menu-icon__line-right {
    width: 16.5px;
    float: right;
    transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
    width: 30px;
}

.nav {
    position: fixed;
    z-index: 98;
    right: 0; /* Ajustar la posición a la derecha */
}

.nav:before,
.nav:after {
    content: "";
    position: fixed;
    top: 20px;
    right: 10px; /* Ajustar la posición a la derecha */
    width: 0;
    height: 0;
    border-bottom-right-radius: 200%;
    z-index: -1;
    transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}

.nav:after {
    background-color: #19191e;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 300%;
    transition-delay: 0s;
    box-shadow: 6px 7px 28px 0 rgb(250 250 250 / 16%);
}

.nav:before {
    transition-delay: .2s;
}

.nav__content {
    position: fixed;
    visibility: hidden;
    top: 90px;
    right: -20px; /* Ajustado para posicionar el menú desplegable a la derecha */
    width: 280px;
    text-align: left;
}

.nav__list {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.nav__list-item {
    position: relative;
    display: block;
    transition-delay: 0.8s;
    opacity: 0;
    text-align: left;
    color: #fff;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 2px;
    transform: translate(30px, 0%);
    transition: opacity .2s ease, transform .2s ease;
    margin-top: 7px;
    margin-bottom: 7px;
}

.nav__list-item a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    cursor: pointer;
    font-weight: 400;
    z-index: 2;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
    transition: all 200ms linear;
}

.nav__list-item a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 3px;
    height: 0;
    opacity: 0;
    background-color: #fff;
    z-index: 1;
    transition: all 200ms linear;
}

.nav__list-item a:hover:after {
    height: 100%;
    opacity: 1;
    top: 0;
}

.nav__list-item a:hover {
    color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a {
    color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a:after {
    height: 100%;
    opacity: 1;
    top: 0;
}

body.nav-active .nav__content {
    visibility: visible;
}

body.nav-active .menu-icon__line {
    background-color: #fff;
    transform: translate(0px, 0px) rotate(-45deg);
}

body.nav-active .menu-icon__line-left {
    width: 15px;
    transform: translate(2px, 4px) rotate(45deg);
}

body.nav-active .menu-icon__line-right {
    width: 15px;
    float: right;
    transform: translate(-3px, -3.5px) rotate(45deg);
}

body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
    width: 15px;
}

body.nav-active .nav {
    visibility: visible;
}

body.nav-active .nav:before,
body.nav-active .nav:after {
    width: 250px;
    height: 350px;
    border-radius: 15px;
}

body.nav-active .nav:after {
    transition-delay: .1s;
}

body.nav-active .nav:before {
    transition-delay: 0s;
}

body.nav-active .nav__list-item {
    opacity: 1;
    transform: translateX(0%);
    transition: opacity .3s ease, color .3s ease, transform .3s ease;
}

body.nav-active .nav__list-item:nth-child(0) {
    transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(1) {
    transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(2) {
    transition-delay: 0.9s;
}

body.nav-active .nav__list-item:nth-child(3) {
    transition-delay: 1s;
}

body.nav-active .nav__list-item:nth-child(4) {
    transition-delay: 1.1s;
}

body.nav-active .nav__list-item:nth-child(5) {
    transition-delay: 1.2s;
}

body.nav-active .nav__list-item:nth-child(6) {
    transition-delay: 1.3s;
}

body.nav-active .nav__list-item:nth-child(7) {
    transition-delay: 1.4s;
}

body.nav-active .nav__list-item:nth-child(8) {
    transition-delay: 1.5s;
}

body.nav-active .nav__list-item:nth-child(9) {
    transition-delay: 1.6s;
}

body.nav-active .nav__list-item:nth-child(10) {
    transition-delay: 1.7s;
}

/*boton con flexa*/

.boton a {
  text-decoration: none;
  color: #fff!important;
  text-transform: uppercase;
  width: 220px;
  height: 50px;
  margin
}

.boton .btn {
  margin: 0 auto;
  text-align: center;
  transition: all ease .5s;
  letter-spacing: 3px;
  position: relative;
  background: transparent;
  width: 200px;
  height: 50px;
  border-radius: 3px;
  padding: 13px 10px 10px 30px;
  font-size: 14px;
  border: 1px solid #fff;
  border-radius: 0px;
}

.boton .btn:hover {
  width: 220px;
  padding: 13px 15px 10px 15px;
  border: 1px solid transparent;
  border-color: transparent;
}


.boton .btn:after {
  content: "→";
  transition: all ease .5s;
  position:relative;
  opacity: 0;
  left: -12px;
}

.boton .btn:hover:after {
  content: "→";
  transition: all ease .5s;
  opacity: 1;
  left: 8px;
}