* {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}
body {
    background-color: #fff;
    padding: 0;
    margin: 0;
}
.bold {
    font-weight: 700;
}
.semibold{
    font-weight: 600;
}
.blue{
    color: #578BF2;
}
.title {
    font-size: 60px;
}
.secondary {
    font-size: 21px;
    line-height: 25px;
}
.text-center {
    text-align: center;
}
.doltrip-container {
    max-width: 1440px;
    padding: 0 24px;
    margin: 0 auto;
}
p, h1 {
    margin: 0;
}
.redes-link {
    text-decoration: none;
}
.main {
    width: 100%;
    height: 100vh;
    background-image: url('/public/fondo.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.main .wrapper-header {
    box-shadow: 0px 3px 6px #00000029;
    height: auto;
    background-color: #FFFFFF;
}
.main .wrapper-header .header {
    min-height: 88px;
    max-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main .container-principal {
    width: 100%;
    height: calc(100vh - 88px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 700px;
}

.main .container-principal {
    width: 100%;
    height: calc(100vh - 88px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.main .container-principal .text-principal {
    margin-top: 20px;
}
.main .text-principal p:nth-child(4) {
    margin-top: 60px;
}

/*Tablet*/
@media screen and (max-width: 1024px) {
    .main {
        background-image: url('/public/tablet/proximamente/fondo.svg');
    }
    .title {
        font-size: 30px;
    }
    .secondary {
        font-size: 18px;
    }
}

/*Movil*/
@media screen and (max-width: 767px) {
    .main {
        background-image: url('/public/movil/proximamente/fondo.svg');
    }
    .title {
        font-size: 21px;
        margin-bottom: 15px;
    }
    .secondary {
        font-size: 14px;
    }
    .main .container-principal .text-principal {
        width: 250px;
        line-height: 17px;
    }
}