:root {
    --primary-color: #E21D48;
    --secondary-color: #3B141C;
    --text-color: #fff;
    --background-color: #0A0A0A;
    --background-color-2: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
}

header {
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 81px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #535353;
    place-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header .logo img {
    display: block;
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-color);
    gap: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

header #nav {
    display: flex;
    gap: 20px;
}

header #nav a {
    text-transform: uppercase;
    font-size: 1em;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
}

header #nav a:hover {
    color: var(--primary-color);
    font-weight: bold;
}

header #nav .sub {
    position: relative;
}



header #nav .sub ul {
    padding: 20px;
    background: var(--background-color-2);
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 20px solid var(--background-color);
    display: none;
    width: 250px;
    border-radius: 15px;
}


header #nav .sub ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-color);
    text-decoration: none;
    list-style: none;

}

header #nav .sub:hover ul {
    display: block;
}


header #nav .sub ul li a:hover {
    color: var(--primary-color);
}


header .btn_contac {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1em;
    text-transform: uppercase;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
}

header .btn_contac:hover {
    box-shadow: 0 0 20px var(--primary-color);
}


::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 1000px;
}

section{
        margin-top: 50px;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

section h3{
    font-size: 1em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.separador {
    width: 100%;
    display: block;
}



/* Botón hamburguesa oculto en desktop */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.menu-toggle i {
    color: var(--text-color);
}

#x_x{
    display: none;
        color: var(--text-color);
}

#logo_2{
    display: none;
}

/* 📱 MODO CELULAR */
@media (max-width: 920px) {

    .menu-toggle {
        display: block;
    }
    #nav{
        z-index: 100;
        width: 100%;
        height: 100vh;
        background: #000;
        top: 0;
        left: 0;
        position: fixed !important;
        flex-wrap: wrap;
        /* justify-content: center; */
        /* align-items: center; */
        flex-direction: column;
        padding: 20px;
        display: none !important;
    }
    #x_x{
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        font-size: 2em;
        display: block;
    }
    #logo_2{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    #logo_2::after{
        width: 100%;
        background: #fff;
        height: 2px;
        content: "";
        display: block;
        margin-top: 10px;
    }
}

.btn_contac2{
    display: none;
}

@media (max-width: 600px) {
    .btn_contac{
        display: none;
    }
    .btn_contac2{
        display: block;
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn_contac2 {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    font-size: 2em;
    animation: pulse 2s infinite;
    text-decoration: none;
    color: var(--text-color);
}

h2{
    font-size: 2.5em;
    font-weight: bold;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 span{
    font-size: 1em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn_min{
    padding: 10px 20px;
}
