/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 08 2025 | 22:30:04 */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Teko:wght@300..700&display=swap');

:root {
    --color-primary: #E21E22;
    --color-secondary: #0D0D0D;
    --color-background: #F0F0F3;
	--menu-height: 80px; /* Altura del menú */
}

::selection {
    background: var(--color-primary);
    color: white;
}

body {
    font-family: 'Abel', sans-serif !important;
	background:white;
}
.link-contact{
	color: white;
	font-size:18px;
}
.link-contact span{
	margin-right:8px;
}
.link-contact:last-of-type{
	margin-right:72px;
}
.link-contact:hover{
	color: var(--color-primary);
}
.link-contact:visited,
.link-contact:active {
    color: var(--color-primary);
}

.button-send{
	background: var(--color-primary);
	color:white;
	margin-left: 40%;
	border-radius:5px;
}
.button-send:hover{
	background: var(--color-secondary);
}
/*************footer *************/

footer {
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    max-width: 100%;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.logo-section img {
    width: 100px;
    height: auto;
}

.logo-section p {
    max-width: 200px;
    font-size: 14px;
    margin-top: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 25px;
    text-transform: uppercase;
	text-align: left;
	color:red;
}

.footer-section ul.left-align {
    list-style: none;
    padding: 0;
    text-align: left !important;
}

.footer-section ul.left-align li {
    margin-bottom: 10px;
	margin-left: -48px !important;
}

.footer-section ul.left-align li a {
    color: white;
    text-decoration: none;
    display: block;
    transition: color 0.3s, transform 0.3s;
	
}


.buy-now {
    color: white;
    background-color: #ff0000;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.buy-now:hover {
    background-color: white;
    color: #d80027;
    transform: scale(1.1);
}

.contact-section p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-section p i {
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #ccc;
    max-width: 1200px;
    margin: auto;
}


/* Aplica un fondo negro al header y padding lateral */
.ast-desktop .ast-primary-header-bar.main-header-bar,
.ast-header-break-point #masthead .ast-primary-header-bar.main-header-bar {
    padding-left: 14px;
    padding-right: 24px;
    background-color: black; /* Fondo sólido negro */
    opacity: 1; /* Asegura que el header no sea transparente */
}


/****************************menu ************************/
.menu {
    width: 100%;
    background-color: var(--color-primary);
    height: var(--menu-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Asegura que el menú esté encima de otros elementos */
    border-radius: 5px;
}

.menu-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-link {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 1.2em;
    flex: 1;
    text-align: center;
    transition: color 0.3s, transform 0.3s; /* Agregar transición */
}

.menu-logo {
    width: 150px;
    height: 40px; /* Ajusta la altura del logo según tus necesidades */
    flex-shrink: 0; /* Evita que el logo se reduzca */
    margin: 0 20px; /* Espacio alrededor del logo */
}

.menu-link:hover {
    font-weight: bold;
    color: var(--color-secondary); /* Cambiar color al pasar el ratón */
    transform: scale(1.1); /* Aumentar ligeramente el tamaño */
}

/* Hacer el menú responsive */
@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-link {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .menu-logo {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .menu {
        height: auto;
        flex-direction: column;
    }

    .menu-container {
        padding: 10px;
    }

    .menu-link {
        font-size: 1em;
        padding: 8px 0;
    }

    .menu-logo {
        width: 120px;
        height: auto;
        margin: 10px 0;
    }
}


/* Estilos base para el modal */
#open-modal {
    font-size: 1em;
    cursor: pointer;
    margin: 20px;
}

.modal-overlay {
    display: none; /* Ocultar por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fondo sombreado */
    justify-content: center;
    align-items: center;
    z-index: 1001; /* Encima del menú */
}

.modal-content {
    position: relative;
    padding: 40px;
    max-width: 85%;
    max-height: 85%;
    width: 90%;
    height: 98%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19); /* Sombra atractiva */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.5em;
    cursor: pointer;
}

#youtube-video {
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Queries para hacer el modal responsive */
@media (max-width: 1024px) {
    .modal-content {
        padding: 30px;
        max-width: 90%;
        max-height: 90%;
        width: 95%;
        height: auto;
    }

    .close-btn {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        max-width: 95%;
        max-height: 95%;
        width: 98%;
    }

    .close-btn {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 15px;
        max-width: 98%;
        max-height: 98%;
        width: 100%;
        height: auto;
    }

    .close-btn {
        font-size: 1.5em;
    }
}

/********************* page home *************************/
.title_main h1{
	font-size: 6.5em;
	font-family: 'Teko', sans-serif !important;
	font-weight:bold;
}

.text-conten span{
	font-size: 20px;
}

/*********** calendario *****************/

.calendar {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            margin: 20px 0;
        }
        .calendar th, .calendar td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: center;
        }
        .calendar th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .month-header {
            background-color: #4CAF50;
            color: white;
            font-size: 1.2em;
        }
        .event-row:nth-child(even) {
            background-color: #f9f9f9;
        }
        .event-row:nth-child(odd) {
            background-color: #fff;
        }
        .team {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .team img {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .calendar th, .calendar td {
                padding: 4px;
            }
            .month-header {
                font-size: 1em;
            }
            .team img {
                width: 16px;
                height: 16px;
                margin-right: 4px;
            }
        }

        @media (max-width: 480px) {
            .calendar th, .calendar td {
                padding: 2px;
                font-size: 0.8em;
            }
            .month-header {
                font-size: 0.9em;
            }
            .team {
                flex-direction: column;
            }
            .team img {
                margin-right: 0;
                margin-bottom: 4px;
            }
        }

/*****************equipo ********************/

.card-container {
            position: relative;
            width: 100%;
            max-width: 300px;
            height: 300px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .card-container:hover {
            transform: scale(1.05);
        }
        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            box-sizing: border-box;
        }
        .card-container:hover .card-overlay {
            opacity: 1;
			cursor:pointer;
        }
        .card-overlay h3 {
            margin: 0;
            margin-bottom: 10px;
            font-size: 28px;
            font-weight: bold;
			text-align:center;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #ff8c00, #ffa500, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .card-overlay p {
            margin: 5px 0;
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .card-container {
                max-width: 80%;
                height: auto;
            }
            .card-overlay p {
                font-size: 16px;
            }
        }

/************************* EL gran juego ********************/

 .custom-card-container {
            display: flex;
            justify-content: space-around;
            width: 100%;
            margin: 20px 0;
        }
        .custom-card {
            position: relative;
            width: 350px;
            height: 450px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .custom-card:hover {
            transform: scale(1.05);
        }
        .custom-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .custom-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .custom-card:hover .custom-card-overlay {
            opacity: 1;
        }
        .custom-card-overlay h3 {
            margin: 0;
            margin-bottom: 10px;
            font-size: 24px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #ff8c00, #ffa500, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .custom-gallery {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 20px 0;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .custom-gallery img {
            width: 30%;
            margin: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .custom-gallery img:hover {
            transform: scale(1.05);
        }
        .custom-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            .custom-card-container {
                flex-direction: column;
                align-items: center;
            }
            .custom-gallery img {
                width: 100%;
            }
        }

/************************ card tienda ********************/

.container-tienda {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.card-tienda {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    width: 200px;
    height: 300px;
    transition: transform 0.3s ease-in-out;
}

.card-tienda:hover {
    transform: scale(1.05);
}

.card-img-tienda {
    width: 100%;
    height: 200px;
   background-size: cover;
}

.card-content-tienda {
    position: absolute;
    bottom: 0;
   	background: var(--color-primary);
    color: white;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: background 0.3s ease-in-out;
}

.card-content-tienda h2 {
    margin: 0;
    font-size: 18px;
	color: white;
}

.card-tienda:hover .card-content-tienda {
    background: var(--color-secondary);
	color: white;
	cursor:pointer;
}

@media (max-width: 600px) {
    .card-tienda {
        width: 100%;
        height: 200px;
    }

    .card-img-tienda {
        height: 150px;
    }

    .card-content-tienda {
        padding: 10px 0;
    }

    .card-content-tienda h2 {
        font-size: 16px;
    }
}

/************ resposive general *************/

@media (max-width: 768px) {
.title_main h1{
	font-size: 4.5em;
}
	
.elementor-1177 .elementor-element.elementor-element-6e2b397:not(.elementor-motion-effects-element-type-background), .elementor-1177 .elementor-element.elementor-element-6e2b397 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-position: center;
    
}
	
.ast-button-wrap {
    display: none;
}
	
.footer-section h3 {
    text-align: left;
}
	.footer-section p{
		text-align: justify !important;
	}

.elementor-252 .elementor-element.elementor-element-bf31544 {
    --margin-left: 0px;   
}

.elementor-252 .elementor-element.elementor-element-3b5ca8c {
    padding: 20px 10px 0px 10px;
}
	.elementor-252 .elementor-element.elementor-element-3b5ca8c .elementor-testimonial-content{
		text-align:justify;
	}
	
    .card-container {
        max-width: 100%;
        height: auto;
    }
	
.button-send {
   margin-left: 30%; 
}
}

.woocommerce div.product form.cart .button.single_add_to_cart_button {
    width: 50%;
    background: var(--color-primary);
}

.woocommerce div.product form.cart .button.single_add_to_cart_button:hover{
	background: var(--color-secondary);
	color:white;
}
.ast-site-header-cart-li .ast-woo-header-cart-info-wrap, .astra-icon .ast-icon-shopping-bag{
	 color: var(--color-primary);
}
	

.ast-menu-cart-outline .ast-cart-menu-wrap .count, .ast-menu-cart-outline .ast-addon-cart-wrap {
    color:v ar(--color-primary) !important;
}


