/* --- RESET BÁSICO Y VARIABLES --- */
:root {
    /* REPASAR Y LIMPIAR */
    --primary-color: #ffffff;   /* Cyan vibrante */
    --secondary-color: #e70061; /* Magenta disruptivo */
    --border-color: #c20353; /* Magenta disruptivo */
    --hover-color: #fa2a81;
    --ter-color: #00e1b4;
    --lila-color: #48007b;
    --dark-bg: #0d0d0d;         /* Fondo oscuro principal más profundo */
    --medium-bg: #1a1a1a;       /* Fondo intermedio para cards/secciones */
    --medimtrasparent: #1f1f1ff2;;       /* Fondo intermedio para cards/secciones */
    --light-bg: #2c2c2c;        /* Fondo ligeramente más claro para inputs */
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Orbitron', sans-serif; /* Para títulos y elementos destacados */

    /* CABEZERA */
    --header-height: 80px;
    --header-height-scrolled: 40px; 
    --transition-speed: 0.15s;

    /* FIN DE LIMPIEZA */

    /* banner */
    --banner-color: #e5f555;    /* Amarillo neón para detalles */
}

/* --- ESTILOS GENERALES --- */
body {
    /* Usamos la fuente de la portada para toda la página */
    font-family: 'Montserrat', sans-serif; 
    background-color: #f0f2f5;
    margin: 0;
}

a { color: var(--primary-color); 
    font-weight: bold; 
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover, a:focus {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


.image-back { transform: rotate(10deg); max-width: 80% !important; }
.image-front { 
    transform: rotate(0deg) translate(20px, -20px); 
    max-width: 110% !important; }
.shape { position: absolute; }
.shape-1 { width: 250px; top: 50px; left: 20px; transform: rotate(25deg); }
.shape-2 { width: 300px; bottom: 50px; right: 20px; transform: rotate(-40deg); }


/* --- ESTILOS PARA EL CONTENIDO DE EJEMPLO --- */
.content-placeholder { padding-top: var(--header-height); height: 200vh; display: flex; justify-content: center; align-items: flex-start; padding: 10rem 2rem; box-sizing: border-box; }
.placeholder-text { max-width: 800px; text-align: center; }
.placeholder-text h1 { font-size: 3rem; color: var(--color-primary); }
/* --- ESTILOS PARA EL CONTENIDO DE EJEMPLO --- */
.content-placeholder { padding-top: var(--header-height); height: 200vh; display: flex; justify-content: center; align-items: flex-start; padding: 10rem 2rem; box-sizing: border-box; }
.placeholder-text { max-width: 800px; text-align: center; }
.placeholder-text h1 { font-size: 3rem; color: var(--color-primary); }


/* --- SECCIÓN 2: TARJETAS DE OPCIONES --- */
.design-section-container {
    padding: 100px 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.option-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-rows: auto 1fr; /* Fila para imagen automática, fila para contenido flexible */
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.configurator-card { background-color: #ffffff; }
.super-design-card { background-color: #fff9e5; }

.card-image-left,
.card-image-right {
    position: relative;  
    padding-top: 100%;
    width: 100%; /* Ocupa todo el ancho */
    margin: 0 auto 10px auto;
}

.card-image-left img {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Asegura que la imagen se vea completa sin deformarse */

}

.card-image-right img {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Asegura que la imagen se vea completa sin deformarse */

}


.card-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-content p strong { color: #333; }

.cta-button-cards {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-cards:hover {
    outline: solid;
    border-radius: 2rem;
    outline-offset: 2px;
    outline-width: medium;
    outline-color: var(--secondary-color);
    transform: scale(1.05);
    background-color: var(--hover-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 15px 1px rgba(250, 42, 129, 0.7);
}

.btn-outline {
    display: inline-block;
    color: #00f7ff;
    border: 2px solid #00f7ff;
    background-color: transparent;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background-color: #00f7ff;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .image-front {
        /* CAMBIO: La imagen ya no se desborda y se ajusta al contenedor */
        max-width: 100%;
        transform: none; /* Opcional: Reseteamos la transformación si no se ve bien */
    }

    .store-card {
        /* Reducimos el padding en móviles para que no se desborde */
        padding: 40px 25px;
    }


}

/* BOTON BORDE ALEJANDOSE */
.boton-outline-rosa {
  /* Diseño del botón en estado normal */
  background-color: var(--secondary-color);  
  border:transparent;     /* Borde sólido de 2px de grosor en color rosa. ¡Puedes cambiar este color! */
  color:var(--primary-color-color);                /* Color del texto igual al del borde */
  padding: 12px 28px;             /* Espaciado interno (arriba/abajo y derecha/izquierda) */
  border-radius: 50px;            /* Bordes completamente redondeados para un efecto "píldora" */
  font-weight: bold;              /* Texto en negrita */
  text-transform: uppercase;      /* Texto en mayúsculas, como en tu imagen de ejemplo */
  text-decoration: none;          /* Quita el subrayado si lo aplicas a un enlace <a> */
  cursor: pointer;                /* Muestra una mano al pasar por encima para indicar que es clickeable */
  display: inline-block;          /* Asegura que el padding y otras propiedades se apliquen correctamente */
  
  /* Transición suave para el efecto hover */
  transition: all 0.15s ease;
}

/* Efecto al pasar el ratón (hover) por encima del botón */
.boton-outline-rosa:hover {
  outline: solid;
  border-radius: 2rem;
  outline-offset: 2px;
  outline-width: medium;
  outline-color: var(--secondary-color);
  background-color:var(--hover-color); /* El fondo cambia al color rosa */
  color:var(--primary-color);                /* El texto cambia a color blanco */
}

.boton-outline-rosa:focus {
  /*
   * 'auto' le pide al navegador que dibuje el borde de foco
   * que usaría por defecto para elementos como los enlaces.
   * El color y estilo (punteado, sólido, etc.) dependerá
   * del navegador del usuario (Chrome, Firefox, Safari...).
  */
  outline: none;
}
