/* FONDO Y RESETEO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(
        120deg,
        #3e93af,
        #2d5d6d,
        #2f48b6,
        #1d2696,
        #0f203a
    );
    background-size: 400% 400%;
    animation: fondoColor 12s ease infinite; /* 12s = cambia cada ~3s */
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: rgb(115, 174, 241);
}

.logo span {
    color: #3bc7ff;
}

.navbar nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-size: 17px;
    opacity: 0.9;
    transition: 0.3s ease;
}

.navbar nav a:hover {
    opacity: 1;
    color: #3bc7ff;
}

.btn {
    padding: 10px 20px;
    background: #3bc7ff;
    border-radius: 10px;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("https://media.discordapp.net/attachments/1437065221612114003/1438668039426932858/fa4b7ede-eba6-4678-a186-118e15494eb2.png?ex=6917b785&is=69166605&hm=505257bbf90d5db3767221af45aeac0928a5eff1a72844d3980be110e421b633&=&format=webp&quality=lossless&width=525&height=350") no-repeat center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OSCURIDAD */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.title {
    font-size: 64px;
    font-weight: 900;
    animation: titleAnim 1.2s ease forwards;
}

.subtitle {
    margin-top: 10px;
    font-size: 22px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #3bc7ff;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #3bc7ff;
}

/* SECCIONES */
.section {
    padding: 120px 10%;
    text-align: center;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.features {
    padding: 120px 10%;
    text-align: center;
}

.features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(9, 229, 245, 0.4);
}

/* FOOTER */
footer {
    margin-top: 60px;
    padding: 30px;
    text-align: center;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ANIMACIONES */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.6s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(60px);
    animation: slideUp 1.5s forwards;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1.3s forwards;
}

/* Keyframes */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleAnim {
    0% {opacity: 0; transform: translateY(-30px);}
    100% {opacity: 1; transform: translateY(0);}
}
@keyframes fondoColor {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* =========================
   TIENDA / STORE
========================= */

.store {
    padding: 120px 10%;
    text-align: center;
}

.store h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.store h4 {
    font-size: 20px;
    color: #9db4ff;
}

.store .lead {
    margin: 15px auto 50px;
    max-width: 700px;
    opacity: 0.85;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD PRODUCTO */
.product {
    position: relative;
    background: linear-gradient(180deg, #0f1b3d, #081028);
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(59,199,255,0.35);
}

.product img {
    max-width: 120px;
    margin-bottom: 20px;
}

.product h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.product .price {
    font-size: 20px;
    font-weight: bold;
    color: #3bc7ff;
    margin-bottom: 15px;
}

.product ul {
    list-style: none;
    margin-bottom: 25px;
}

.product ul li {
    margin: 6px 0;
    opacity: 0.9;
}

/* BOTÓN */
.buy {
    background: white;
    color: black;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.buy:hover {
    background: #3ac418;
    box-shadow: 0 0 15px #3bc7ff;
}

.buy2:hover {
    background: #fbff03;
    box-shadow: 0 0 15px #1797b1;
}

.ss {
color: brown;
}

.btn2 {
    padding: 10px 20px;
    background: #d3d1d1;
    border-radius: 10px;
}

.imagen {
    padding: 0px 0px;
}
.products-grid2 {
  width: 100%;
  max-width: 1500px; /* AJUSTÁ */
  margin: 0 auto;
}


.product2 {
  width: 100%;
}

.imagen2 {
  width: 100%;
  max-width: 900px; /* AJUSTÁ ESTE VALOR */
  margin: 0 auto;
  border: 1px;
}


















