body {
    font-family: 'Sportscenter', helvetica, arial, sans-serif;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background: #fff;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, [class*='heading-'] {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	font-family: 'Sportscenter', helvetica, arial, sans-serif;
	letter-spacing: normal;
	color: #151515;
}

h1 {
	font-size: 36px;
	line-height: 1.5;
	color: #000000 !important;
    position: relative;
    display: inline-block;
}





h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background-color: #d9534f;
    transform: translateX(-50%);
  }
  
  
  

h2 {
	font-size: 34px;
	line-height: 1.5;
}

h3 {
	font-size: 30px;
	line-height: 1.5;
}

h4 {
	font-size: 20px;
	line-height: 2;
}

h5 {
	font-size: 15px;
	line-height: 1.2;
    font-weight: 500;
}

.center-text {
    text-align: center;
}

nav {
    display: flex;
   
    align-items: center;
    background-color: #2d2926;
    width: 100%;
   
    flex-wrap: wrap;
    position: relative;
        z-index: 9999 !important;
   
}


.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
     position: relative;
    z-index: 9999 !important;
    
}

.logo {
    width: 150px;
    margin: 0;
    padding: 5px 10px 20px;
    align-self: center;
   
}

.nav-logo {
   
    display: flex;
    margin-left: 50px; 
}


.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0 auto;
    
        position: relative;
    z-index: 9999 !important; /* Higher than video and form */
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #d9534f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: 5px;
   
}

.nav-links .active a {
    color: white;
}

.nav-links a:hover::after, 
.nav-links .active a::after {
    transform: scaleX(1);
}



.menu-toggle {
    display: none;
    font-size: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    order: -1;
        position: relative;
    z-index: 10000 !important; /* Even higher so button stays clickable */
   
}


.slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: auto;
    aspect-ratio: 1920 / 840;
    overflow: hidden;
    
   
}

.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
}

.tile {
    width: 100%;
    height: 100%;
    background-size: calc(400% + 2px) calc(200% + 2px);
    background-position: center;
    transition: transform 0.8s ease-in-out;
    border: none;
    outline: 1px solid transparent;
}

@media (orientation: portrait) {
    .slider {
        width: 100vw;
        aspect-ratio: 9 / 16;
        overflow: hidden;
    }

    .grid {
        left: 50%;
        transform: translateX(-50%);
        width: 1920px;
    }

    .tile {
        background-position: center center;
    }
}

.indicators {
    display: flex;
    justify-content: center;
    margin-top: 3px;
}

.indicator {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background: #444;
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}

.indicator.active {
    background: #F05145;
   
   
}

.indicator:hover {
    transform: scale(1.2);
}

@font-face {
    font-family: 'Sportscenter';
    src: url('fonts/sportscenter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    width: calc(50% - 5px);
    height: 100%;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: clip-path 0.5s ease-in-out;
    animation: reveal 1s ease-in-out forwards;
}


@keyframes reveal-bottom-right {
    from {
        clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes reveal-bottom-left {
    from {
        clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes reveal-top-right {
    from {
        clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes reveal-top-left {
    from {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}


.image-1 {
    animation: reveal-bottom-right 0.6s ease-in-out forwards;
    animation-delay: 0.8s;
}

.image-2 {
    animation: reveal-bottom-left 0.6s ease-in-out forwards;
    animation-delay: 0.8s;
}

.image-3 {
    animation: reveal-top-right 0.6s ease-in-out forwards;
    animation-delay: 0.8s;
}

.image-4 {
    animation: reveal-top-left 0.6s ease-in-out forwards;
    animation-delay: 0.8s;
}


 
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    margin: auto;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.item img {
    max-width: 100%;
    height: auto;
    align-self: center;
}

.item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    transition: opacity 0.3s ease-in-out;
    align-self: center; 
    text-align: center; 
    width: 100%; 
    margin-bottom: auto;
}


.new-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    grid-column: span 3;
   
}

.new-row .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
   
}

.new-row .item img {
    max-width: 80%;
    height: auto;
}


.wheretobuy {
    position: relative;
    width: 100%;
 
}

.wheretobuy img {
    width: 100%;
    /*display:block;*/
    height: auto;
}


.contact {
    position: relative;
    width: 100%;
    background: black;
}

.contact img {
    width: 100%;
    height: auto;
}

.form-container {
    position: absolute;
    right: 0;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0);
    top: 50%;
    transform: translateY(-50%);
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 16px;
}

button {
    padding: 10px;
    background-color: #F05145;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #464646;
}



.about-wrapper {
    display: flex;
    width: 100%;
}


.about-text {
    width: 70%;
    padding: 15px;
    text-align: center;
}


.about-image {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
}


.about-image img {
    width: 80%;
    height: auto;
   

}

.ripple-image {
    position: fixed;  
    display: block;
    bottom: 0;        
    left: 50%;        
    transform: translateX(-50%);
    width: auto;      
    max-width: 100%;  
    height: auto;     
    z-index: -1;
}

/*empieza aqui*/
@media (max-width: 768px) {
    .nav-links {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .menu-toggle {
        display: block;
    }
    
    
    /*termina aqui */

    .logo {
        width: 130px;
        margin-left: -60px;
    }

    h1 {
        font-size: 20px;
        line-height: 1.5;
        color: #000000 !important;
    }
    
    h2 {
		font-size: 15px;
		line-height: 1.2;
	}

	h3 {
		font-size: 14px;
		line-height: 1.2;
	}

    h4 {
		font-size: 12px;
		line-height: 1.2;
	}

	h5 {
		font-size: 10px;
		line-height: 1.2;
	}

    .nav-logo {
        position: relative;
        margin: auto;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 46px;
        left: 0;
        width: 100%;
        background-color: #2d2926;
        padding: 10px 0;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
         z-index: 9999 !important;
    }

    .nav-links li {
        padding: 6px 0;
        margin: 0;
        height: 12px;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 5px 0;
    }

    .nav-links a::after {
        width: 55%;
        margin: 1px auto 0;
    }

   
    .about-wrapper {
        min-height: 100vh;
    }

    .about-image {
        display: block !important;
        position: relative;
        top: 50px;
    }

    .image-wrapper {
        width: 100%;
        height: 150px;
    }

   
    .container {
        display: block;
    }

    .new-row {
        display: block;
    }

   
    .contact {
        height: 100vh;
        display: flex;
        overflow: hidden;
    }

    .contact img {
        width: auto;
        height: 100%;
        max-width: none;
        position: absolute;
        transform: translateX(-24%);
    }

    .form-container {
        position: relative;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        top: 5%;
        padding: 10px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        padding: 8px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }

}