/* 
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 */

#site-header .header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
#site-header .site-branding{
  flex: 0 0 auto;
}

/* Menú centrado */
#site-header .site-navigation{
  flex: 1;
  display: flex;
  justify-content: center;
}

#site-header .site-navigation ul{
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Botones derecha */
.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base botones */
.btn-header{
	font-family: "Poppins", Sans-serif !important;
	font-size: 18px !important;
	font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  height: 44px;
  text-decoration: none;
  border-radius: 0;
}

/* Iniciar sesión */
.btn-secondary{
  background: #d9d9d9;
  color: #2f3440 !important;
}

/* Demo */
.btn-primary{
  background: #6f2be8;
  color: #fff !important;
}

/* Hover */
.btn-secondary:hover{
  background: #cfcfcf;
}

.btn-primary:hover{
  background: #5e20d0;
}

@media (max-width: 767px){
  .header-actions{
    display: none;
  }
}