.elementor-15 .elementor-element.elementor-element-5416967{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:50px;--margin-bottom:50px;--margin-left:0px;--margin-right:0px;}.elementor-15 .elementor-element.elementor-element-ca5b981{text-align:center;}.elementor-15 .elementor-element.elementor-element-ca5b981 .elementor-heading-title{font-size:90px;font-weight:600;-webkit-text-stroke-width:2px;stroke-width:2px;-webkit-text-stroke-color:#FFC107;stroke:#FFC107;}.elementor-15 .elementor-element.elementor-element-035fb67 > .elementor-widget-container{margin:-20px 0px 0px 0px;}.elementor-15 .elementor-element.elementor-element-035fb67{text-align:center;}.elementor-15 .elementor-element.elementor-element-035fb67 .elementor-heading-title{font-size:20px;font-weight:400;line-height:1.2em;}.elementor-15 .elementor-element.elementor-element-fdc41f0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-15 .elementor-element.elementor-element-5416967{--content-width:1980px;}}@media(max-width:1024px){.elementor-15 .elementor-element.elementor-element-ca5b981 .elementor-heading-title{font-size:70px;}}@media(max-width:767px){.elementor-15 .elementor-element.elementor-element-035fb67 .elementor-heading-title{font-size:18px;}}/* Start custom CSS for html, class: .elementor-element-4c0407a */h1, h2 {
            text-align: center;
            margin: 50px 0;
        }

        .container {
            width: 90%;
            margin: 0 auto;
        }

        /* Estilo general para las tablas */
        .table {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background-color: white;
            padding: 20px;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .table-header {
            font-weight: bold;
            background-color: #f2f2f2;
            background-color: #FFC107;
            padding: 8px;
            text-align: center;
        }

        .table-item {
            padding: 8px;
            text-align: center;
            border: 1px solid #ddd;
            background-color: #fff;
        }

        /* Responsividad con CSS Grid */
        @media screen and (max-width: 768px) {
            .table {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .table-header {
                display: none;
            }

            .table-item {
                display: grid;
                grid-template-columns: 1fr 1fr;
                margin-bottom: 10px;
            }

            .table-item::before {
                content: attr(data-label);
                font-weight: bold;
                margin-right: 10px;
            }
        }/* End custom CSS */