body {
    background-color: #000000;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.profile-body {
    background-color: #ffffff;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@font-face{
    font-family: Quicksand-Regular;
    src: url("/assets/fonts/Quicksand-Regular.ttf");
}

@font-face{
    font-family: Quicksand-Bold;
    src: url("/assets/fonts/Quicksand-Bold.ttf");
}


#titleh1, #titleh2, #titleh3, #titleh4, #titleh5, #titleh6{
    color: #AF7B41 !important;
}

.titulo-principal{
    color: #AF7B41;
}

/*NAV*/

.navBorder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
}

.dropdown-toggle::after{
    border: none !important;
}

.iconWhiteNav{
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

#nav-btn{
    color: #ffffff !important;
    box-shadow: none; !important;
    border: none !important;
}

.dropdown-menu{
    min-width: auto !important;
    width: max-content !important;
    padding: 0 !important;
    background-color: rgba(245, 245, 245, 0.75) !important;
}

.parrafos{
    color: #AF7B41 !important;
}
/*FIN NAV*/

/*SCROLL*/

.reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: auto;
}

.reel-text {
    position: absolute;
    line-height: normal; !important;
    z-index: 2;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    width: 90%;
    max-width: 400px;
    padding: 0 15px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    box-sizing: content-box;
}

.profile-photo{
    margin-top: -5px;
}

.profile-text-container {
    display: flex;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    margin-bottom: 0px;
}

.reel-p{
    font-size: smaller;
    padding-top: 5px;
    padding-bottom: 0px;
}

.reel-title h4{
    margin: 0;
    font-size: medium;
    padding-bottom: 0px;
}


.swiper {
    position: fixed; !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.swiper-slide {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.slide-button {
    align-self: center;
    background-color: rgba(112, 199, 53, 0.96);
    color: #ffffff;
    border: none;
    padding: 10px 90px;
    border-radius: 30px;
    font-size: 20px;
    cursor: pointer;
    max-width: 300px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.profile-button {
    background-color: rgba(112, 199, 53, 0.96);
    color: #ffffff;
    border: none;
    padding: 10px;
    margin-left: 20px;
    border-radius: 30px;
    font-size: 20px;
    cursor: pointer;
    max-width: 200px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.reel-icons {
    position: absolute;
    line-height: normal; !important;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 24px;
    z-index: 3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    align-items: center;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 20%);
    z-index: 2;
    pointer-events: none;
}


.reel-icons i {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.reel-icons i:hover {
    transform: scale(1.2);
}


.reel-title {
    padding: 0%;
    color: white;
    margin: 0%;
}

.slide-button:hover {
    background-color: rgb(57, 176, 34);
}

/*BUBBLE*/

.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background-color: #39b022;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.chat-bubble img {
    width: 30px;
    height: 30px;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    height: 200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background-color: #39b022;
    color: white;
    padding: 15px;
    font-weight: bold;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-open .chat-window {
    display: flex;
}

/*FIN BUBBLE*/


/*CARRUSEL*/
.fb-carousel {
    position: fixed;
    top: 10px;
    width: 100%;
    padding: 10px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.fb-carousel-box{
    width: 120px;
    height: 170px;
    background-color: #afafaf;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*CARRUSEL*/

/*MEDIA*/

@media (min-width: 992px) {
    .navBorder {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background-color: rgba(115, 115, 115, 0.9) !important;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding-top: 1rem;
    }
    .container-nav {
        display: flex;
        flex-direction: column;
        background-color: rgba(115, 115, 115, 0.79);
        width: 100%;
        height: 100%;
    }
    .navbar-collapse {
        display: flex;
        flex-direction: column;
        width: 100%;
        flex-basis: auto!important;
    }
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding-left: 0.5rem;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: column !important;
    }

    .swiper {
        position: fixed !important;
        top: 200px;
        display: flex;
        left: 65%;
        height: 75%;
        transform: translateX(-50%);
        width: 500px;
        z-index: 1;
    }

    .navbar-nav .nav-link {
        display: flex; !important;
        flex-direction: column; !important;
        text-align: left;
        font-size: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        color: white;
    }
    .fb-carousel {
        margin-left: 140px;
    }
    .fb-carousel-box {
        width: 110px;
        overflow: hidden;
        position: relative;
    }
    .navbar-brand {
        padding-left: 1rem;
        margin-bottom: 1rem;
    }
    .reel-video {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (min-width: 1200px) {
    .fb-carousel {
        position: fixed;
        top: 10px;
        width: 100%;
        padding: 10px;
        margin-left: 0%;
        background-color: transparent;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .fb-carousel-box{
        width: 120px;
        background-color: #afafaf;
        color: white;
        font-size: 18px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
    }
    .navBorder {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background-color: rgba(115, 115, 115, 0.9) !important;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding-top: 1rem;
    }
    .container-nav {
        display: flex;
        flex-direction: column;
        background-color: rgba(115, 115, 115, 0.79);
        width: 100%;
        height: 100%;
    }
    .navbar-collapse {
        display: flex;
        flex-direction: column;
        width: 100%;
        flex-basis: auto!important;
    }
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding-left: 0.5rem;
    }

    .swiper {
        position: fixed !important;
        top: 200px;
        left: 50%;
        height: 75%;
        transform: translateX(-50%);
        width: 500px;
        z-index: 1;
    }

    .navbar-nav .nav-link {
        display: flex; !important;
        flex-direction: column; !important;
        text-align: left;
        font-size: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        color: white;
    }
    .navbar-brand {
        padding-left: 1rem;
        margin-bottom: 1rem;
    }
    .reel-video {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (min-width: 576px) and (max-width: 819px) {
    .navbar-nav .nav-link {
        font-size: 0.875rem;
        border: none;
    }
    .navbar-nav{
        background-color: rgba(255, 255, 255, 0.4) !important;
    }
    .swiper {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1;
    }
}

@media (max-width: 575.98px){
    .navbar-nav .nav-link {
        font-size: 0.75rem;
    }
    .navbar-nav{
        background-color: rgba(255, 255, 255, 0.4) !important;
    }
    .bento-item {
        height: 150px;
        padding: 1rem;
    }
    .bento-item h4 {
        font-size: 1rem;
    }
    .bento-cover {
        min-height: 210px !important;
    }
    .navBorder {
        background-color: transparent;
    }
    .swiper {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1;
    }
}

/*FIN MEDIAS*/