﻿   /* Contenedor que ocupa toda la pantalla para centrar */
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
        }
        .contenedor {
            display: flex;
            justify-content: center; /* centra horizontal */
            align-items: center;     /* centra vertical */
            height: 100%;
        }
  /* Estilos del botón */
        .boton-animado {
            display: inline-block;
            padding: 15px 30px;
            font-size: 18px;
            color: #fff;
            background-color: #FAB800;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, background-color 0.3s ease;
        }

        /* Efecto hover: agranda un poco y cambia color */
        .boton-animado:hover {
            background-color: #D59A00;
            transform: scale(1.05);
        }

        /* Efecto al presionar (active) */
        .boton-animado:active {
            transform: scale(0.98);
        }

        /* Animación de “onda” al hacer clic */
        .boton-animado::after {
            content: "";
            position: absolute;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            pointer-events: none;
            transition: width 0.4s ease, height 0.4s ease, opacity 0.8s ease;
            opacity: 0;
        }

        .boton-animado.clic .boton-animado::after {
            width: 200px;
            height: 200px;
            opacity: 0;
        }