*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --verde: #32371a;
    --verde-claro: #4a7c6f;
    --crema: #f9f5f7;
    --amarillo: #efb810;
    --rosa: #f4c1dd;
    --rosa-claro: #e8c4b4;
    --texto: #160c0a;
    --texto-suave: #32371a;
    --blanco: #ffffff;
}
  
@font-face {
  font-family: 'Title';

  src:
    local('Creative'),
    url('CreativeVintage.ttf') format('Truetype');

  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Subtitle';

  src:
    local('Miracle'),
    url('Miracle.otf') format('opentype');

  font-weight: normal;
  font-style: normal;
}


body {
    font-family: 'Bricolage Grotesque', sans-serif;    
    background: var(--crema);
    color: var(--texto);
    overflow-x: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  padding: 1rem 2rem;
  border-radius: 999px;

  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  
  transition: 
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 12rem;
    background: color(srgb-linear 0.9 0.53 0.72 / 0.67);
    backdrop-filter: blur(12px);
  }

  .nav-logo {
    font-family: 'Title', sans-serif;    
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--verde);
  }

  .nav-cta {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }

  .wa {
    background: var(--verde);
    color: var(--crema);
    border: none;
    padding: 0.55rem 1.3rem;
  }

  .wa:hover { background: var(--verde); transform: translateY(-1px); }

  .tel {
    background: transparent;
    color: var(--verde);
    border: 1px solid var(--verde);
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
  }

  .tel:hover { background: var(--amarillo); 
    color: var(--crema); 
    border: transparent;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 5rem 4rem;
    position: relative;
  }

  .hero-tag {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amarillo);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .hero-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--rosa);
    display: block;
  }

  .hero-title {
    font-family: 'Title', serif;
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--verde);
    margin-bottom: 1.6rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--rosa);
  }

  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--texto-suave);
    max-width: 380px;
    margin-bottom: 3rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 300px;
  }

  .primary {
    background: var(--verde);
  color: var(--crema);
  border: none;
}

  .primary:hover { transform: translateY(-2px); }

  .secondary {
    background: transparent;
    color: var(--texto);
    border: 1.5px solid var(--verde);
  }

  .secondary:hover { border: 2px solid  var(--amarillo); }

  .hero-right {
    position: relative;
    background-image: url(img/gerberas.jpg);
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-img-deco {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(247,243,238,0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .hero-img-deco2 {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(247,243,238,0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .hero-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(247,243,238,0.95);
    padding: 1rem 1.4rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-badge-stars {
    color: var(--rosa);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }

  .hero-badge-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--verde);
  }

  .hero-badge-sub {
    font-size: 1rem;
    color: var(--texto-suave);
    font-weight: 400;
  }

  /* STRIP */
  .strip {
    background: var(--amarillo);
    color: var(--texto);
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .strip-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    opacity: 0.9;
  }

  .strip-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--verde);
    flex-shrink: 0;
  }

  /* INSPIRACIÓN */
  .section-inspira {
    padding: 6rem 4rem;
    background: var(--crema);
  }

  .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .section-tag {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amarillo);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Title', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--verde);
    line-height: 1.15;
  }

  .section-title em { font-style: italic; }

  .grid-productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    max-width: 1000px;
    margin: 0 auto;
    cursor: none;
  }

  .producto-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }

  .producto-img {
    height: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
  }

  .producto-card:hover .producto-img { transform: scale(1.3); }

  /* Colored placeholder backgrounds */
  .p1 { background-image: url(img/ramorosas.jpg); }
  .p2 { background-image: url(img/iris3.jpg); }
  .p3 { background-image: url(img/globos.jpg); }
  .p4 { background-image: url(img/espejos.jpg); }
  .p5 { background-image: url(img/cestapapa3.jpg); }
  .p6 { background-image: url(img/cestarosas.jpg); }

  .producto-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,46,39,0.85) 0%, transparent 100%);
    padding: 2rem 1.2rem 1rem;
    color: var(--crema);
  }

  .producto-nombre {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
  }

  .producto-precio {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
  }

  /* CTA CENTRAL */
  .section-cta {
    background: var(--rosa);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-tag {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 1.5rem;
  }

  .cta-title {
    font-family: 'Title', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--crema);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .cta-title em { font-style: italic; color: var(--texto); }

  .cta-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--texto);
    margin-bottom: 3rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .crema {
    background: var(--blanco);
    color: var(--verde);
    border: none;
  }
  .crema:hover { background: var(--amarillo); transform: translateY(-2px); 
  }

  /* ABOUT */
  .section-about {
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-img-wrap {
    position: relative;
  }

  .about-img {
    width: 100%;
    background-image: url(img/chelgrys.jpg);
    background-size: cover;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .about-deco {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--amarillo);
    z-index: -1;
  }

  .about-tag { font-size: 0.95rem; 
    font-weight: 400; 
    letter-spacing: 0.18em; 
    text-transform: uppercase; 
    color: var(--verde); 
    margin-bottom: 1rem;
  }

  .about-title {
    font-family: 'Title', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--verde);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .about-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--texto);
    margin-bottom: 2rem;
  }

  .about-firma {
    font-family: 'Subtitle', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--verde);
  }

  /* INFO BAR */
  .info-bar {
    background: var(--crema-oscura);
    padding: 3rem 4rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    background: var(--amarillo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--crema);
  }

  .info-label {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amarillo);
    margin-bottom: 0.2rem;
  }

  .info-val {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.1rem;
    color: var(--verde);
    font-weight: 400;
  }

  /* FOOTER */
  footer {
    background: var(--rosa);
    color: var(--texto);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo {
    font-family: 'Title', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
  }

  .footer-sub {
    font-size: 0.95rem;
    color: var(--texto);
    margin-top: 0.3rem;
    font-weight: 400;
  }

  .footer-btns { display: flex; gap: 0.8rem; }

  .footer-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .fb-tel { background: transparent; color: var(--crema); border: 1px solid rgba(247,243,238,0.3); }
  .fb-tel:hover { border-color: var(--crema); }

  /* ANNOTATIONS */
  .annotation {
    position: absolute;
    background: rgba(255,220,100,0.95);
    color: #5a4000;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    pointer-events: none;
  }

  .annotation::before {
    content: '▶';
    margin-right: 0.3rem;
    font-size: 0.6rem;
  }

  @media (max-width: 500px) {

  /* NAV */

  nav {
    padding: 0.8rem 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
  }

  /* HERO */

  .hero {
    display: flow;
  }

  .hero-left {
    padding: 8rem 1.2rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-btns {
    max-width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-right {
    min-height: 45vh;
  }

  .hero-img-placeholder {
    min-height: 360px;
  }

  .hero-img-deco,
  .hero-img-deco2 {
    display: none;
  }

  .hero-badge {
    width: calc(100% - 2rem);
    left: 1rem;
    transform: none;
    bottom: 1rem;
  }

  /* SECCIONES */

  .section-inspira,
  .section-cta,
  .section-about,
  .info-bar,
  footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .section-title,
  .cta-title,
  .about-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .section-tag,
  .cta-tag,
  .about-tag {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  /* PRODUCTOS */

  .grid-productos {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .producto-img {
    aspect-ratio: 4/4.5;
  }

  .producto-info {
    padding: 1.5rem 1rem 1rem;
  }

  .producto-nombre {
    font-size: 1rem;
  }

  .producto-precio {
    font-size: 0.85rem;
  }

  /* BOTONES */

  .btn {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
  }

  /* STRIP */

  .strip {
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
  }

  .strip-item {
    width: 100%;
    font-size: 0.85rem;
  }

  /* INFO BAR */

  .info-bar {
    gap: 2rem;
  }

  .info-item {
    width: 100%;
  }

  .info-val {
    font-size: 1rem;
  }

  /* ABOUT */
  .section-about {
    display: flow;
  }

  /* FOOTER */

  .footer-btns {
    width: 100%;
    flex-direction: column;
  }

  .footer-btns .btn {
    width: 100%;
  }

}

  /* SVG icons inline */
  .icon-wa { display: inline-block; width: 18px; height: 18px; vertical-align: middle; fill: currentColor; }
  .icon-tel { display: inline-block; width: 16px; height: 16px; vertical-align: middle; fill: currentColor; }