@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}
html, body {
    min-height: 100vh;
    color: #837165;
    font-family: Raleway, sans-serif;
background: linear-gradient(90deg, #fcfdfe 0%, #e8e6e0 100%);
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}
.site-main {
    margin-top: 55px !important;
    flex: 1;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.page-gallery {
    text-align: center;
    align-content: center;
    padding: 20px;
    text-shadow:
    2px 2px 3px #888;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.gallery-title {
    text-align: center;
    color: #837165;
    position: relative;
    top: 3vh;
    text-shadow:
    2px 2px 3px #888;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.centered-1600 {
    width: min(1200px, 100%);
    margin: 0 auto;
    text-align: center;
    padding: 16px;
}
.site-footer {
    flex-shrink: 0;
    padding: 20px 0;
    text-align: center;
    background: var(--dsk);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 72px;
    margin-top: auto;
}
.site-footer a {
    margin: 0 1rem;
}
.site-footer img {
    transition: transform 0.2s ease;
}
.site-footer img:hover {
    transform: scale(1.3);
}
section{
display:flex;
flex-grow: 1;
}


/*////////////////////////////////  NAVEGACIÓN PRINCIPAL */ 

:root{ 
--dsk: rgba(232, 230, 224, 0.1); 
--col1: #837165; 
--col2: #c4bbb2; 
--col3: #e8e6e0; }

/*////////////////////////////////  Navbar Principal */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dsk);
    backdrop-filter: blur(5px);
    color: var(--col2); transition: all 0.8s ease;
    z-index: 1000;
}
.navbar.oculto {
    transform: translateY(-100%);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}


/*////////////////////////////////  Logo */
.logo {
    font-weight: bold;
    font-size: 1.5rem;
}
.logo img {
    transition: transform 0.8s ease;
}
.logo img:hover {
    transform: scale(1.1);
}
/* Menú Desktop */
.nav-menu {
    display: flex;
 align-items: center;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    text-decoration: none;
    color: #837165;
    transition: transform 0.8s ease !important;
}
.nav-menu a:hover {
    font-weight: 800;
    transform: scale(1.1) !important;
}
.nascosto {
    display: none;
}


/*////////////////////////////////  Fonts */

.f-th {
    font-weight: 100;
}
.f-xl {
    font-weight: 200;
}
.f-lt {
    font-weight: 300;
}
.f-rg {
    font-weight: 400;
}
.f-md {
    font-weight: 500;
}
.f-sb {
    font-weight: 600;
}
.f-bd {
    font-weight: 700;
}
.f-xb {
    font-weight: 800;
}
.f-bk {
    font-weight: 900;
}
h1 {
    font-size: clamp(2.4883rem, 2.0237rem + 2.0648vw, 3.624rem);
    line-height: 90%;
    letter-spacing: -0.01em;
    padding-bottom: 8px;
}
h2 {
    font-size: clamp(2.0736rem, 1.7359rem + 1.501vw, 2.8992rem);
    line-height: 86%;
    letter-spacing: -0.02em;
    padding-bottom: 8px;
}
h3 {
    font-size: clamp(1.728rem, 1.4861rem + 1.0752vw, 2.3193rem);
    line-height: 90%;
    letter-spacing: -0.01em;
    padding-top: 8px;
}
h4 {
    font-size: clamp(1.44rem, 1.27rem + 0.7554vw, 1.8555rem);
    line-height: 110%;
    letter-spacing: -0.01em;
    padding-top: 8px;
}
h5 {
    font-size: clamp(1.2rem, 1.0837rem + 0.517vw, 1.4844rem);
    line-height: 115%;
    letter-spacing: -0.01em;
    padding-bottom: 8px;
}
h6 {
  font-size: clamp(1rem, 0.9233rem + 0.3409vw, 1.1875rem);
  line-height: 125%;
  letter-spacing: 0.01em;
  padding-bottom: 8px;
}
p, html {
  font-size: clamp(0.8333rem, 0.7856rem + 0.2121vw, 0.95rem);
  line-height: 115%;
  letter-spacing: normal;
}

small {
  font-size: clamp(0.6944rem, 0.6676rem + 0.1192vw, 0.76rem);
  line-height: 125%;
}

.t-wr {
    max-width: 1600px;
    width: 90%;
    word-wrap: break-word;
    margin: 0 auto;
}

.interletra01{
letter-spacing:0.01em;
line-height:120%;
}

.local {
font-weight: 900;
position: relative;
}

.local::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
}

/* FONDO////////////////////////////////////*/

body#index-page {
    background-image: url('../img/portada-dktp.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    overflow: hidden;
}
@media (max-width: 767px) {
    body#index-page {
        background-image: url('../img/portada-celu.webp');
    }
}
/* /////--- RESPONSIVE (MOBILE) --- */
@media (max-width: 768px) {
    main section article {
        max-width: 100%;
        overflow: visible;
    }
    .gallery-title {
        top: 2.5vh;
    }
    .nav-menu {
        gap: 18px!important;
text-align:right;
    }
}