@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, images, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, th, p { 
margin:0; padding:0; border:0; outline:0; font-weight: inherit; font-style: inherit; list-style:none; list-style-image:none; list-style-type:none; outline:none;}

@font-face {
    font-family: 'QuicksandLight';
    src: url('Quicksand_Light-webfont.eot');
    src: url('Quicksand_Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('Quicksand_Light-webfont.woff') format('woff'),
         url('Quicksand_Light-webfont.ttf') format('truetype'),
         url('Quicksand_Light-webfont.svg#QuicksandLight') format('svg');
    font-weight: normal;
    font-style: normal;

}

  /* Contenedor principal */
  .centro {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 600px;
    margin-top: -300px; /* Centrado vertical */
    width: 1046px;
    margin-left: -523px; /* Centrado horizontal */
    background: url(/images/fnd-suma.jpg) no-repeat;
  }
  
  /* Estilos para los elementos dentro del contenedor */
  
  .izq {
    float: left;
  }
  
  .der {
    float: right;
  }
  
  .logo {
    float: left;
    padding: 60px 0 0 95px;
  }
  
  .logo img {
    border: none;
  }
  
  .email {
    float: right;
    padding: 19px 40px 0 0;
    width: 600px;
    color: #FFF;
    font-size: 13px;
    text-align: right;
    margin-top: -10px;
  }
  
  .email a {
    color: #FFF;
    text-decoration: none;
  }
  
  .empresas {
    float: right;
    padding: 410px 0 0 200px;
    width: 700px;
  }
  
  .empresas img {
    margin: 0 0 0 30px;
    border: none;
  }
  
  .inicio {
    float: left;
    padding: 352px 0 0 0;
    width: 150px;
    height: 68px;
  }
  
  .inicio img {
    border: none;
  }
  
  .texto {
    color: #000;
    font-size: 14px;
    float: right;
    text-align: right;
    width: 720px;
    padding: 210px 40px 0 0;
    line-height: 25px;
    margin-top: -10px;
  }

  :root {
    --clr-neon: hsl(194, 81%, 30%);
    --clr-bg: hsl(0, 0%, 100%);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
    
  .canal-denuncias-btn {
    font-size: 4rem;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: var(--clr-neon);
    border: var(--clr-neon) 0.125em solid;
    padding: 0.25em 1em;
    border-radius: 0.25em;
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em currentColor;
    box-shadow: inset 0 0 0.5em 0 var(--clr-neon),
    0 0 0.5em 0 var(--clr-neon);
    position: relative;
  }
  
  .canal-denuncias-btn::before {
    pointer-events: none;
    content: "";
    position: absolute;
    background: var(--clr-neon);
    top: 120%;
    left: 0;
    width: 100%;
    height: 100%;
  
    transform: perspective(1em) rotateX(40deg)
    scale(1, 0.35);
    filter: blur(1em);
    opacity: 0.7;
  }
  
  .canal-denuncias-btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 2em 0.5em var(--clr-neon);
    opacity: 0;
    background-color: var(--clr-neon);
    z-index: -1;
    transition: opacity 100ms linear;
  }
  
  .canal-denuncias-btn:hover,
  .canal-denuncias-btn:focus {
    color: var(--clr-bg);
    text-shadow: none;
  }
  
  .canal-denuncias-btn:hover::before,
  .canal-denuncias-btn:focus::before {
    opacity: 1;
  }
  .canal-denuncias-btn:hover::after,
  .neon-button:focus::after {
    opacity: 1;
  }
  