/* =======================================
   RESET
======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =======================================
   HEADER BASE
======================================= */
.header {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =======================================
   TOP BAR
======================================= */
.header-top {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    z-index: 10;
}

.logo img {
    height: 45px;
}

/* =======================================
   NAVIGATION DESKTOP
======================================= */
.nav {
    display: inline-flex;
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav ul li {
    position: relative;
}

.nav > ul > li > a {
    font-size: 18px;
    font-family: 'Mulish', sans-serif;
    color: white;
    font-weight: 700;
}

/* ARROW */
.arrow {
    width: 10px;
    margin-left: 5px;
}

/* SUBMENÚ DESKTOP */
/*.submenu {
    display: none;
    position: absolute;
    background: white;
    padding: 15px;
    box-shadow: 0 2px 8px #0002;
    top: 30px;
    left: 0;
    border-radius: 8px;
}

.nav li:hover .submenu {
    display: block;
}

.submenu li a {
    color: #333 !important;
    font-size: 14px;
    display: block;
    padding: 5px 0;
}*/

/* BOTÓN DEMO */
.btn-demo-header {
    background: #E0483A;
    padding: 10px 20px;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Mulish", sans-serif;
}

/* =======================================
   HERO
======================================= */
.header-content {
    position: absolute;
    top: 180px;
    width: 100%;
    text-align: center;
    color: white;
    font-family: "Mulish", sans-serif;
}

.header-content h1 {
    max-width: 850px;
    margin: auto;
    font-size: 45px;
    font-weight: 400;
}

.header-content h1 strong {
    font-weight: 900;
}

.btn-demo-main {
    margin-top: 25px;
    background: #E0483A;
    padding: 12px 28px;
    color: white;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}




/* ==============================
   HERO NUEVO — RECREACIÓN EXACTA
================================ */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: rgba(0, 0, 0, 0.25); /* oscurece imagen */
    backdrop-filter: blur(2px);
    text-align: center;
    padding: 0 20px;
    z-index: 5;
}

.hero-content {
    max-width: 750px;
    color: white;
    font-family: "Mulish", sans-serif;
}

.hero-title {
    font-size: 65px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 35px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-btn {
    display: inline-block;
    background: #E0483A;
    color: white;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px){
    .hero-title { font-size: 46px; }
    .hero-subtitle { font-size: 20px; line-height: 28px; }
}

@media (max-width: 600px){
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 18px; line-height: 26px; }
	.header-content h1 {
		font-size: 36px;
	}
	
	.header-top {
		padding: 10px;
	}
	
	.btn-demo-header {
		padding: 8px;
		font-size: 9px;
	}
	
	.header-top .navegacion {
		font-size: 10px;
	}
}




/* =======================================
   MOBILE MENU — HAMBURGUESA
======================================= */
.mobile-menu-btn {
    width: 32px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 20;
}

.mobile-menu-btn span {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 5px;
    transition: 0.3s;
}

/* Animación X */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =======================================
   MOBILE NAV
======================================= */
.mobile-nav {
    display: none;
    background: white;
    width: 100%;
    position: absolute;
    left: 0;
    top: 80px;
    padding: 25px;
    box-shadow: 0 4px 14px #0003;
    z-index: 15;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 12px;
}

