
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Unbounded:wght@200..900&display=swap');

@font-face{font-family:'Source Serif 4';font-style:normal;font-weight:200 900;font-display:swap;font-optical-sizing:auto;src:url(https://gauchazh.clicrbs.com.br//static/fonts/source-serif4/source-serif4.woff2) format('woff2')}@font-face{font-display:swap;font-family:'IBM Plex Sans';font-style:normal;font-weight:400;src:url(https://gauchazh.clicrbs.com.br//static/fonts/ibm-plex-sans/ibm-plex-sans-regular.woff2) format('woff2')}@font-face{font-display:swap;font-family:'IBM Plex Sans';font-style:normal;font-weight:500;src:url(https://gauchazh.clicrbs.com.br//static/fonts/ibm-plex-sans/ibm-plex-sans-500.woff2) format('woff2')}@font-face{font-display:swap;font-family:'IBM Plex Sans';font-style:normal;font-weight:600;src:url(https://gauchazh.clicrbs.com.br//static/fonts/ibm-plex-sans/ibm-plex-sans-600.woff2) format('woff2')} 

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

:root{
    --yellow: #ffcc00;
    --yellow--dark:#d7af00;
    --yellow-brown: #948135;
    --yellow-gold: #E0C451;
    --black: #222;
    --white: #fff;
    --light--gray: #eee;
    --gray: #bbb;
    --dark--gray: #707070;




    --rt-color-success: #8dc572;
    --rt-color-error: #be6464;
    --rt-color-warning: #f0ad4e;
    --rt-color-info: #337ab7;


    --purple--zh2: #831F82;
    --green--esporte: #67AD2F;
    --green--vida: #00998C;
    --orange--donna: #EC6608;
    --red--donna: #E50051;
    --purple--donna: #494495; 
    --ocre--destemperados: #af4b2b;

    --gremio:#099ae9;
    --gremio--dark:#0f3059;
    --gremio--light:#0d80bf;
    --inter:#e5050f;
    --inter-dark:#8F0E1D;
    --inter--light:#f14b45;

    --rosa:#E051D6;
    --ciano-verde:#51E0D1;
    --verde-musgo:#618B87;
    --marrom-cinza:#615E53;
    --vinho-cinza:#615360;
    --azul-roxo: #6265A1;
    --cereja: #E05451;
}


.material-symbols-sharp {  
  font-variation-settings:
  'FILL' 1,
  'wght' 700,
  'GRAD' 0,
  'opsz' 20
}


body{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.title{
    width: 100%;
    position: relative;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
    font-style:normal;
}

.title h1{
    font-size: 1.5rem;
    padding: .2rem 0;
    font-weight: 900;
}

.title::before{
    content: '';
    width: 30%;
    max-width: 100px;
    display: block;
    border-top: 8px solid var(--yellow);
}

.title::after{
    content: '';
    width: 30%;
    max-width: 100px;
    display: block;
    border-bottom: 1px solid var(--gray);
}

.info {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--dark--gray);
    background-color: var(--light--gray);
    padding: 5px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.subtitulo{
    font-family: 'Lato', sans-serif;
    font-style:normal;
    font-weight: 900;
}

.legenda{
    font-family: 'IBM Plex Sans', sans-serif;
    font-style:normal;
    font-weight: 400;
    font-size: .8rem;
}

main.main-container {
    padding: 0 .2rem;
}

main.main-container p{
    padding: .5rem 0;
}

.bold{
    font-weight: 600;
}

.hairline{
    font-weight: 300;
}

.uppercase {
    text-transform: uppercase;
} 

.subtitulo{
    text-transform: uppercase;
}

.numero-destaque{
    border-left: 1px solid var(--gray);
    padding: 0 30% 0 .5rem;
    margin: 1rem 0;
}

.numero-destaque h2{
    color: var(--yellow--dark);
    font-size: 1.5rem;
}

/*====================================
TIMELINE
====================================*/


/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light--gray);
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 5%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .container {
    padding: 10px 30px;
    position: relative;
    background-color: inherit;
    width: 95%;
  }
  
  /* The circles on the timeline */
  .container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    right: -12px;
    background-color: white;
    border: 4px solid var(--yellow--dark);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  /* .left {
    left: 0;
  } */
  
  /* Place the container to the right */
  .right {
    left: 5%;
  }
  
  /* Add arrows to the left container (pointing right) */
  /* .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 20px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
  } */
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 20px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -12px;
  }
  
  /* The actual content */
  .content {
    padding: 15px ;
    background-color: white;
    position: relative;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .content-text,
  .content-img{
    width: 100%;
    flex: 1;
  }

  .content h2{
    border-bottom: 1px solid var(--gray);
    padding-bottom: .4rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--yellow-brown);
  }

  .content h3{
    padding-bottom: .2rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin: .4rem 0;
  }

  .content img {
    width: 100%;
  }

  .content .credito-foto {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: .6rem;
    text-transform: uppercase;
    text-align: right;
    padding: 0;
    color: #a0a0a0;
    margin-top: 1rem;
  }

  @media screen and (min-width:500px) {
      .content {
        padding: 15px ;
        background-color: white;
        position: relative;
        border-radius: 6px;
        display: flex;
        flex-direction: row;
      }
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
    left: 31px;
    margin-left: -7px;
    }
    
    /* Full-width containers */
    .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container::before {
    left: 10px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    /* .left::after, .right::after {
    left: 15px;
    } */
    
    /* Make all right containers behave like the left ones */
    .right {
    left: 9%;
    }
  }

  ul{
    list-style-type: none;
    margin-left: 15px;
}

ul li{
    position: relative;
    margin-bottom: 5px;
}

ul li::before {
    content: "■";
    position: absolute;
    top: -2px;
    left: -15px;
    color: var(--yellow-brown);
}