* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'inter';
    src: url('../fonts/Inter-V.woff') format('woff'),
    url('../fonts/Inter-V.ttf') format('truetype'),
    url('../fonts/Inter-V.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'archivo';
    src: url('../fonts/Archivo-Light.woff') format('woff'),
    url('../fonts/Archivo-Light.ttf') format('truetype'),
    url('../fonts/Archivo-Light.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bebas-Neue-Book';
    src:url('../fonts/Bebas-Neue-Book.ttf.woff') format('woff'),
    url('../fonts/Bebas-Neue-Book.ttf.svg#Bebas-Neue-Book') format('svg'),
    url('../fonts/Bebas-Neue-Book.ttf.eot'),
    url('../fonts/Bebas-Neue-Book.ttf.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}


body {
    background-color: #141414;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
}
.container {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: auto;
}
header {
    padding: 20px;
}

nav ul {
    margin-left: 200px;
    margin-top: 50px;
    list-style: none;
    display: flex;
    justify-content: right;
}

nav ul li {
    margin: 0 20px;
    font-family: 'Bebas-Neue-Book', "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 35px;
}
nav ul li a:hover {
    color: #ccc;
}
nav ul li a:hover {
    color: #ccc;
}

.desktop-menu {
    display: flex;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
}

.menu-icon,
.close-icon {
    display: inline-block;
    cursor: pointer;
}

.close-icon {
    display: none;
}

.mobile-menu-button.open .menu-icon {
    display: none;
}

.mobile-menu-button.open .close-icon {
    display: inline-block;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.home{
    height: 100vh;
    background: url('../images/home_fondo.jpg') no-repeat center center/cover;
    position: relative;
    width: 100%;
}

.home header nav .logo-container {
    display: none;
}
.logo-container{
    position: absolute;
    top: 60px;
    left: 0px;
}
.logo-container .logo{
    height: 80px;
}

.logo-container-home {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.logo-container-home .image {
    display: none;
    position: absolute;
    background-size: cover;
    background-position: center;
}
header nav .logo-negro {
    display: none;
}

.logo-home {
    position: absolute;
    text-align: center;
    z-index: 10;
}
.logo-fondo {
    position: absolute;
    text-align: center;
    padding-top: 100px;
    z-index: 1;
}
.title{
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
}
.title-mobile, .subtitle-mobile{
    display: none;
}

.f-carousel__slide{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.volver {
    position: absolute;
    left: 40px;
    top: 170px;
    cursor: pointer;
}
.volver:hover {
    color: #cccccc;
}
@media (max-width: 768px) {
    .volver {
        position: absolute;
        left: 30px;
        top: 60px;
        cursor: pointer;
        z-index: 100;
    }
}
/* ================================= */
/* ============ SALONES ============ */
/* ================================= */
.logo-salones {
    position: relative;
    float: left;
    width: 100%;
    margin: 200px 0;
}
.salones-img {
    width: auto;
    max-height: 250px;
    transition: all 0.3s ease;
}
.salones-img:hover {
    opacity: 0.6;
}
.salones-nombre{
    display: none;
}

.salon-wrapper{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 100px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: 500px;
}
.salon-galeria{
    position: relative;
    float: left;
    width: 100%;
    margin: 50px 0;
}
.salon-logo{
    text-align: left;
    margin: 20px 0;
}
.salon-logo img {
    height: 60px;
}
.salon_subtitle{
    font-size: 20px;
    font-weight: 100;
    text-align: left;
}
.salon_title{
    font-family: 'Bebas-Neue-Book';
    font-size: 60px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 30px;
}
.salon-foto{
    width: 100%;
    padding: 20px;
}
.salon_text{
    font-family: inter, sans-serif;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
}
.salon_margin {
    margin: 30px 0;
}
.salon_fondo_mobile{
    display: none;
}
.gallery{
    height: 400px;
}
/* Media Queries */
@media (max-width: 768px) {
    .salon-wrapper{
        padding: 0 20px;
    }
    .salon-logo {
        text-align: left;
    }
    .salon_text{
        text-align: center;
    }
    .gallery{
        width: 100%;
        height: auto;
    }
    .salon-foto-left{ text-align: right !important; padding-right: 5px !important; margin-top: 30px !important; }
    .salon-foto-left img { width: 100%; }
    .salon-foto-right{ text-align: left !important; padding-left: 5px !important; margin-top: 30px !important; }
    .salon-foto-right img { width: 100%; }

    .salon_subtitle{
        text-align: left;
    }
    .salon_title{
        text-align: left;
    }
    .salon_text{
        text-align: left;
        margin-bottom: 50px;
    }
    .salon-foto{
        padding: 0px;
    }
    .salon-container a{
        text-decoration: none;
    }
    .salon_fondo_mobile{
        display: block;
        position: absolute;
        margin: 0;
        padding: 0;
    }
    .salones-img{
        width: 100%;
    }
    .salones-nombre{
        display: block;
        font-size: 30px;
        color: #fff;
        padding: 100px 0;
    }
    .logo-salones {
        margin: 50px 0;
    }
}

.div-center{
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ================================= */
/* ============ SERVICIOS ========== */
/* ================================= */
.servicio-home {
    position: relative;
    float: left;
    width: 100%;
    margin: 100px 0;
}
.servicio_div_center{
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.servicio-title{
    font-size: 60px;
    text-align: left;
    font-family: 'Bebas-Neue-Book';
}
.servicio-botones{
    position: relative;
    float: left;
    width: 100%;
    margin: 20px 0;
}
.servicio-botones a{
    font-size: 30px;
    text-decoration: none;
    color: #ffffff;
}
.servicio-botones a:hover{
    color: #8a8a8a;
}
.servicio_title{
    font-family: 'Bebas-Neue-Book', sans-serif;
    font-size: 60px;
    font-weight: 100;
    text-align: left;
    margin-top: 50px;
}
.servicio_subtitle{
    font-size: 50px;
    font-weight: 800;
    text-align: left;
}
.servicio_text{
    font-family: 'inter', sans-serif;
    font-size: 16px;
    font-weight: 100;
    text-align: left;
    line-height: 30px;
    margin-top: 20px;
    padding-right: 20px;
}
.servicio-botonera{
}
.servicio_text_mobile{
    display: none;
}
.servicio-desktop{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 100px;
}
.servicio-galeria{
    position: relative;
    float: left;
    width: 100%;
    margin: 50px 0;
}
@media (max-width: 768px) {
    .servicio-home{
        margin: 50px 0 100px 0;
        text-align: center;
    }
    .servicio-title {
        text-align: center;
        margin-top: 100px;
    }
    .servicio_subtitle{
        margin-bottom: 30px;
    }
    .servicio-photo{
        display: none;
    }
    .servicio-botonera{
        margin: 150px 0;
    }
    .div-center {
        height: 250px;
    }
    .servicio_title{
        font-size: 35px;
    }
    .servicio_text{
        display: none;
    }
    .servicio_text_mobile{
        font-family: 'inter', sans-serif;
        display: block;
        text-align: left;
        line-height: 30px;
    }
}

/* ================================= */
/* ============ PORTFOLIO ========== */
/* ================================= */
.portfolio-home {
    position: relative;
    float: left;
    width: 100%;
    margin-top: 120px;
}
.portfolio-detalle{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 120px;
}
.portfolio-title{
    margin: 50px 0 20px 30px;
    font-size: 60px;
    text-align: left;
    font-family: 'Bebas-Neue-Book';
}
.portfolio-botonera{
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 50px;
}
.portfolio-botones{
    position: relative;
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 0;
}
.portfolio-botones-text{
    position: relative;
    float: left;
    width: 100%;
    font-size: 40px;
    text-decoration: none;
    color: #ffffff;
    z-index: 10;
    text-align: left;
    margin-left: 30px;
}
.portfolio-botones-fondo {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.7;
}
.portfolio-botones:hover .portfolio-botones-fondo {
    opacity: 0.9;
}
.portfolio_subtitle{
    font-size: 20px;
    font-weight: 100;
    text-align: left;
}
.portfolio_title{
    font-family: 'Bebas-Neue-Book', inter, sans-serif;
    font-size: 60px;
    font-weight: 800;
    text-align: left;
}
.portfolio_fecha{
    font-size: 25px;
    font-weight: 800;
    text-align: left;
}
.portfolio_text{
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 100;
    text-align: left;
}

.portfolio-desktop{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 100px;
}
.portfolio-galeria{
    position: relative;
    float: left;
    width: 100%;
    margin: 50px 0;
}
@media (max-width: 768px) {
    .portfolio-home{
        margin: 50px 0 100px 0;
    }
    .div-center {
        height: 250px;
    }
    .portfolio-title{
        text-align: center;
        margin: 50px 0;
    }
    .portfolio-detalle{
        padding: 0 20px;
    }
    .portfolio_title{
        text-align: left;
        font-size: 40px;
    }
    .portfolio_subtitle{
        text-align: left;
        font-size: 35px;
    }
    .portfolio_fecha{
        text-align: left;
        height: 50px;
        line-height: 50px;
    }
    .portfolio-text {
        font-size: 14px;
    }
    .portfolio-botones {
        padding: 20px 0;
    }
    .portfolio-botones-text {
        font-size: 30px;
        text-align: center;
        margin: 0px;
    }
    .portfolio-logo{
        display: none;
    }
    .portfolio-border-top{
        border-top: 2px solid #fff;
    }
    .portfolio-border-bottom{
        border-bottom: 2px solid #fff;
    }
}
/* ================================= */
/* ============ NOSOTROS ========== */
/* ================================= */
.nosotros header nav ul li a {
    color: #000;
}
.nosotros header nav .logo-blanco {
    display: none;
}
.nosotros header nav .logo-negro {
    display: block;
}
.nosotros footer .redes_blanco {
    display: none;
}
.nosotros footer .redes_negro {
    display: block;
}

.nosotros-home {
    position: relative;
    float: left;
    width: 100%;
}
.nosotros-fondo{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-image: url("../images/nosotros_fondo.jpg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}
.nosotros-title{
    font-size: 80px;
    text-align: center;
    color: #000000;
    font-family: 'Bebas-Neue-Book';
}
.nosotros-texto{
    position: relative;
    float: left;
    width: 100%;
    font-size: 22px;
    font-family: inter, sans-serif;
    text-align: left;
    margin: 20px 0;
    color: #000000;
    padding-right: 100px;
}

.nosotros footer .email a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
}
.nosotros nav .menu-icon {
    color: #000000;
}
.nosotros nav .close-icon {
    color: #000000;
}
.nosotros nav .mobile-menu {
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .nosotros-title{
        margin-top: 0px;
    }
    .nosotros-texto{
        font-size: 18px;
        padding-right: 0px;
        text-align: center;
    }
    .nosotros-home{
        margin: 0 0 50px 0;
    }
}

/* ================================= */
/* ============ CONTACTO ========== */
/* ================================= */
.contacto {
    margin: 0;
    padding: 0;
}

.contacto-home{
    position: relative;
    float: left;
    width: 100%;
}
.contacto-title{
    font-family: 'Bebas-Neue-Book';
    color: #FFFFFF;
    font-size: 60px;
    padding: 100px 0 50px 0;
}
.contacto-form{
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 50px;;
}
.contacto-input{
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 18px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    background-color: transparent;
    color: #cccccc;
}
::placeholder {
    color: #cccccc;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #ccccc;
}
.contacto-select {
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 18px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    background-color: transparent;
    color: #cccccc;
    appearance: none;
}

.contacto-select option {
    background-color: #000; /* Fondo de opciones (si lo deseas) */
    color: black; /* Color del texto de las opciones */
}

.contacto-select option:disabled {
    color: white; /* Placeholder en blanco */
    background-color: transparent;
}
.contacto-boton{
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 30px;
    width: 250px;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    margin-left: 50%;
    transform: translateX(-125px);
    cursor: pointer;
}
.contacto-boton:hover {
    background-color: #545454;
    color: #CCCCCC;
}
.resultado{
    display: none;
    width: 100%;
    max-width: 500px;
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
    margin-left: 50%;
    transform: translateX(-250px);
    border-radius: 25px;
    border: 1px solid;
    padding: 20px;
}
.error {
    color: red;
    border-color: red;
    background-color: transparent;
}
.success {
    color: green;
    border-color: green;
    background-color: transparent;
}
@media (max-width: 768px) {

}
/* ================================= */
/* ============ FOOTER ============= */
/* ================================= */
footer {
    position: relative;
    float: left;
    width: 100%;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .redes_negro {
    display: none;
}
footer .contact {
    margin-bottom: 10px;
}
footer .contact a {
    margin: 0 10px;
}
footer .contact img {
    width: 32px;
    height: 32px;
}

footer .email a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* Media Queries */
@media (max-width: 768px) {

    main {
        padding: 20px;
    }
    .portfolio main {
        padding: 0px;
    }

    nav ul {
        display: none;
    }
    .desktop-menu{
        display: none;
    }
    .logo-footer{
        display: none;
    }
    .mobile-menu-button {
        display: block;
        position: relative;
        float: right;
        margin-right: 0px;
        margin-top: 26px;
        height: 50px;
    }
    .mobile-menu {
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        display: none;
        background-color: #282828;
    }

    .mobile-menu.open {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-menu-container{
        width: auto;
        margin-top: 150px;
        padding: 0 30px;
    }
    .mobile-btn{
        position: relative;
        float: left;
        width: 100%;
        height: 100px;
    }
    .mobile-btn a{
        font-size: 50px;
        text-decoration: none;
        color: #CCCCCC;
        font-weight: 100;
        font-family: 'Bebas-Neue-Book';
    }
    .left{ text-align: left; }
    .right{ text-align: right; }

    .logo-container {
        width: 100%;
        max-width: 100%;
        left: 0;
        text-align: center;
    }
    .logo-container .logo{
        width: 100px;
    }
    .logo-container-negro{
        position: absolute;
        top: 60px;
        width: 100%;
        text-align: left;
        left: 30px;
    }
    .logo-container-negro a img{
        width: 100px;
    }

    .close-icon {
        display: block;
        position: absolute;
        right: 40px;
        top: 60px;
    }

    .logo-container-home {
        flex-direction: column;
    }

    .logo-container-home .logo-home {
        width: 80%;
    }

    .image1 {
        top: 10%;
        left: 10%;
    }
    .image2 {
        top: 30%;
        right: 10%;
    }
    .image3 {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo h1 {
        font-size: 48px;
    }

    .logo h2 {
        font-size: 24px;
    }

    .title-mobile {
        display: block;
        font-family: "Bebas Neue", sans-serif;
        padding: 20px 0;
        font-size: 45px;
    }
    .subtitle-mobile {
        display: block;
        font-family: inter, sans-serif;
        padding: 20px;
        font-size: 14px;
        margin-bottom: 30px;
    }
    .servicio_text_mobile{
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 30px;
        margin-top: 50px;
    }
}
