/* CSS Document */
.img1{
    margin-bottom: -200px!important;
    margin-top:30px;
}
.identificador {
    margin-top: 20px; 
    margin-bottom: 30px!important;
    padding-top: 20px;
    padding-bottom: 50px;
    width: 100%;
    height: auto;
    background: -webkit-linear-gradient(top left, #FF372F, #FF751B);
    background: -o-linear-gradient(top left, #FF372F, #FF751B);
    background: linear-gradient(to bottom right, #FF372F, #FF751B);
    border-radius: 0 0 0 0!important;
    clip-path: polygon( 0% 0%, 700% 0%, 0% 100%);
    z-index: 0!important;    
}

.titulo{
    color: #FF421D;
    text-align: center;
    font-size: 28px!important;
}
.p1{
    margin-bottom: 20px!important;
    margin-top:-80px;
    padding-bottom: 10px;
    padding-top: 20px;
    padding-left: 10px;
    border-radius: 50px;    
    background-color: #F6F3F3;    
    text-align: center;
}
.p2{
    margin-bottom: 30px!important;
    margin-top:30px;
    padding-bottom: 10px;
    padding-top: 20px;
    padding-left: 10px;
    border-radius: 50px;    
    background-color: #F6F3F3;    
    text-align: center;
}
.text1{
    font-size: 22px;
    text-align: justify;
}
.text2{
    font-size: 22px;
    text-align: justify;
    color: #FF421D;
}
.text3{
    font-size: 22px;
    text-align: center;
}
/*Gráficas*/
.chart-container {
    width: 90%;
    max-width: 1200px;
    height: 500px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    border: 1px solid #F6AC09;
}
.chart-legend {
    width: 90%;
    max-width: 1200px;
    height: auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    border: 1px solid #F6AC09;
}

canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.button-group button {
    margin: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #F6AC09, #0056b3);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.button-group button:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}
/*gráfica PIE*/
@-webkit-keyframes bake-pie {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes bake-pie {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
.pie-chart {
  font-family: "Open Sans", Arial;
}
.pie-chart--wrapper {
  width: 400px;
  margin: 30px auto;
  text-align: center;
}
.pie-chart__pie, .pie-chart__legend {
  display: inline-block;
  vertical-align: top;
}
.pie-chart__pie {
  position: relative;
  height: 200px;
  width: 200px;
  margin: 10px auto 35px;
}
.pie-chart__pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: #EEE;
  border-radius: 50%;
  top: 50px;
  left: 50px;
}
.pie-chart__pie::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 3px 4px rgba(0, 0, 0, 0.1);
  margin: 220px auto;
}

.slice {
  position: absolute;
  width: 200px;
  height: 200px;
  clip: rect(0px, 200px, 200px, 100px);
  -webkit-animation: bake-pie 1s;
          animation: bake-pie 1s;
}
.slice span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
}

.pie-chart__legend {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  background: #FFF;
  padding: 0.75em 0.75em 0.05em;
  font-size: 13px;
  box-shadow: 1px 1px 0 #DDD, 2px 2px 0 #BBB;
  text-align: left;
  width: 65%;
}
.pie-chart__legend li {
  height: 1.25em;
  margin-bottom: 0.7em;
  padding-left: 0.5em;
  border-left: 1.25em solid black;
}
.pie-chart__legend em {
  font-style: normal;
}
.pie-chart__legend span {
  float: right;
}

.pie-charts {
  display: flex;
  flex-direction: row;
}
@media (max-width: 500px) {
  .pie-charts {
    flex-direction: row;
  }
}

