/* Fuentes */
@font-face {
    font-family: 'Owners';
    src: url('../fonts/Owners.otf') format('opentype');
}

@font-face {
    font-family: 'Owners xl';
    src: url('../fonts/Owners-xl.otf') format('opentype');
}

@font-face {
    font-family: 'Owners bold';
    src: url('../fonts/Owner-bold.otf') format('opentype');
}

/* General */
body {
    background: #141414 !important;
    font-family: 'Owners', sans-serif !important;
}

p {
    letter-spacing: 1px;
}

/* Header y navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1000;
}

.navbar {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 5% !important;
}

.nav-logo {
    width: 150px;
}

.nav-div ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
}

.nav-div ul li {
    margin: 0 10px !important;
}

.nav-div ul li a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.nav-a {
    background: #A21B20;
    background: linear-gradient(90deg, rgba(162, 27, 32, 1) 50%, rgba(97, 47, 52, 0.341) 100%);
    padding: 5px 10px !important;
    border-radius: 5px !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Sección uno */
.one-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.os-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.os-div {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.os-p {
    color: #fff !important;
    font-size: 1.2rem !important;
    margin: 0 !important;
    font-weight: 600;
}

.os-p2 {
    font-size: 7rem !important;
    font-family: 'Owners xl', sans-serif !important;
    background: linear-gradient(90deg, #682A2A 0%, #CB0808 30%, rgba(117, 23, 24, 0.66) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

.os-img {
    width: 95%;
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Sección dos */
.two-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: end;
    margin-top: -10px;
}

.ts-img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.ts-div {
    width: 50%;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    position: absolute;
}

.ts-p {
    color: #fff !important;
    font-size: 1.8rem !important;
    font-family: 'Owners bold', sans-serif !important;
    margin-bottom: 50px !important;
}

.ts-p2 {
    color: #fff !important;
    font-size: 1rem !important;
    font-family: 'Owners bold', sans-serif !important;
    white-space: pre-line !important;
}

.ts-p3 {
    color: #fff !important;
    font-size: 1rem !important;
    white-space: pre-line !important;
    margin-bottom: 30px;
}

.ts-img2 {
    position: absolute;
    right: 10%;
    top: 10%;
    width: 600px;
    animation: dron-planeo 4s ease-in-out infinite;
}

@keyframes dron-planeo {
    0% {
        transform: translateY(0) translateX(0) rotate(-3deg);
    }

    25% {
        transform: translateY(-15px) translateX(30px) rotate(2deg);
    }

    50% {
        transform: translateY(0) translateX(60px) rotate(-2deg);
    }

    75% {
        transform: translateY(15px) translateX(30px) rotate(3deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(-3deg);
    }
}

.ts-div2 {
    display: flex;
    align-items: center;
    position: absolute;
    right: 5%;
    top: 10%;
}

.ts-img3 {
    width: 30px;
    margin-right: 20px;
}

/* Sección tres */
.three-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.ths-div {
    width: 80%;
    margin: 5% auto;
    display: block;
}

.ths-p {
    font-size: 1rem;
    margin-bottom: 0;
}

.ths-p2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.ths-img {
    width: 100%;
    height: 466px;
    object-fit: cover;
}

.ths-div2 {
    width: 100%;
    height: 220px;
    background: #e6e6e6;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ths-div3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ths-p3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.ths-hr {
    border: 1px solid #000;
    margin: 0;
    width: auto;
    opacity: 1;
    width: 40%;
}

.ths-p4 {
    white-space: pre-line;
}

/* Sección cuatro - Correcciones y animación fluida */
.four-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.fs-div {
    width: 100%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fs-div2 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.fs-img {
    width: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.fs-div2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #BD140F 30%, rgba(189, 20, 15, 0.19) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.fs-p {
    font-size: 2rem;
    margin: 0;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1;
}

/* Animación de textos de abajo hacia arriba */
.fs-p2,
.fs-p3,
.fs-p4 {
    position: absolute;
    left: 20px;
    right: 20px;
    transition: all 0.5s cubic-bezier(.77, 0, .18, 1);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(80px);
    color: #fff;
}

.fs-p2 {
    font-size: 1.5rem;
    bottom: 20px;
    margin: 0;
    white-space: pre-line;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fs-p3 {
    font-weight: 600;
    bottom: 25%;
}

.fs-p4 {
    bottom: 10%;
}

.fs-div2:hover .fs-p2 {
    bottom: 40%;
    z-index: 10;
    opacity: 1;
    transform: translateY(0);
}

.fs-div2:hover .fs-p3,
.fs-div2:hover .fs-p4 {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fs-div2:hover::before {
    opacity: 1;
}

.fs-div2:hover .fs-img {
    filter: brightness(0.7);
}

.fs-p2 span {
    font-family: 'Owners bold', sans-serif !important;
}

/* five section */
.five-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
}

.fis-div {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fis-img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.fis-p {
    font-size: 1.rem;
    margin-bottom: 0;
    color: #fff;
}

.fis-p2 {
    font-size: 2rem;
    margin-bottom: 5%;
    font-weight: 900;
    color: #fff;
}

.fis-div2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin-bottom: 25px;
}

.fis-p3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
}

.fis-hr {
    border: 1px solid #fff;
    margin: 0;
    width: auto;
    opacity: 1;
    width: 50%;
}

.fis-img2 {
    width: 100%;
    object-fit: contain;
    padding: 10px;
}

.fis-p4 {
    color: #fff;
    width: 80%;
}

.fis-div3 {
    display: flex;
    align-items: center;
}

.fis-btn {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 20px;
}

/* six section */

.six-section {
    width: 100%;
    overflow: hidden;
    padding: 5% 0;
}

.ss-div {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.ss-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.ss-div2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ss-img2 {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 0;
}

/* seven section */

.seven-section {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.ses-img {
    width: 50%;
    object-fit: cover;
    border-radius: 0;
}

.ses-div {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.ses-p {
    font-size: 4rem;
    margin-bottom: 0;
    color: #fff;
    white-space: pre-line;
    text-align: center;
    line-height: 1.2;
}

.ses-p span {
    font-weight: 800;
}

.ses-div2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.ses-p2 {
    color: #fff;
    font-size: 1.7rem;
    text-decoration: none;
    margin: 0;
}

/* footer */

footer {
    width: 100%;
    overflow: hidden;
}

.footer-div {
    width: 80%;
    margin: 5% auto;
    background: #d8d8d8;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
}

.footer-logo {
    position: absolute;
    top: -70px;
    left: 30px;
    width: 200px;
    height: 200px;
    background-color: #1d1d1d;
    border-radius: 50%;
    padding: 20px;
    object-fit: contain;
    display: block;
}

.footer-div2 {
    width: 50%;
    margin-right: 10%;
}

.footer-div3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-a2 {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 1.3rem;
    margin-right: 20px;
    font-weight: 600;
}

.footer-hr {
    border: 1px solid #1d1d1d;
    margin: 25px 0;
    width: auto;
    opacity: 1;
}

.footer-div4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-align: center;
    display: block;
    margin: 25px auto;
}

.footer-a3 {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 1.2rem;
    margin-right: 20px;
}

.footer-a3 img {
    margin-right: 10px;
}

.footer-a4 img {
    width: 30px;
    height: 30px;
    margin-right: 10px;

}

@media screen and (min-width:1000px) and (max-width:1300px) {

    .os-p2 {
        font-size: 5rem !important;
    }

    .ts-div {
        width: 50%;
        left: 5%;
    }

    .ts-img2 {
        width: 400px;
        right: 10%;
    }

    .ths-p3 {
        font-size: 1rem;
    }

    .ths-p4 {
        white-space: normal;
        font-size: 0.9rem;
    }

    .fs-div2:hover .fs-p2 {
        bottom: 45%;
    }

    .fs-p3 {
        bottom: 22%;
    }

    .fs-p4 {
        bottom: 0%;
        font-size: 0.8rem;
    }

    .ses-p {
        font-size: 3rem;
    }

    .ses-p2 {
        font-size: 1.5rem;
    }

    .footer-div2 {
        width: 60%;
        margin-right: 5%;
    }

    .footer-logo {
        width: 150px;
        height: 150px;
        top: -50px;
    }

    .footer-a2 {
        font-size: 1rem;
    }

    .footer-a3 {
        font-size: 0.9rem;
    }

}

@media screen and (min-width: 768px) and (max-width: 1000px) {

    .os-p2 {
        font-size: 4rem !important;
    }

    .ts-div {
        width: 45%;
        left: 5%;
    }

    .ts-p2,
    .ts-p3 {
        white-space: normal !important;
    }

    .ts-img2 {
        width: 350px;
        right: 10%;
    }

    .ths-p3 {
        font-size: 0.9rem;
    }

    .ths-p4 {
        white-space: normal;
        font-size: 0.7rem;
    }

    .fs-p2 {
        font-size: 0.9rem;
    }

    .fs-p3 {
        font-size: 0.8rem;
        white-space: normal !important;
    }

    .fs-p4 {
        font-size: 0.7rem;
        white-space: normal !important;
        bottom: 0%;
    }

    .fs-div2:hover .fs-p2 {
        bottom: 80%;
    }

    .fs-p3 {
        bottom: 45%;
    }

    .fis-div2 {
        width: 100%;
    }

    .fis-hr {
        width: 20%;
    }

    .fis-p4 {
        font-size: 0.8rem;
        width: 100%;
        white-space: normal !important;
    }

    .fis-div3 {
        margin-bottom: 20%;
    }

    .ses-p {
        font-size: 2rem;
    }

    .ses-p2 {
        font-size: 1rem;
    }

    .footer-div2 {
        width: 70%;
        margin-right: 5%;
    }

    .footer-logo {
        width: 120px;
        height: 120px;
        top: -40px;
    }

    .footer-a2 {
        font-size: 0.9rem;
    }

    .footer-a3 {
        font-size: 0.8rem;
    }

    .footer-a4 img {
        width: 25px;
        height: 25px;
    }

    .footer-a {
        font-size: 1rem;
    }

}

@media screen and (max-width: 767px) {

    .navbar {
        flex-direction: column !important;
        align-items: center !important;
    }

    .nav-div ul {
        padding: 0;
    }

    .nav-logo {
        width: 120px;
    }

    .nav-div ul li {
        margin: 0 5px !important;
    }

    .nav-div ul li a {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }

    .os-video {
        height: 500px;
    }

    .os-p2 {
        font-size: 3rem !important;
    }

    .two-section {
        height: 800px;
    }

    .ts-div {
        width: 80%;
        top: 40%;
        display: flex;
        flex-direction: column;
    }

    .ts-img2 {
        width: 300px;
        top: 60%;
        right: 15%;
    }

    .ts-p,
    .ts-p2,
    .ts-p3 {
        text-align: center !important;
        white-space: normal !important;
    }

    .ts-div a {
        display: block;
        margin: 0 auto
    }

    .ths-p {
        text-align: center;
    }

    .ths-p2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .ths-p3 {
        font-size: 0.8rem;
    }

    .ths-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 25px;
    }

    .ths-p4 {
        white-space: normal;
        font-size: 0.6rem;
    }

    .fs-div {
        flex-direction: column;
    }

    .fis-div {
        width: 80%;
    }

    .fis-p {
        text-align: center;
    }

    .fis-p2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .fis-div2 {
        width: 100%;
    }

    .fis-hr {
        width: 25%;
    }

    .fis-p4 {
        width: 100%;
        text-align: center;
    }

    .fis-div3 {
        justify-content: center;
    }

    .ses-div {
        top: 40%;
    }

    .ses-p {
        font-size: 1rem;
    }

    .ses-div2 {
        width: 80%;
    }

    .ses-div2 svg {
        width: 80px;
    }

    .ses-p2 {
        font-size: 0.8rem;
    }

    .footer-div{
        margin: 15% auto 5% auto;
    }

    .footer-logo {
        width: 100px;
        height: 100px;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-div2 {
        width: 90%;
        margin: 15% auto 0;
    }

    .footer-div3,
    .footer-div4 {
        flex-direction: column;
    }

    .footer-div4>div:first-child {
        display: flex;
        flex-direction: column;
    }
}