/* WEBAPP */

@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@100;400;700&display=swap%27');

/* COLOR  */

:root {
    
    --color-textos: #000000;
    --color-prin: #CF6747;
    --color-1: #B7A599;
    --color-2: #FBE7D6;
    --color-3: #4E3A35;
    --color-4: #1D1D1B;
}


*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
    font-family: 'Poppins', sans-serif;
}

header {
    background-color: var(--color-3);
}

body {
    background-color: var(--color-1);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* MENU */

.navbar {
    width: 100%;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-branding {
    font-size: 2rem;
    color: var(--color-2);
}

.nav-link {
    transition: 0.7s ease;
    color: var(--color-2);
}

.nav-link:hover {
    color: var(--color-4);
}

.home {
    font-size: large;
    padding: 1px;
    width: 2em;
    cursor: pointer;
    outline: none;
    transition: 0.7s ease-in-out;
    background-color: var(--color-3);
    color: var(--color-2);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-2);
}

@media(max-width:768px){
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--color-3);
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

.botonesprincipales li a {
    background-color: var(--color-prin);
    display: block;
    padding: 0.6em;
    color: var(--color-2);
    border-radius: 7rem;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    width: 10em;
    text-align: center;
}

.botonesprincipales ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: .5em;
    margin: .5em;
}

h1 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    padding-top: 1em;
    padding-bottom: .3em;
    
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-2);
}

.section p {
    color: var(--color-2);
}

.section {
    display: block;
    background-color: var(--color-4);
    
    height: auto;
}

.imagen img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    padding: 0em;
    background-color: var(--color-4);
    
    object-fit: cover;
}

.imgcoloso {
    filter: grayscale(100%);
}

.tema {
    display: grid;
    grid-template-columns: 3fr 3fr;
    gap: .5em;
    justify-content: space-between;
    border-block-end: solid 1.5px var(--color-3);padding-block-end: 0.80em;
    margin-block-end: 0.50em;
    padding: .5em;

}


.section p {
    text-align: center;
    padding: 1em;
    display: block;
    color: var(--color-2);
    font-family: 'Cormorant Garamond', serif;
}

.section h2 {
    text-align: center;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1em;
}

/* ----------------------------------FOOTER---------------------------------- */
.footer {
    background-color: var(--color-4);
  
  }
  
  .containerFooter {
    width: min(70em, 100%);
    margin-inline: auto;
    padding: 1em 1em;
    color: var(--color-2);
  }
  
  .row {
    display: grid;
    gap: 1em;
    
    grid-template-columns: 1fr;
  }
  
  .col {
    display: flex;
    flex-direction: column;
    grid-column: 1fr;
  }
  
  .col h2 {
    font-family: 'Inter', sans-serif;;
    font-size: 2em;
    text-transform: uppercase;
  }
  
  .col h5 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: .5px;
    padding-block-end: 1em;
  }
  
  .col p {
    padding-block: 1em;
  }
  
  .social {
    display: flex;
    flex-direction: row;
    gap: 1em;
    font-size: 1.25em;
  }
  
  .fa-brands {
    background-color: rgba(255, 255, 255, 0.1);
    padding: .5em;
    border-radius: 2em;
  }
  
  .fa-solid {
    margin-inline-end: .5em;
  }
  
  .copyright {
    background-color: var(--color-textos);
    text-align: center;
    padding: 1em;
    color: #fff;
  }
  
  
  .copyright p {
    width: min(70em, 100%);
    margin-inline: auto;
    color: #fff;
}
  
  .copyright a {
    color: var(--color-2);
}
  
  .containerFooter li {
    padding-block-end: .5em;
    line-height: 1.5em;
  }
  
  .containerFooter ul li a{
    color: #fff;
    text-decoration: none;
  }
  
  .containerFooter ul li a:hover{
    color: var(--color-3);
    text-decoration: none;
  }
  
  footer .social a {
    color: #fff;
  }
  
  footer .col {
    padding-block: 1.5em;
  }


/*----------------------------------ARTE---------------------------------- */

p {
    padding: 1em;
    display: block;
    color: var(--color-4);
    font-family: 'Inter', sans-serif;
    font-size: 1em;
}

#slider-section {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-3);
  }
  
  .container {
    width: 1600px;
    margin: auto;
  }
  
  .subcontainer {
    width: 95%;
    margin: auto;
  }
  
  .slider-wrapper{
    position: relative;
  }
  
  .previous,
  .next {
    padding: 2px;
    width: 30px;
    cursor: pointer;
    outline: none;
    transition: 0.7s ease-in-out;
    background-color: var(--color-1);
    position: absolute;
    top: 50%;
  }
  
  .previous {
    left: 2%;
  }
  
  .next {
    right: 2%;
  }
  
  .previous:hover,
  .next:hover {
   background-color: var(--color-4);
  }
  
  #controls i {
    color: var(--color-2);
    font-size: 1rem;
  }
  
  .tns-nav {
    text-align: right;
  }
  
  .tns-nav button {
    border: none;
    padding: 8px;
    border-radius: 50%;
    background-color: var(--color-2);
    margin-left: 15px;
  }
  
  .tns-nav .tns-nav-active {
    background-color: var(--color-4);
  }
  
  /* DYNAMIC HTML */
  
  .slide{
    width: auto;
    height: fit-content;
  }
  
.slide img {
    width: 100%;
    height: 275px;
}
  
  @media(max-width:1600px) {
    .container {
      width: 100%;
    }
}

  /*----------------------------------CONTACTO----------------------------------*/

.container-contacto {
    width: min(52rem, 100%);
    margin-inline: auto;
    padding: 1em;
    padding-block-start: 3em;
}
  

  
.bodycontacto{
    background-color: rgb(255, 255, 255);
}
  
.container-contacto h2 {
    color: #1d1d1d;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  padding-block-end: .5em;
  font-weight: 800;
}
  
.container-contacto p {
    color: rgb(78, 78, 78);
    font-family: 'Inter', sans-serif;
    margin-block-end: 2em;
}
  
.submitcontacto{
    background-color: #CF6747;
    color: white;
    padding: 1em;
    margin-top: 2em;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: .1em;
    font-family: 'Inter',sans-serif;
}
  
.submitcontacto:hover{
    background-color: #B95F41;
    color: white ;
}
  
.strong-contacto {
    font-family: 'Inter',sans-serif;
}
  
  
  
.contenedoraform{
    display: flex;
    
    flex-direction: column;
  
    max-width:50em;
    margin: 0 auto;
    justify-content: space-between;
  }
  
  .formcontacto p {
  max-width: 50em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1em;
  color: #1d1d1d;
  padding-block: .5em;
  letter-spacing: .02em;
  }
  
  .arribacontacto{
    max-width: 50em;
    margin: 0 auto;
    padding-block-start: 7em;
  }
  
.arribacontacto, .formcontacto{
    padding-left: 1em;
    padding-right: 1em;
}
  
  
.arribacontacto h1 {
    color: #1d1d1d;
    font-family: 'Recursive', sans-serif;
    text-transform: uppercase;
    font-size: 4em;
    padding-block-end: .25em;
    text-align: center;
    line-height: 1em;
}
  
  
.arribacontacto p{
    margin-top: 1em;
    margin-bottom: 4em;
    color: rgb(78, 78, 78);
    font-family: 'Inter',sans-serif;
    text-align: center;
}
  
.fondoboton {
    outline: 1px solid #ccc;
    background-color: #f8f8f8;
    padding: 1em;
    width: 100%;
}
  
.fondoboton2 {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    outline: 1px solid #ccc;
    background-color: #f8f8f8;
}
  
.fondoboton:focus, .fondoboton2:focus {
    outline: 2px solid #1d1d1d;
}



/* PARTE DE TOMY */

:root {
    --color-5: #000000d8;
    --boxshadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  }
  
  .titulo h1 {
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      padding-top: 1em;
      padding-bottom: .5em;
      font-size: 2em;
  
      font-weight: bold;
      line-height: 1em;
  }
  
  .articuloprincipal {
      border-block-end: none 2px var(--color-3);
      padding-block-end: 1.3em;
      margin-block-end: .3em;
  
  }
  
  .articulopagina {
      border-block-end: none 2px var(--color-3);
      padding-block-end: 1.3em;
      margin-block-end: .3em;
      padding-block-start: 1em;
  
  }
  
  .textoprincipal p {
      text-align: center;
      padding: 1em;
      display: block;
      color: var(--color-4);
      font-family: 'Inter', sans-serif;
      font-size: 1em;
      }
      
  .textoprincipal {
          display: block;
          background-color: var(--color-2);
          border-bottom-left-radius: 1rem;
          border-bottom-right-radius: 1rem;
          box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
      }
      
  main {
          padding: 1em;
      }
  
  img {
          max-width: 100%;
          height: auto;
      
      }
  
  .section {
          padding: .5em;
      }
  
  .articulopagina {
          display: flex;
          flex-wrap: wrap;
          gap: 0em;
          justify-content: flex-start;
          flex-direction: column;
          align-items: center;
  
      }
  
  .subsection {
          display: block;
          background-color: var(--color-4);
          height: auto;
          border-radius: 7rem;
          margin-top: 1rem;
          width: 100%;
          height: auto;
          box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
      }
  
  .subsection h2 {
          text-align: center;
          padding: .3em;
          display: block;
          color: var(--color-2);
          font-family: 'Cormorant Garamond', serif;
      }
  
  .flecha p {
          background-color: var(--color-2);
          display: block;
          padding: 0.6em;
          color: var(--color-4);
          border-radius: 15rem;
          font-size: 1em;
          font-family: 'Inter', sans-serif;;
          line-height: 1em;
          width: 2.3em;
          text-align: center;
          justify-content: space-around;
      }
  
  .imagenarticulo img{
          display: block;
          width: 100%;
          padding: 0em;
          background-color: var(--color-4);
          object-fit: cover;
          border-top-left-radius: 1em;
          border-top-right-radius: 1em;
          box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
      }
  
      
  .imagenprincipal img {
      border-radius: 2rem;
      box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  
  }
  
  .imagengaleria img {
      display: block;
      width: 100%;
      padding: 0em;
      background-color: var(--color-4);
      object-fit: cover;
      border-radius: 2rem;
  }
  
  .textosecundario {
      display: block;
      background-color: var(--color-2);
      border-radius: 1em;
      box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  }
  
  .textosecundario p {
      text-align: center;
      padding: 1em;
      display: block;
      color: var(--color-4);
      font-family: 'Inter', sans-serif;
      font-size: 1em;
  }
  
  
  figcaption span {
      display: block;
      color: var(--color-2);
      margin-block-start: .5em;
      text-transform: none;
      font-size: .8em;
  }
  
  figcaption a {
      display: inline-block;
      margin-block-start: .5em;
      background-color: var(--color-1);
      color: var(--color-2);
      padding: .25em 1em;
      border-radius: 2em;
      margin-block-end: .7em;
      font-size: .8em;
  }
  
  
  figcaption a::after {
      content: " ACÁ ";
  }
  
  figure img {
      display: block;
  }
  
  /* PARTE DE HEADER QUE AGREGO TOMY */
  
  header {
      position: sticky;
      top: 0;
      z-index: 9999;
  }
  
  .nav-menu {
      left: 100%;
  }
  
  .navbar {
      box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  }
  
  
  /* GALERIA DE IMAGENES */
  
  .galeria {
      margin-inline: auto;
    }
    
    .slider {
      width: 100%;
      height: max(400px, 50vh);
      position: relative;
      overflow: hidden;
    }
    
    .slide {
      width: 100%;
      height: 100%;
      position: absolute;
      transition: all 0.5s;
  
    }
    
    .slide img {
      border-radius: .25em;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top 50%;
      border-radius: 2rem;
      box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }
    
    .btn {
      position: absolute;
      z-index: 10;
      top: 1em;
    
      width: 2.5em;
      aspect-ratio: 1;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      background-color: hsl(210 29% 30% / 0.75);
      color: white;
      font-size: 1.1em;
      opacity: .75;
    }
    
    .btn:active,
    .btn:hover {
      opacity: .9;
      border: solid 1px white;
    }
    
    .btn-prev {
      left: calc(100% - 6.25em);
    }
    
    .btn-prox {
      right: 1em;
    }
  
  
  
  /* ACORDEON FINAL */
  
  .containerFluid {
      width: 100%;
      margin-top: .5em;
    }
    
    .containerFluid h2 {
      position: relative;
      width: 100%;
      text-align: center;
      padding: .3em;
      display: block;
      color: var(--color-2);
      font-family: 'Cormorant Garamond', serif;
    }
    
    .containerFluid h2::after {
      position: absolute;
      content: "";
      bottom: 0;
      right: 12px;
      width: 67px;
      height: 2px;
    }
    
    .accordion {
      width: 100%;
      padding: .3em;
      cursor: pointer;
      display: flex;
      align-items: center;
      background-color: var(--color-4);
      height: auto;
      border-radius: 7rem;
  
      height: auto;
      margin-bottom: .3em;
  
      box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }
  
    
    .accordion .icon {
      margin: 0 10px 0 0;
      width: 30px;
      height: 30px;
      background: url(https://raw.githubusercontent.com/Tusar78/responsive-accordion/main/images/toggle-bg.png)
        no-repeat 8px 7px var(--color-3);
      border-radius: 50%;
      float: left;
      transition: all 0.5s ease-in;
    }
    
    .accordion h5 {
      font-size: 22px;
      margin: 0;
      text-align: center;
      padding: .1em;
      color: var(--color-2);
      font-family: 'Cormorant Garamond', serif;
    }
    
    .containerFluid .active {
      background-color: var(--color-3);
      color: #fff;
    }
    
    .containerFluid .active .icon {
      background: url(https://raw.githubusercontent.com/Tusar78/responsive-accordion/main/images/toggle-bg.png)
        no-repeat 8px -25px #fff;
    }
    
    .panel {
      padding: 0 0em;
      
      text-align: left;
      overflow: hidden;
      max-height: 0;
      transition: all 0.3s ease-in;
  
      background-color: var(--color-2);
      border-radius: 1em;
  
      color: var(--color-4);
      font-family: 'Inter', sans-serif;
      font-size: 1em;
  
      box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }
  
    .panel p {
      padding: 1em;
    }
  
  
  /* DATO EXTRA */
  
  .datoextra .accordion {
      width: 100%;
      padding: .3em;
      cursor: pointer;
      display: flex;
      align-items: center;
      background-color: var(--color-3);
      height: auto;
      border-radius: 7rem;
      justify-content: center;
      box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }
    
  .datoextra .accordion h5 {
      font-size: 22px;
      margin: 0;
      text-align: center;
      padding: .1em;
      color: var(--color-2);
      font-family: 'Cormorant Garamond', serif;
  
    }
    
  .containerFluid .datoextra .active {
      background-color: var(--color-4);
      color: #fff;
    }
    
  .datoextra .active .icon {
      background: url(https://raw.githubusercontent.com/Tusar78/responsive-accordion/main/images/toggle-bg.png)
        no-repeat 8px -25px #fff;
    }
    
  .datoextra .panel {
      padding: 0 0em;
      
      text-align: left;
      overflow: hidden;
      max-height: 0;
      transition: all 0.3s ease-in;
  
      background-color: var(--color-2);
      border-radius: 1em;
  
      color: var(--color-4);
      font-family: 'Inter', sans-serif;
      font-size: 1em;
    }
  
  .datoextra .panel p {
      padding: 1em;
    }
  
  
  /* VIDEO */
  
  .video iframe {
      border-radius: 2em;
      width: 100%;
      aspect-ratio: 16/9;
  }
  
  /* CARTEL DE PREGUNTAS SOBRE CUESTIONARIO */
  
  .textosecundario span {
      margin-left: 5.1em;
      display: block;
      color: var(--color-2);
      margin-block-start: .5em;
      text-transform: none;
      background-color: var(--color-4);
      border-radius: 2em;
      width: 7em;
      font-size: 1.2em;
  }
  
  .textosecundario span:hover {
      background-color: var(--color-3);
  }
  
  /* FORMULARIO */
  
  .formulario label  {
      font-family: 'Cormorant Garamond', serif;
  
      font-size: 30px;
      margin: 0;
      padding: .1em;
      color: var(--color-2);
  
  }
  
    .formulario {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .formulario .container {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      padding: 20px;
      box-shadow: 0px 0px 20px #00000010;
      background-color: var(--color-4);
      border-radius: 1em;
      margin-bottom: 20px;
    }
    .formulario .form-group {
      width: 100%;
      margin-top: 20px;
      font-size: 20px;
    }
    .formulario .form-group input,
    .formulario .form-group textarea {
      width: 100%;
      padding: 5px;
      font-size: 18px;
      border: 1px solid rgba(128, 128, 128, 0.199);
      margin-top: 5px;
    }
    
    .formulario textarea {
      resize: vertical;
    }
    .formulario button[type="submit"] {
      width: 100%;
      border: none;
      outline: none;
      padding: 20px;
      font-size: 24px;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      color: var(--color-4);
      text-align: center;
      cursor: pointer;
      margin-top: 10px;
      transition: 0.3s ease background-color;
    }
    .formulario button[type="submit"]:hover {
      background-color: rgb(214, 226, 236);
    }
    .formulario #status {
      width: 90%;
      max-width: 100px;
      text-align: center;
      padding: 10px;
      margin: 0 auto;
      border-radius: 8px;
    }
    .formulario #status.success {
      background-color: rgb(211, 250, 153);
      animation: status 4s ease forwards;
    }
    .formulario #status.error {
      background-color: rgb(250, 129, 92);
      color: white;
      animation: status 4s ease forwards;
    }
    @keyframes status {
      0% {
        opacity: 1;
        pointer-events: all;
      }
      90% {
        opacity: 1;
        pointer-events: all;
      }
      100% {
        opacity: 0;
        pointer-events: none;
      }
    }
  
  /* LINEA DE TIEMPO */
  
  .content h2 {
      color: var(--color-4);
      font-family: 'Inter', sans-serif;
      font-size: 1em;
  }
  
  .timeline {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background-color: var(--color-2);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
    }
    
    .containeres {
      padding: 10px 40px;
      position: relative;
      background-color: inherit;
      width: 50%;
    }
    
    .timeline .containeres::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      right: -17px;
      background-color: var(--color-2);
      border: 4px solid var(--color-3);
      top: 15px;
      border-radius: 50%;
      z-index: 1;
    }
    
    .left {
      left: 0;
    }
    
    .right {
      left: 50%;
    }
    
    .left::before {
      content: " ";
      height: 0;
      position: absolute;
      top: 22px;
      width: 0;
      z-index: 1;
      right: 30px;
      border: medium solid white;
      border-width: 10px 0 10px 10px;
      border-color: transparent transparent transparent white;
    }
    
    .right::before {
      content: " ";
      height: 0;
      position: absolute;
      top: 22px;
      width: 0;
      z-index: 1;
      left: 30px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent white transparent transparent;
    }
    
    .right::after {
      left: -16px;
    }
    
    .content {
      padding: 20px 30px;
      background-color: var(--color-2);
      position: relative;
      border-radius: 6px;
    }
    
    @media screen and (max-width: 600px) {
  
      .timeline::after {
        left: 31px;
      }
    
      .containeres {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }
    
      .containeres::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--color-2) transparent transparent;
      }
    
      .left::after, .right::after {
        left: 15px;
      }
    
      .right {
        left: 0%;
      }
    }
  
  
  /* EL LUGAR / IMAGEN CON TEXTO*/
  
  .snip1361 {
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    color: var(--color-2);
    text-align: left;
    line-height: 1.4em;
  }
  .snip1361 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  .snip1361 img {
    max-width: 100%;
    vertical-align: top;
    border-radius: 2em;
  }
  .snip1361 figcaption {
    position: absolute;
    top: calc(80%);
    width: 100%;
    background-color:var(--color-5);
    padding: 15px 25px 65px;
  
    border-radius: 1em;
  }
  .snip1361 figcaption:before {
    position: absolute;
    content: '';
    z-index: 2;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-image: -webkit-linear-gradient(top, transparent 0%, #ffffff 100%);
    background-image: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  }
  .snip1361 h3,
  .snip1361 p {
    margin: 0 0 10px;
  }
  .snip1361 h3 {
  
    font-size: 1.4em;
    line-height: 1.2em;
    font-family: 'Cormorant Garamond', serif;
  }
  .snip1361 p {
    font-size: 0.9em;
    opacity: 0.9;
  }
  .snip1361 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .snip1361:hover figcaption,
  .snip1361.hover figcaption {
    top: 80px;
  }
  
  /* OPINION PRINCIPAL */
  
  .opinionprincipal {
    margin-bottom: 1.5em;
  }
  
  .fotocircular img {
    display: block;
    border-radius: 20rem;
    width: 130px;
    aspect-ratio: 1/1;
  }
  
  .circulartitulo span {
    display: block;
    font-size: 1.3em;
  }
  
  .circulartitulo h3 {
    text-align: left;
    padding: .3em;
    display: block;
    color: var(--color-4);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5em;
  }
  
  .fotoytitulo {
    display: flex;
    gap: 0em;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-1);
    padding: 1em ;
    border-radius: 1em;
  
  }
  
  .opinionprincipal {
    background-color: var(--color-2);
    padding: 1em;
    border-radius: 1em;
  }
  
  
  .textodecircular p {
    background-color: var(--color-3);
    color: var(--color-2);
    padding: 1em;
    border-radius: 1em;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    margin-top: .5em  ;
  
  }
  
  .anio h5 {
    background-color: var(--color-4);
    width: 6em;
    padding: .5em;
    color: var(--color-2);
    border-radius: 1em;
    margin-top: .5em;
    justify-content: center;
    text-align: center;
    justify-items: center;
  }
  
  .imagenrepetida img {
    border-radius: .5em;
  }
  
  /* ARTICULOS DE PAGINAS */
  
  .contenedordenotas {
    display: grid;
    gap: .5em ;
    grid-template-columns: 1fr 1fr;
    border-radius: 1em;
    margin-top: .4em;
  
  }
  
  .paginaweb {
    margin-top: .5em;
  }
  
  .ficaptionlogos {
    background-color: var(--color-2);
    padding: 1em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
  
    text-align: left;
    display: block;
    color: var(--color-textos);
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    width: 100%;
  }
  
  .paginaweb img {
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    width: 100%;
    aspect-ratio: 1/1;
  }
  
  .ficaptionlogos span {
    font-family: 'Inter', sans-serif;
    color: var(--color-4);
    font-size: 1.2;
  }
  
  /* ARTICULO LARGO */
  
  .articulocompleto {
    background-color: var(--color-2);
    padding: 1em ;
    border-radius: 1em;
    box-shadow: var(--boxshadow);
  }
  
  .tituloarticulo h3 {
    font-family: 'Inter', sans-serif;
    color: var(--color-4);
    font-size: 1.2;
    margin-block-end: .5em;
    position: sticky;
    top: 2em;
    margin-top: .5em  ;
  
  
  }
  
  .tituloarticulo {
    border-block-end: 4px solid var(--color-3);
    margin-block-end: 1em;
    position: sticky;
    top: 4.3em;
    background-color: #FBE7D6;
    padding-block-start: .2em;
  }
  
  .articulocompleto p {
    color: var(--color-4);
    font-size: 1em;
    padding-bottom: .5em  ;
    padding-top: .3em ;
    font-family: 'Inter', sans-serif;
  
  }
  
  /* MIRA LA NOTA COMPLETA ACA */
  
  .notacompleta {
    display: block;
    background-color: var(--color-2);
    border-radius: 1em;
    box-shadow: var(--boxshadow);
    width: 100%;
    margin-top: .5em ;
  }
  
  .notacompleta p {
    text-align: center;
    padding: 1em;
    display: block;
    color: var(--color-4);
    font-family: 'Inter', sans-serif;
    font-size: 1em;
  }
  
  .notacompleta span {
    margin-left: 5.3em;
    display: block;
    margin-block-start: .5em;
    text-transform: none;
    background-color: var(--color-4);
    border-radius: 2em;
    width: 6em;
    font-size: 1.2em;
  }
  
  .notacompleta span:hover {
    background-color: var(--color-3);
    color: var(--color-2);
  }
  
  .notacompleta a {
    color: var(--color-2);
  }
  
  .notacompleta a:hover {
    color: var(--color-4);
  }
  
  .notacompleta a::after {
    content: "Abierto  ✓";
    margin-left: .5em;
  }
  
  /*COMENTARIOS Y OPINIONES */
  
  .avatar img {
    width: 90px;
    border-radius: 50em;
    box-shadow:var(--boxshadow) 
  }
  
  .comentarios {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1em;
    align-items: center;
    justify-items: start;
  
    background-color: var(--color-2);
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    width: 100%;
    margin-top: 1em;
  }
  
  .nombreavatar h2 {
    font-family: 'Inter', sans-serif;
    color: var(--color-4);
    font-size: 1.2;
  }
  
  .nombreavatar p {
    text-align: left;
    margin-bottom: .4em;
    display: block;
    color: var(--color-textos);
    font-family: 'Inter', sans-serif;
    font-size: 1em;
  }
  
  .nombreavatar .fecha {
    color: var(--color-3);
  }
  
  .opiniontexto {
    background-color: var(--color-2);
    padding: .5em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    width: 100%;
  }
  
  .opiniontexto p {
    text-align: left;
    margin-bottom: .4em;
    display: block;
    color: var(--color-textos);
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    padding: .5em;
  }
  
  /* RECIBIDO */
  
  
          .recibido h1 {
            color: var(--color-3);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 1em;
            font-size: 4em;
            margin-bottom: 10px;
            text-align: left;
          }
  
          .recibido p {
            color: #404F5E;
            font-family: 'Inter', sans-serif;
            font-size:20px;
            margin: 0;
          }
          .recibido i {
          color: var(--color-3);
          font-size: 100px;
          line-height: 200px;
          margin-left: .5em;
        }
        .card {
          background: var(--color-2);
          padding: 3em;
          border-radius: 3em;
          box-shadow: 0 2px 3px #C8D0D8;
        }
  
        .recibido {
          margin: 1em;
          padding: 1em;
        }
  


            /* GUADA  */

.textoprincipal p {
  text-align: left;
  padding: 1em;
  display: block;
  color: var(--color-4);
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  }

figure.imagenarticulo {
  padding-top: 1em;

}



  .tema {
      display: grid;
      grid-template-columns: 3fr 3fr;
      gap: .5em;
      justify-content: space-between;
     
      padding: .5em;
      padding-top: 2em;
  
  }

  .carpetas {
      padding-top: 2em;
  }
  



  /* quizas te interese  */
    

  #quizasteinteresecontenedor {
      overflow-x:auto;
      display: flex;
      flex-direction: row;
      height: 250px;
     
    }
    
    .tituloquizas h2 {
      padding-bottom: 1em;
      padding-top: 1em;
      color: #fff;
     
      font-family: 'Cormorant Garamond', serif;
      padding-left: .4em;
      
    }

    #quizasteinterese h3 {
      font-weight: 1em;
    }

    .tallerquizas {
      background-color:rgb(77, 66, 66);
    }
  
    #quizasteinterese #quizasteinteresecontenedor .tallerquizas div {
      width: 200px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      margin-bottom: 0px;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }
    #quizasteinterese #quizasteinteresecontenedor .tallerquizas {
      position: relative;
      width: 215px;
      height: 215px;
      border-radius: 8px;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
        0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
        0 16px 16px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      margin: 0px 10px 0px 10px;
      padding: 15px;
    }
   

/* Galeria de imagenes  */

         

  .galeria {
      height: calc( 200px + 3em);
      width: 300px;
      margin:1em auto;
      border: 1px solid #555;
      position: relative;  
    }
    
    .galeria img {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 3s;
    }
    
    .galeria input[type=radio] {
      position: relative;
      bottom: calc(-210px - 1.5em);
      left: .5em;
    }
    
    .galeria input[type=radio]:nth-of-type(1):checked ~ img:nth-of-type(1) {
      opacity: 1;
    }
    
    .galeria input[type=radio]:nth-of-type(2):checked ~ img:nth-of-type(2) {
      opacity: 1;
    }
    
    .galeria input[type=radio]:nth-of-type(3):checked ~ img:nth-of-type(3) {
      opacity: 1;
    }
    
    .galeria input[type=radio]:nth-of-type(4):checked ~ img:nth-of-type(4) {
      opacity: 1;
    }


/* Linea de Tiempo  */


.contenido-historia {
  font-family: 'Poppins', sans-serif;
}

.tiempo{
  padding: .25rem 1.25rem .25rem;
  background-color:  #caa6a6;
  font-size: 1em;

}

 .card{
  padding: 1.5rem 1.5rem 1.25rem;
  
  border-radius: 2px;
  border-left: 3px; 
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 1px 2px 0 rgba(0, 0, 0, .24);
  background-color: #FBE7D6
}

  
.card__contenido{
  margin-top:  1em;
}

.lineadetiempo{
  display: grid;
  grid-row-gap: 2rem;

  --uiTimelineMainColor: var(--timelineMainColor, #222);
  --uiTimelineSecondaryColor: var(--timelineSecondaryColor, #fff);

  border-left: var(--timelineLineWidth, 3px) solid var(--timelineLineBackgroundColor, var(--uiTimelineMainColor));
  padding-top: 1rem;
  padding-bottom: 1.5rem;

  --timelineMainColor: #69505c;
}

.lineadetiempo_año{
  background-color: #5e4c4c;
  color: #FBE7D6;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.25rem;

  padding: .5rem 1.5rem;
}

.lineadetiempo__cards{
  display: grid;
  grid-row-gap: 1.5rem;
  overflow: hidden;
  padding-top: 2em;
}
 

.lineadetiempo__card{
  position: relative;
  margin-left: 1rem;
}
 
.lineadetiempo__card::before{
  content: "";
  width: 100%;
  height:  2px;
  background-color: var(--timelineCardLineBackgroundColor, var(--uiTimelineMainColor));

  position: absolute;
  top: 1rem;
  left: -50%;
  z-index: -1;
}

/* Video  */
.videoperonismo iframe {
  border-radius: 2em;
  width: 100%;
  aspect-ratio: 16/9;
  padding-top: 1em;
  padding-bottom: 1em;
}

