/* ---------------------------------------------------
   ESTILOS BASE GENERALES (RESPONSIVOS POR DEFECTO)
----------------------------------------------------- */

@media (1194px <= width <= 1920px){
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "bricolage-grotesque", sans-serif;
}

body {
    background-color: #F4F1EB;
    color: #333;
	width: 1194px;
    overflow-x: hidden;
}

header {
    background-color: #F4F1EB;
    display: flex;
    justify-content: space-between;
    width: 1194px;
    align-items: center;
    padding: 20px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-family: "bricolage-grotesque", sans-serif;
    font-size: 14pt;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 0px;
    margin-left: 0px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.nav-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:145px;
  height:40px;
  padding:0 12px;
  text-decoration:none;
  color: var(--btn-text-dark);
  font-weight:500;
  border-radius: 12px;
  border: 2px solid var(--btn-border);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.06),           
    inset 0 -3px 0 rgba(0,0,0,0.06);     
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  user-select: none;
}

.nav-btn:hover{
  transform: translateY(-3px);
  filter: brightness(1.02);
  font-weight: bolder;
}

.nav-btn:focus{
  outline: 3px solid rgba(179,0,92,0.12);
  outline-offset: 3px;
}

.nav-btn.velde{
  background: #E0FFB5;
  border: 2px solid #2B213A;
}

.nav-btn.losita{
  background: #FF7DB5;
  border: 2px solid #2B213A;
}

.nav-btn.molalo{
  background: #C877F7;
  border: 2px solid #2B213A;
}

.nav-btn.nalanja{
  background: #FF7C15;
  border: 2px solid #2B213A;
}
}
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        width: 130px;
    }

    nav a {
        font-size: 0.95rem;
    }
}

.hero-section {
  width: 1194px;
  height: 450px;
  background-image: url('degradadofeme.jpg');
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 90px;
  position: relative;
}

.Sticker {
    width: 220px;
    height: auto;
    margin-left: 7px;
    margin-top: 50px;
	position: relative;
}

h1{
    font-family: "new-kansas", sans-serif;
	font-weight: 700;
    font-style: italic;
    font-size: 32pt;
	line-height: 1.2;
    color: #000000;
    text-align: center;
	position: relative;
	margin-bottom: 10px;
}

h4{
    font-family: "quimby-gubernatorial", sans-serif;
    font-size: 20pt;
	line-height: 1.2;
    color: #000000;
    text-align: center;
	position: relative;
	margin-top: 50px;
}

.boton-container {
  text-align: center;
  margin-top: 5px;
  position: relative;
}

.boton-verde {
  display: inline-block;
  background-color: #d2ffb7;
  font-family: "new-kansas", sans-serif;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid #000;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.boton-verde:hover {
  background-color: #b9f59e;
  transform: scale(1.05);
}

.marquee {
  width: 100%;
  overflow: hidden;
  background-color: #ff7ac5;
  
  padding: 15px 0;        /* le da altura al recuadro */
  margin-top: 15px;       /* separación con lo de arriba */
  margin-bottom: 15px;    /* separación con lo de abajo */
  
  position: relative;     /* se asegura de ocupar su espacio */
  display: block;         /* fuerza a comportarse como bloque */
  z-index: 1;             /* para evitar que se mezcle con otros elementos */
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.marquee-inner span {
  font-family: "new-kansas", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #F4F1EB;
  padding-right: 10px;
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SECCIÓN DE BLOGS */

.blog-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #2c2140; 
}

/* ESTRELLAS DECORATIVAS DE FONDO */

.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image:
    url("estrella-morada.png"), /* arriba izquierda grande */
    url("estrella-menta.png"),  /* centro izquierda */
    url("estrella-morada.png"), /* abajo izquierda */
    url("estrella-menta.png"),  /* arriba derecha */
    url("estrella-morada.png"), /* centro derecha */
    url("estrella-menta.png");  /* abajo derecha */

  background-repeat: no-repeat;

  background-size:
    70px,  /* arriba izquierda */
    80px,   /* centro izquierda */
    85px,   /* abajo izquierda */
    65px,   /* arriba derecha */
    78px,   /* centro derecha */
    80px;   /* abajo derecha */

  background-position:
    3% 30%,   /* arriba izquierda */
    7% 55%,   /* centro izquierda */
    5% 85%,   /* abajo izquierda */
    96% 30%,  /* arriba derecha */
    92% 55%,  /* centro derecha */
    94% 85%;  /* abajo derecha */
}


/*TÍTULO + ESTRELLAS FLOTANTES*/

.blog-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}

.blog-title {
  font-family: "new-kansas", sans-serif;
  text-align: center;
  font-size: 2.8rem;               
  font-weight: 900;
  color: #2B213A;                
}

/* Estrellitas del título */
.title-star-floating {
  position: absolute;
  width: 80px;
  pointer-events: none;
}

.star-left {
  left: -95px;
  top: -25px;
  transform: rotate(-10deg);
}

.star-right {
  right: -95px;
  top: -30px;
  transform: rotate(12deg);
}


/* TARJETAS DE BLOG */

.blog-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-card {
  width: 280px;
  background: #FF9EC7;
  border-radius: 14px;
  padding: 20px;
  border: 2px solid #2B213A;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #2B213A;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover */
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
}

.blog-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Título de tarjeta */
.blog-card h3 {
  font-family: "new-kansas", sans-serif;
  font-size: 1.4rem;                 
  font-weight: 900;
  margin-bottom: 10px;
  color: #2B213A;
}

/* Sinopsis de los blogs (parrafo) */
.blog-card p {
  font-family: "bricolage-grotesque", sans-serif;
  text-align: center;
  font-size: 1rem;                               
  line-height: 1.4;
  color: #2B213A;                                
}

/*SECCIÓN MORADA DE COMPRA*/


.seccion-morada {
    background: #E3BBFB;      /* la franja morada */
    width: 100%;
    text-align: center;
    padding: 80px 0px 70px;  /* AJUSTA el alto aquí */
    position: relative;
    overflow: visible;        /* permite ver la onda */
}

/* Contenedor principal */
.contenedor-texto-morado {
    max-width: 1000px;
    margin: 0 auto;
}

/* Texto */
.morado-texto {
    font-family: "new-kansas", sans-serif;
    font-size: 28pt;
	font-weight: 600;
    font-style: italic;	
    line-height: 1.3;
    color: #2B213A;                        
    font-weight: 700;
}

/* Colores individuales */
.c-verde   { color: #E0FFB5; font-family: "new-kansas", sans-serif; } 
.c-morado  { color: #A31DF2; font-family: "new-kansas", sans-serif; }
.c-rosa    { color: #FF7DB5; font-family: "new-kansas", sans-serif; }
.c-naranja { color: #FF7C15; font-family: "new-kansas", sans-serif; }
.c-amarillo{ color: #E0FFB5; font-family: "new-kansas", sans-serif; }
.c-morado2 { color: #A31DF2; font-family: "new-kansas", sans-serif; }

/* Botón */
.btn-comprar-morado {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 40px;
    background: #FF7DB5;     /* NOTA: color del botón */
    border: 2px solid #2B213A;
    border-radius: 12px;
    font-family: "new-kansas", sans-serif;
    color: #2B213A;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-comprar-morado:hover {
    transform: scale(1.05);
    background: #ff76a4; /* hover */
}

/* Ondas */
.ondas-moradas {
    width: 100%;
    position: absolute;
    display: block;
	
    margin-top: 70px;      /* SEPARACIÓN ENTRE TEXTO Y ONDA */
}

/*      SECCIÓN NEWSLETTER      */

.newsletter-section {
    background: #E0FFB5;  
    padding: 60px 20px;
    text-align: center;
}

.newsletter-title {
    font-family: "new-kansas", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #2B213A;
}

.newsletter-text {
    font-family: "bricolage-grotesque", sans-serif; 
    font-size: 16px;
    color: #2B213A;
    margin-top: 15px;
    margin-bottom: 40px;
}

.newsletter-inputs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.fake-input {
    width: 220px;
    padding: 14px;
    border: 2px solid #2B213A;
    border-radius: 25px;
    font-family: "bricolage-grotesque", sans-serif;
    font-size: 15px;
    color: #9b9b9b; 
    background: #F4F1EB; /* beige */
    text-align: left;
    padding-left: 20px;
}

.newsletter-btn {
    display: inline-block;
    background: #FF7C15; 
    padding: 14px 40px;
    color: #2B213A;
    text-decoration: none;
    font-family: "new-kansas", sans-serif;
    font-weight: 800;
    border: 2px solid #2B213A;
    border-radius: 18px;
    font-size: 18px;
    transition: 0.2s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}


/* =====================================================
   BREAKPOINTS RESPONSIVOS
====================================================== */

/* Tablets */
@media (max-width: 992px){

  header {
    flex-direction: column;
    gap: 15px;
  }

  .logo { width: 180px; }
  nav { justify-content: center; }

  .hero-section { height: 380px; }
  h1 { font-size: 1.9rem; }
  h4 { font-size: 1.2rem; }

}

/* Móviles */
@media (max-width: 400px){

  .logo { width: 150px; }

  .hero-section { height: 300px; }

  .blog-cards {
    gap: 20px;
  }

  .blog-title { font-size: 2rem; }

  .newsletter-inputs {
    flex-direction: column;
    gap: 15px;
  }
}

