@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #c5a059; /* Elegant Gold */
    --accent-hover: #b08d4a;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: var(--bg-body);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3, .title-seccion {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}
/** efecto entrada **/
  .entrada{
    opacity: 0;
    animation-name:animacion;
    animation-duration:1s;
    opacity: 1;}
    
@keyframes animacion {
    0% {opacity: 0;}
    20% {opacity: 0.2;}
    40% {opacity: 0.4;}
    60% {opacity: 0.6;}
    80% {opacity: 0.8;}
    100% {opacity: 1;}
}
/** fin de entrada **/
.oculto{display: none;}
.caja-negra {
    background: var(--primary);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    height: 35px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.promo-bar {
    background: var(--accent);
    color: var(--primary);
    position: fixed;
    top: 35px;
    width: 100%;
    height: 30px;
    z-index: 1045;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.marquee-wraper {
    display: flex;
    width: 200%;
    animation: marquee-move 20s linear infinite;
}

.marquee-text {
    flex-shrink: 0;
    width: 50%;
    text-align: center;
}

@keyframes marquee-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.caja-logo-menu {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 65px; /* (35px top bar + 30px promo bar) */
    left: 0;
    width: 100%;
    z-index: 1040;
    padding: 15px 40px;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.img-logo {
    height: 60px;
    transition: var(--transition);
}

.btn-menu {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 15px;
    transition: var(--transition);
}

.btn-menu:hover {
    color: var(--accent);
}

.caja-dos-menu {
    position: fixed;
    top: 155px; /* Adjusted (65px header + padding) */
    left: 0;
    width: 100%;
    background: var(--primary);
    z-index: 1030;
    box-shadow: var(--shadow);
}

.link-menu {
    color: var(--accent); /* Elegant Gold instead of white */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 15px;
    display: block;
    transition: var(--transition);
}

.link-menu:hover {
    color: white;
    text-decoration: none;
    background: rgba(197, 160, 89, 0.1);
}

.caja-link-menu {
    padding: 0 !important;
}




.title-silider{
    color: var(--main-rojo);
    font-weight: bold;
    font-size: 45px;
}
.sub-slider{
    color:black;
    font-size: 25px;
}
.caja-mensaje{
    font-size: 35px;
    text-align: center;
    color: var(--main-base-oscura);
}
.sub-mensaje{
    font-size: 20px;
}
.parrafo-msj{
    line-height: 30px;
}

.ico-redes{
    height: 35px;
    width: 25px;
    padding: 5px 10px;
    background: var(--main-base-oscura);
    border-radius: 20px 20px;
    font-size: 25px;
    color: white;
}
.ico-redes:hover{
    color: var(--main-base-clara);
}
.title-seccion {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.title-seccion::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.caja-tarjeta {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    padding: 0;
}

.caja-tarjeta:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.img-tarjeta {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.btn-directorio {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-directorio:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
    text-decoration: none;
}

.caja-noticia {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.caja-noticia:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    cursor: pointer;
}

.img-noticia {
    border-radius: 12px;
}

.title-notica {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin-top: 15px;
}
.cabecera-pie {
    background: var(--primary);
    color: white;
    padding: 40px 0;
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.btn-amarillo {
    background: var(--accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-amarillo:hover {
    background: var(--accent-hover);
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
}
.menu-pestanna{
       height: 100vh;
     width: 100%;
    position: fixed;
    z-index: 1010;
}
.transparente{
    background: rgba(255, 255, 255, 0.6);
     height: 100vh;
     width: 100%;
      cursor: pointer;
}
.cuerpo-menu{
    background: var(--main-rojo);
     height: 100vh;
     width: 100%;
     border-left: 1px solid white;
    
}

.pestanna-menu{
 
    display: none;
}
.pestanna-menu-activo{
     top: 0;
    right: 0;
    z-index: 2000;
    animation-name:despliegue;
    animation-duration:0.5s;
    width: 100%;
    }
    
    
@keyframes despliegue {
    0% { width:  0%;}
     100%  {width: 100%;}
}

.title-menu-desple{
    color: white;
    font-size: 25px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding-bottom: 10px;
   
}
.buscador{
 width: 100% ;
 border-radius: 5px 5px;
 outline: none;
}
.lupa{
    color: white;
    transition: all 500ms ease;
}
.lupa:hover{
    color: white;
   font-size: 22px;
}
.items-menu-desplegable{
     color: white;
    font-size: 18px;
    padding-top: 15px;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid white; 
    cursor: pointer;
}
.nav-mobile .items-menu-desplegable {
    color: var(--accent); /* Elegant Gold instead of white */
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: var(--transition);
}

.nav-mobile .items-menu-desplegable:hover {
    padding-left: 10px;
    color: var(--accent);
}

.cuerpo-menu {
    background: var(--primary);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.text-accent {
    color: var(--accent) !important;
}

.btn-accent {
    background: var(--accent) !important;
    color: var(--primary) !important; /* Navy text on Gold background for contrast */
    border-radius: 50px;
    padding: 8px 25px !important;
    margin-left: 15px;
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--accent-hover) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.btn-outline-accent {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 30px;
}

.input-formu {
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid var(--border);
    margin-bottom: 15px;
    width: 100%;
    transition: var(--transition);
}

.input-formu:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
    outline: none;
}
.hero-section {
    margin-top: 130px; /* 35px top bar + 95px menu */
    background: #000;
}

.hero-section .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .hero-section { margin-top: 120px; }
}

.welcome-section .display-4 {
    color: var(--primary);
    letter-spacing: -1px;
}

.store-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.card-img-wrapper {
    height: 180px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.store-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.promo-card-wrapper img {
    transition: var(--transition);
    border-radius: 12px;
}

.promo-overlay {
    display: none !important; /* Remove overlay that covers banners */
}

.promo-card-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.badge-accent {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.caja-logo-menu.scrolled {
    padding: 8px 40px;
    box-shadow: var(--shadow);
}

.caja-logo-menu.scrolled .img-logo {
    height: 45px;
}

@media (max-width: 992px) {
    .title-seccion { font-size: 1.75rem; }
    .display-4 { font-size: 2.25rem; }
}


.container-silider .swiper-slide img{
    cursor: pointer;
   display: block;
    width: 100%;
    height: 180px;
    object-fit: contain;
    
    z-index: 1000;
 }
.container-silider .swiper-slide .card-description{
    padding:1rem 1rem;
    height: 100x;
}
.container-silider .swiper-slide .card-title,.container .swiper-slide .card-text{
   margin-bottom: .5rem;
   font-size: 14px;
}
.container-silider .swiper-slide .card-link{
   text-align: center;
  
}
.container-silider .swiper-slide .card-link a{
    text-decoration: none;
    color: #1d6ce2;
    position: absolute;
    bottom: 10px;
    left: 15px;
}
.swiper-button-next{
    right: 26px !important;

}
.swiper-button-prev{
    left: 26px !important;
}
/**Fin slider de tarjetas**/


@media (max-width: 992px) {
.modal-title{
    font-size: 16px;
}
.parrafo-msj{
    font-size: 30px;
}
.title-seccion{
    font-size: 20px;
}
}

.site-footer {
    background: #020617; /* SOBER: Midnight Navy almost black */
    color: #94a3b8;
}

.site-footer h3, .site-footer h5 {
    color: #f8fafc !important;
}

.site-footer .text-accent {
    color: var(--accent) !important;
}
