/* Estilo general */
*{
    padding: 0px ;
    margin: 0px ;
    box-sizing: border-box;  
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Centra el texto */
    font-family:"Cinzel Decorative", sans-serif;
   
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
   
}

/* Estilo para la barra de navegación */

.navbar {
    background-color: #333;
    overflow: hidden;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Estilo para el contenido */

#Blog{
    margin-top: 100px;
}


.content {
    margin-top: 20px;
}

/* Estilo para las imágenes */

img {
    max-width: 60% !important;
    height: auto;
     
    margin-bottom: 10px; /* Espacio debajo de la imagen */
}

/* Estilo para las entradas del blog */

.blog-entry {
    
    margin-bottom: 120px;
    border-bottom: 1px solid #ddd;
}

.blog-entry h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-entry p {
    font-size: 16px;
    color: #333;
    text-align: right;
    font-family:"Cinzel Decorative", sans-serif;
    text-transform: none !important;

}

.blog-entry .author {
    font-style: italic;
    color: #666;
    font-family:"Cinzel Decorative", sans-serif;
    margin-bottom: 130px !important;
    
}



#blog_titulo{
    font-size: 3em !important;
    font-family:"Cinzel Decorative", sans-serif !important;
    margin-bottom: 50px;
}

#blog_subtitulo{
    font-family:"Cinzel Decorative", sans-serif !important;
    font-size: 18px;
    margin-bottom: 90px;
}

#texto_blog{
    text-transform: lowercase !important;
    margin-bottom: 60px;
}

#texto_autor{
    margin-bottom: 40px;
}






.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 600px;
    background: #f5f5f5;
    box-shadow: 0px 30px 50px #bddbdb;}

.container .slide .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px ;
    box-shadow: 0 30px 50px #5e5e5e;
}    
    
.nav-container {
    background: #213401 ;
    height: 44px;
    z-index: 300;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

.nav-container nav {
    width: 100vw;
    margin: 0 auto;
    padding: 0 8px;
    height: 100%;
    padding-top: 0px;
}

nav .desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav .desktop-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 400ms;
    font-family:"Cinzel Decorative", sans-serif;
    
}

nav .desktop-nav li a:hover {
    opacity: 1;
}

/*.link-logo {
    background: url('images/apple-logo.svg');
    display: block;
    background-position: center;
    height: 44px;
    width: 15px;
    background-repeat: no-repeat;
}

.link-search {
    background: url('images/search-icon.svg');
    display: block;
    background-position: center;
    background-size: 18px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

.link-bag {
    background: url('images/bag-icon.svg');
    display: block;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
} */

.link-close {
    background: url('images/close-icon.svg');
    display: block;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

/* Search Container */

.search-container.hide {
    opacity: 0;
    pointer-events: none;
}

.search-container {
    width: 60%;
    margin: 0 auto;
    padding: 0 42px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.search-container .link-search {
    position: absolute;
    left: 12px;
    opacity: 0.5;
}

.search-container .link-close {
    position: absolute;
    top: 0;
    right: 12px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 400ms;
}

.search-container .link-close:hover {
    opacity: 0.7;
}

.search-container form {
    width: 100%;
    margin: 0 auto;
}

.search-container form input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-family:"Cinzel Decorative", sans-serif;
    font-size: 17px;
}

/* Overlay */

.overlay.show {
    position: fixed;
    background: rgba(0, 0, 0, 0.48);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

/* Quick Links */

.search-container .quick-links {
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    padding: 16px 8px;
    border-radius: 0 0 16px 16px;
}

.search-container .quick-links h2 {
    text-transform: uppercase;
    font-size: 12px;
    color: #6e6e73;
    margin: 0 32px;
    margin-top: 10px;
}

.search-container .quick-links ul {
    list-style: none;
    margin-top: 12px;
}

.search-container .quick-links ul li a {
    display: inline-block;
    width: 100%;
    padding: 8px 50px;
    font-size: 14px;
    color: #1d1d1f;
    text-decoration: none;
    font-family:"Cinzel Decorative", sans-serif;
    font-weight: 200;
}

.search-container .quick-links ul li a:hover {
    background: #f5f5f5;
    color: #2997ff;
}

/* Desktop Nav Animation */

.desktop-nav li {
    transition: all 400ms ease;
}

.desktop-nav.hide li {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Overlay Animation */

.overlay {
    transition: all 400ms ease;
}

/* Navigation Menu Items Transition Delay */

.desktop-nav li:nth-of-type(1),
.desktop-nav.hide li:nth-of-type(10) {
    transition-delay: 0ms;
}

.desktop-nav li:nth-of-type(2),
.desktop-nav.hide li:nth-of-type(9) {
    transition-delay: 30ms;
}

.desktop-nav li:nth-of-type(3),
.desktop-nav.hide li:nth-of-type(8) {
    transition-delay: 60ms;
}

.desktop-nav li:nth-of-type(4),
.desktop-nav.hide li:nth-of-type(7) {
    transition-delay: 90ms;
}

.desktop-nav li:nth-of-type(5),
.desktop-nav.hide li:nth-of-type(6) {
    transition-delay: 120ms;
}

.desktop-nav li:nth-of-type(6),
.desktop-nav.hide li:nth-of-type(5) {
    transition-delay: 150ms;
}

.desktop-nav li:nth-of-type(7),
.desktop-nav.hide li:nth-of-type(4) {
    transition-delay: 180ms;
}

.desktop-nav li:nth-of-type(8),
.desktop-nav.hide li:nth-of-type(3) {
    transition-delay: 210ms;
}

.desktop-nav li:nth-of-type(9),
.desktop-nav.hide li:nth-of-type(2) {
    transition-delay: 240ms;
}

.desktop-nav li:nth-of-type(10),
.desktop-nav.hide li:nth-of-type(1) {
    transition-delay: 270ms;
}

/* Search Container Animation */

.search-container form,
.search-container .link-search {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 300ms;
}

.search-container.hide form,
.search-container.hide .link-search {
    opacity: 0;
    transform: translateX(50px);
}

.search-container .link-search {
    opacity: 0.6;
}

.search-container.hide .link-close {
    opacity: 0;
}

.search-container .link-close {
    opacity: 0.5;
    transition: all 400ms ease;
    transition-delay: 400ms;
}

.search-container.hide .quick-links h2 {
    opacity: 0;
    transform: translateX(50px);
}

.search-container .quick-links h2 {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 100ms;
}

.search-container.hide .quick-links ul li {
    transform: translateX(60px);
    opacity: 0;
}

.search-container .quick-links ul li {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
}

.search-container .quick-links ul li:nth-of-type(1) {
    transition-delay: 120ms;
} 

.search-container .quick-links ul li:nth-of-type(2) {
    transition-delay: 140ms;
} 

.search-container .quick-links ul li:nth-of-type(3) {
    transition-delay: 160ms;
} 

.search-container .quick-links ul li:nth-of-type(4) {
    transition-delay: 180ms;
} 

.search-container .quick-links ul li:nth-of-type(5) {
    transition-delay: 200ms;
} 


/* Hidden Items */

.mobile-nav,
.mobile-search-container {
    display: none;
}


/* Media Queries */

@media (max-width: 1100px) {
    .nav-container nav {
        width: 100%;
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .nav-container .desktop-nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0vh;
        background: #213401;
        justify-content: start;
        overflow: hidden;
        z-index: -1;
        transition: all 1000ms ease;
    }

    .nav-container.active .desktop-nav {
        height: 100vh;
    }

    .nav-container .desktop-nav li {
        width: 100%;
        padding: 0 32px;
    }

    .nav-container .desktop-nav li:first-child {
        margin-top: 120px;
    }

    .nav-container .desktop-nav .link-logo,
    .nav-container .desktop-nav .link-search,
    .nav-container .desktop-nav .link-bag {
        display: none;
    }

    .nav-container .desktop-nav li a {
        padding: 16px 0;
        display: inline-block;
        border-bottom: 1px solid #616161;
        width: 100%;
        font-size: 17px;
        transform: translateY(-80px);
        opacity: 0;
        transition: all 700ms ease;
    }

    .nav-container.active .desktop-nav li a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile Nav */

    nav .mobile-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        list-style: none;
    }

    nav .menu-icon-container {
        width: 20px;
        height: 44px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    nav .menu-icon {
        position: relative;
        width: 100%;
    }

    nav .menu-icon .line-1,
    nav .menu-icon .line-2 {
        position: absolute;
        height: 1px;
        width: 100%;
        background: #fff;
        transition-property: transform, top;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    nav .menu-icon .line-1 {
        top: -4px;
    }

    nav .menu-icon .line-2 {
        top: 4px;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-1 {
        top: 0;
        transform: rotateZ(45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-2 {
        top: 0;
        transform: rotateZ(-45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    /* Bag Icon Animation */

    .nav-container.active .mobile-nav .link-bag {
        transform: translateY(8px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-container .mobile-nav .link-bag {
        transition: all 1000ms ease;
    }



    /* Search Box */

    .mobile-search-container input {
        width: 100%;
        padding: 12px 36px;
        font-family:"Cinzel Decorative", sans-serif;
        font-size: 17px;
        background: #1b1b1b;
        border: 0;
        color: #fff;
        border-radius: 8px;
        outline: none;
    }

    .mobile-search-container {
        position: relative;
        padding: 0 16px;
        margin-top: -30px;
        border-bottom: 1px solid #616161;
        display: flex;
        padding-bottom: 16px;
        align-items: center;
        transform: rotateX(90deg);
        opacity: 0;
        transition: all 600ms ease;
    }

    .nav-container.active .mobile-search-container {
        transform: rotateX(0deg);
        margin-top: 10px;
        opacity: 1;
    }

    .mobile-search-container .link-search {
        position: absolute;
        left: 24px;
        opacity: .5;
        background-size: 15px;
    }

    /* Nav Move Up */

    .nav-container nav.move-up {
        margin-top: -40px;
    }

    /* Cancel Button */

    .mobile-search-container .cancel-btn {
        color: #2997ff;
        font-size: 17px;
        font-weight: 400;
        cursor: pointer;
        width: 0px;
        overflow: hidden;
        transition: all 400ms ease;
    }

    .mobile-search-container .search-bar.active + .cancel-btn {
        padding: 0 16px;
        width: 74px;
    }

    .mobile-search-container .search-bar {
        flex: 1;
    }

    /* Desktop Nav Move Down */

    nav .desktop-nav.move-down li:first-child {
        margin-top: 150px;
    }

    nav .desktop-nav.move-down li {
        opacity: 0;
        pointer-events: none;
    }

    
    /* Quick Links */

    .mobile-search-container .search-bar.active ~ .quick-links {
        top: 80px;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 40ms;
    }

    .mobile-search-container .quick-links {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 32px;
        opacity: 0;
        pointer-events: none;
        top: 10px;
        transition: all 400ms ease;
    }

    .mobile-search-container .quick-links ul {
        list-style: none;
    }

    .mobile-search-container .quick-links h2 {
        color: #86868b;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .mobile-search-container .quick-links ul li a {
        padding: 16px 0;
        display: inline-block;
        text-decoration: none;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #616161;
        width: 100%;
    }

    .mobile-search-container .quick-links ul li a:hover {
        color: #2997ff;
    }

    /* Nav Animation */

    .nav-container nav {
        transition: all 400ms ease;
    }
}


input,
div,
span,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Estilos para el submenú */
.sub-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
}

.sub-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sub-menu li {
    padding: 12px 16px;
    text-decoration: none;
    font-family:"Cinzel Decorative", sans-serif;
    display: block;
    color: #333;
}

/* Estilos para mostrar el submenú al pasar el mouse en la versión de escritorio */
.desktop-nav .menu-item:hover .sub-menu {
    display: block;
}

/* Estilos para mostrar el submenú como desplegable en la versión de tablet y móvil */
@media screen and (max-width: 1024px) {
    .sub-menu {
        display: none;
    }

    .sub-menu.active {
        display: block;
    }

   

.desktop-nav .menu-item:hover .sub-menu {
    display: block;
}}




/*FOOTER*/
.footer {
    width: 100%;
    height: 120px;
    background-color: #213401;
    color: #fff; /* Cambia el color del texto a blanco */
    display: flex; /* Usa flexbox para alinear elementos */
    justify-content: space-around; /* Espacio uniformemente los elementos */
    align-items: center; /* Centra verticalmente los elementos */
    font-family:"Cinzel Decorative", sans-serif;
    padding-bottom: 0%;
    margin-bottom: 0%;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    font-family:"Cinzel Decorative", sans-serif;
}

.footer-menu p {
    width: 500px;
    margin: 5px 10; /* Añade un pequeño margen entre los enlaces */
    font-size: 10px !important;
    font-family:"Cinzel Decorative", sans-serif;
    letter-spacing: 7px;

}

.footer-text a{
    color: #ffff;
    font-size: 10px !important;
    font-family:"Cinzel Decorative", sans-serif;
    text-decoration: none;
}

.social-icons {
    display: flex;
    width: 600px;
    align-items: center;
    margin-left:7% ;
}

.insta, .face, .tik {
    margin-right: 18px; /* Añade un pequeño margen entre los íconos */
    
}

.insta-img, .face-img {
    width: 76px !important; /* Reducir el tamaño de las imágenes */
    height: 76px !important;

}

.tik-img {
    width: 66px !important;
    height: 66px !important;
}





.copyright {
    width: 340px;
    padding-right: 0%;
    margin-right: 0 !important; /* Mueve el texto del copyright hacia la derecha */
    padding-right: 20px; /* Añade un pequeño margen a la derecha */
    font-size: 10px;
    font-family:"Cinzel Decorative", sans-serif;
}

.enlace{
    width: 150px;
    height: 100px;
}

.logo-arjona{
    width: 150px ;
    height: 100px ;
    
}



.logo-arjona img{
    width: 150px !important;
    height: 100px !important;
}






/* ABOUT US PAGE */


.section-aboutme{
    width: 100%;

}
.section-aboutme .container-about{
    width: 80%;
    display: block;
    margin: 0 auto;
   padding: 50px 0px;

}
.container-about .title-about{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;

}
.container-about .title-about h1{
text-transform: uppercase;
font-size: 35px;
color: #88941e;

}
.container-about .title-about h1::after{
    content: "";
    width: 180px;
    height: 5px;
    margin: auto;
    color: black;
    background-color: black;
    display: block;
   
}
.content{
    float: left;
   width: 55%;
}
.image-section{
    width: 40%;
    float: right;
}
.image-section img{
    width: 100%;
    height: auto;

}
.content .article h3{
    color:#222;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: .8px;
font-size: 19px;

}
.content .article p{
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.5;
    color: #333;

}
.content .article .button{
    margin-top: 50px;

}
.content .article .button a{
    text-decoration: none;
    padding: 8px 25px;
    background-color:#88941e;
    border-radius: 40px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.5px;

}
.content .article .button a:hover{
    color: #fff;
    background-color:#f28f92;
    transition: 1s ease;

}
.container .social{
    width: 100%;
    clear: both;
    margin-top: 50px;
    text-align: center;
    display: inline-block;

}
.container .social i{
    color: #fff;
    font-size: 22px;
    height: 45px;
    width: 45px;
    background-color: rgb(199, 88, 88);
    border: 2px solid black;
    border-radius: 50%;
    align-items: center;
    line-height: 45px;
    text-align:center;
    margin-top:  0 10px;

}
.container .social i:hover{
    color: cornflowerblue;
    background-color: darkgray;
    transition: 1s ease;
    transform: rotate(360deg);

}
/* medai screen and */

@media screen and (max-width:768px){
    .section .container{
        width: 80%;
        display: block;
        margin: auto;

    }
    .content{
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }
    .image-section{
        float: none;
        width: 100%;
        margin-top: 50px;

    }
    .image-section img{
        width: 100%;
        height: auto;
        display: block;
        margin: auto;

    }
    .container .title h1{
        text-align: center;
        font-size: 30pxpx;

    }
    .container .article .button{
        text-align: center;

    }
    .container .article .button a{
        padding: 6px 15px;
        font-size: 16px;

    }
    .container .social i{
        font-size: 19px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        
    }

    
}