.panelesf {opacity: 0; width: 100%; margin: 20px 0;}
.p1 {margin-top: 130px;}

.esferapanel {
  position: relative;
  width: 85px;
  height: 85px;
  left: 10px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid rgba(0,0,0,.2);
  border-radius: 50%;}

.esferapanel img {
  opacity: 0;
  animation: iconesf .5s ease;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;}

.esferapanel:before {
  content: "";
  position: absolute;
  width: 70%;
  height: 48%;
  top: 2%;
  left: 15%;
  border-radius: 100%;
  background: linear-gradient(rgba(255,255,255,.75), transparent);
  transform-origin: 50% 100%;
  animation: rotaresf .5s ease;
  animation-delay: 2.3s;
  animation-fill-mode: forwards;}
  
.p1 .esferapanel {background: radial-gradient(#AEFF00, #6ABC00 50%);}
.p2 .esferapanel {background: radial-gradient(#FF3394, #B70057 50%);}
.p3 .esferapanel {background: radial-gradient(#00CCFF, #006ADF 50%);}
.p4 .esferapanel {background: radial-gradient(#FFDF31, #FF9000 50%);}

.panelesf .sombra {
  opacity: 0.2;
  display: block;
  position: absolute;
  left: 10px;
  bottom: -8px;
  width: 85px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 4px #000;}

.rotulotitulo {
  position: absolute;
  z-index: -1;
  left: 75px;
  top: 22px;
  width: auto;
  height: 45px;
  font-size: 18px;
  color: white;
  padding: 11px 18px 9px 35px;
  background: #222d32;}

.rotulotitulo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 0; 
  height: 0; 
  border-right: 33px solid transparent;
  border-top: 12px solid #171E1E;
  border-bottom: 12px solid transparent;}

.finalrotulo {
  position: absolute;
  z-index: -1;
  bottom: 5px;
  width: 40px;
  height: 45px;
  background: #222d32;}

.finalrotulo:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  border-right: 13px solid transparent;
  border-top: 13px solid #222d32;
  border-left: 13px solid #222d32;
  border-bottom: 13px solid transparent;}

.finalrotulo:after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  border-right: 13px solid transparent;
  border-top: 13px solid transparent;
  border-left: 13px solid #222d32;
  border-bottom: 13px solid #222d32;}

/*.mascaratitulo {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #676767;
  animation: anchomascara .6s ease-in;
  animation-delay: 2.3s;
  animation-fill-mode: forwards;}*/

@keyframes rotaresf {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}}

@keyframes iconesf {
  0% {opacity: 0;}
  100% {opacity: 1;}}

@keyframes anchomascara {
  0% {width: 100%;}
  100% {width: 0;}}