/* =======================================
   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;
}

/* ARROW */
.arrow1 {
    width: 12px;
}

/* BOTÓN DEMO */
.btn-demo-header {
    background: #1b80f2;
    padding: 10px;
    color: white;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 300;
    cursor: pointer;
}

/* =======================================
   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: #1b80f2;
    padding: 12px 28px;
    color: white;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

/* =======================================
   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: 18px;
}

/*
 * MEDIA QUERY PARA MÓVILES
 * Estos estilos solo se aplicarán a pantallas de 768px de ancho o menos.
 */
@media (max-width: 768px) {
    
    body {
        font-size: 12px; /* TAMAÑO DE CUERPO REDUCIDO */
    }

    h1 {
        font-size: 26px; /* TAMAÑO DE H1 REDUCIDO */
    }

    p {
        font-size: 14px; /* TAMAÑO DE PÁRRAFO REDUCIDO */
    }
	
	.btn-demo-header {
		font-size: 8px;
		padding: 5px;
	}
	
	.header-top {
		padding: 10px;
	}
	
	.header-content h1 {
		font-size: 32px;
	}
	
	.header-top .navegacion {
		font-size: 10px;
	}
    
}
