body {
    margin: 0;
}

/*body:before {
    content: "";
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    width: 1px;
    height: 100vh;
    z-index: 999;
}*/

.g-hide {
    display: none;
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
    /* Previene el desbordamiento horizontal */
}

@media (max-width: 480px) {
}

/* Contenedor global */
*,
::before,
::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.gdev-row {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
}

/* Titulos y subtitulos */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Montserrat", sans-serif;
    margin-top: 0;
}

p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    h2,
.h2 {
    font-size:2em;
    line-height:  40px; 
}
p {
    font-size: 1em;
    line-height: 25px;
}
h3{
    font-size: 1.2em;
    line-height: 24px;
}
}


/* Botones */
a {
    text-decoration: none;
    color: #FF5000;
}

.btn-primary {
    font-family: "Montserrat", sans-serif;
    border-radius: 24px;
    padding: 12px 24px;
    border: 1px solid #FF5000;
    background-color: #FF5000;
    color: white;
}

.btn-primary:hover {
    background-color: #BF3C00;
    border-color: #BF3C00;
}

.btn-secomdary {
    font-family: "Montserrat", sans-serif;
    max-width: 200px;
    border-radius: 24px;
    padding: 12px 24px;
    border: 1px solid #FF5000;
    color: #FF5000;
}

.btn-secomdary:hover {
    border: 1px solid #BF3C00;
    color: #BF3C00;
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 10px 14px;
    }

    .btn-secomdary {
        padding: 10px 14px;
    }

}

/* Variables de Botones */
.btn-secomdary-white {
    border: 1px solid #FCFCF7;
    color: #FCFCF7;
}

.btn-secomdary-white:hover {
    border: 1px solid #FEA8A7;
    color: #FEA8A7;
}

.btn-secondary-black {
    border-color: #383838;
    color: #383838;
}

/* Imagenes ajustadas */

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-area {
    overflow: hidden;
}

.video-area {
    overflow: hidden;
}


.spacing {
    padding: 60px 0;
    background-color: #F5F5F5;
}

@media (max-width: 768px) {
    .spacing {
        padding: 30px 0;
    }

    .gdev-footer-container {
        display: flex;
        flex-direction: column;
    }
}

/* HEADER */

header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 99;
}

header nav {
    width: 100%;
}

.gdev-header-container {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.gdev-logo {
    margin-right: 30px;
    display: flex;
    align-self: center;
}

.gdev-logo img {
    width: 100%;
    height: auto;
}

#menu-main-menu {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 30px;
    margin: auto;
}

.menu-item {
    display: flex;
    align-self: center;
}
/* SUBSCRIBE FORM */
.infos-susbscribe-form{
    max-width: 610px;
    margin: auto;
}
.infos-susbscribe-form .nf-form-fields-required{
    display: none;
}
.infos-susbscribe-form .nf-form-content .list-select-wrap .nf-field-element>div, 
.infos-susbscribe-form .nf-form-content input:not([type=button]), 
.infos-susbscribe-form .nf-form-content textarea{
    border-radius: 24px;
}
.infos-susbscribe-form nf-fields-wrap{
    position: relative;
    display: flex;
}
.infos-susbscribe-form nf-fields-wrap nf-field:nth-of-type(1) input::placeholder{
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-style: italic;
}
.infos-susbscribe-form nf-fields-wrap nf-field:nth-of-type(2){
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-50%);
}
.infos-susbscribe-form nf-fields-wrap nf-field:nth-of-type(2) .infos-submit-subscribe{
    background-color: #FF5000;
    padding: 12px 24px;
}
.infos-susbscribe-form nf-fields-wrap nf-field:nth-of-type(2) .infos-submit-subscribe:hover{
    color: white;
}

@media (max-width:600px){
    .infos-susbscribe-form nf-fields-wrap{
        position: relative;
        display: block;
    }
    .infos-susbscribe-form nf-fields-wrap nf-field:nth-of-type(2){
        position: relative;
    }
}



/* CONTAINER */

.gdev-container {
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
.gdev-footer-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

 


  /* 404 error */ 
.error-404-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
    text-align: center;
}

.error-404-content {
    max-width: 600px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.error-404-content h1 {
    font-size: 6rem;
    color: #FF5000; /* Usa el color primario de tu sitio */
}

.error-404-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.error-404-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-back-home {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #FF5000; /* Color primario de tu sitio */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-back-home:hover {
    background-color: #DB4500; /* Ajusta al degradado de tu sitio */
}
.gdev-suscribete .nf-error .nf-error-msg,
.gdev-suscribete .nf-error-msg.nf-error-field-errors{
    color: white;
}
.error-404-content h1 {
    font-size: 6rem;
    color: #FF5000;
    animation: bounce 2s infinite;
    margin-bottom: 10px;
}
.nf-error.field-wrap .nf-field-element:after{
        border-radius: 24px;
}
