@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --rose:        #C97B8E;
  --rose-dim:    #A85C70;
  --rose-pale:   rgba(201,123,142,.12);
  --rose-light:  #E3A8B5;
  --gold:        #C9A45C;
  --gold-dim:    #A8854A;
  --dark:        #3D2B2E;
  --dark-2:      #4A3438;
  --mid:         #8A6670;
  --gray:        #9C8A88;
  --gray-light:  #F5EAE6;
  --white:       #FFFFFF;
  --white-off:   #FDF6F3;
  --white-dim:   rgba(255,255,255,.75);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius-sm:  4px;
  --radius-md:  16px;
  --radius-lg:  28px 4px 28px 4px;
  --radius-pill: 50px;
  --shadow-sm:   0 2px 8px rgba(61,43,46,.06);
  --shadow-md:   0 8px 32px rgba(61,43,46,.10);
  --shadow-lg:   0 20px 60px rgba(61,43,46,.16);
  --transition: 0.26s cubic-bezier(0.4,0,0.2,1);
  --navbar-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--white-off); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.h1 { font-family: var(--font-display); font-size: clamp(2.3rem, 6vw, 4rem); line-height: 1.06; font-weight: 600; letter-spacing: -.01em; }
.h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.1; font-weight: 600; letter-spacing: -.01em; }
.lead { font-size: clamp(.95rem, 1.8vw, 1.08rem); font-weight: 400; line-height: 1.7; color: var(--mid); }
.label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-dim); }
.accent { color: var(--rose); font-style: italic; }

.container { width: 100%; max-width: 1140px; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--white); }
.text-center { text-align: center; }

.btn { display: inline-flex; align-items: center; gap: .55rem; padding: .95rem 1.9rem; border-radius: var(--radius-pill); font-weight: 600; font-size: .92rem; transition: var(--transition); white-space: nowrap; }
.btn--primary { background: var(--rose); color: var(--white); }
.btn--primary:hover { background: var(--rose-dim); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,123,142,.4); }
.btn--outline { border: 1.5px solid rgba(255,255,255,.6); color: var(--white-off); background: transparent; }
.btn--outline:hover { border-color: var(--white); color: var(--white); }
.btn--sm { padding: .65rem 1.3rem; font-size: .82rem; }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(61,43,46,.93); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.08); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: var(--navbar-h); }
.navbar__logo-fallback { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white-off); }
.navbar__links { display: none; align-items: center; gap: 2rem; }
.navbar__links a { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.75); transition: color var(--transition); }
.navbar__links a:hover { color: var(--rose-light); }
.navbar__actions { display: flex; align-items: center; gap: .75rem; }
.navbar__cta { display: none; }
.navbar__burger { width: 42px; height: 42px; border-radius: var(--radius-pill); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: rgba(255,255,255,.1); }
.navbar__burger span { display: block; width: 20px; height: 2px; background: var(--white-off); border-radius: 2px; transition: var(--transition); }
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: var(--navbar-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-light); z-index: 99; padding: 1.5rem 1.25rem 2rem; flex-direction: column; gap: .25rem; box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: .85rem 1rem; border-radius: var(--radius-pill); font-weight: 500; color: var(--mid); }
.mobile-menu a:hover { background: var(--gray-light); color: var(--rose); }
.mobile-menu__cta { margin-top: 1rem; }
.mobile-menu__cta .btn { width: 100%; justify-content: center; }

/* HERO — luminoso, NO fondo negro */
.hero {
  min-height: 580px;
  padding: calc(var(--navbar-h) + 1.75rem) 0 1.75rem;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #5A3F44 0%, #3D2B2E 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/56866/garden-rose-red-pink-56866.jpeg?auto=compress&cs=tinysrgb&w=800');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.1); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: .4rem; }
.hero__eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero__title { margin-bottom: .6rem; color: var(--white-off); }
.hero__subtitle { margin-bottom: 1.1rem; max-width: 480px; color: rgba(255,255,255,.78); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.1rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem 2rem; }
.hero__trust-item { display: flex; align-items: center; gap: .5rem; font-size: .83rem; font-weight: 500; color: rgba(255,255,255,.65); }
.hero__trust-item svg { color: var(--rose-light); flex-shrink: 0; }
.hero__visual { position: relative; }
.hero__img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 3px solid rgba(255,255,255,.15); }
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__float-card { position: absolute; bottom: -1.25rem; left: -1.25rem; background: var(--white); color: var(--dark); border-radius: var(--radius-pill); padding: 1rem 1.5rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .85rem; z-index: 2; }
.hero__float-icon { width: 38px; height: 38px; background: var(--rose-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); flex-shrink: 0; }
.hero__float-card strong { font-family: var(--font-display); font-weight: 600; font-size: .95rem; display: block; line-height: 1.2; color: var(--dark); }
.hero__float-card span { font-size: .73rem; color: var(--gray); }

@media (max-width: 1023px) { .hero__visual { display: none; } }

.trust-bar { background: var(--gray-light); padding: 1.1rem 0; border-top: 1px solid rgba(201,123,142,.15); }
.trust-bar__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2.5rem; }
.trust-bar__item { display: flex; align-items: center; gap: .55rem; color: var(--dark-2); font-size: .83rem; font-weight: 600; }
.trust-bar__item svg { color: var(--rose); flex-shrink: 0; }

.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 2.5rem; }
.service-card { position: relative; background: var(--white-off); border: 1px solid var(--gray-light); border-top: 3px solid var(--rose); border-radius: 0 0 var(--radius-md) var(--radius-md); padding: 2rem 1.75rem 1.75rem; display: flex; flex-direction: column; gap: .65rem; transition: var(--transition); overflow: hidden; }
.service-card::before { content: attr(data-index); position: absolute; top: .5rem; right: 1.25rem; font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--gray-light); line-height: 1; z-index: 0; }
.service-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card__icon { width: 44px; height: 44px; background: var(--rose-pale); border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center; color: var(--rose); position: relative; z-index: 1; }
.service-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--dark); position: relative; z-index: 1; }
.service-card__desc { font-size: .88rem; color: var(--mid); line-height: 1.65; flex: 1; position: relative; z-index: 1; }
.service-card__link { color: var(--rose-dim); font-size: .83rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; transition: gap var(--transition); position: relative; z-index: 1; }
.service-card:hover .service-card__link { gap: .6rem; }

footer { background: var(--white); border-top: 1px solid var(--gray-light); padding: 3rem 0 1.5rem; color: var(--mid); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand p { font-size: .87rem; margin-top: .75rem; line-height: 1.7; }
.footer__slogan { font-family: var(--font-display); font-size: 1.05rem; color: var(--rose) !important; font-style: italic; margin-top: .5rem !important; }
.footer__col-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .87rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--rose); }
.footer__contact-item { display: flex; align-items: center; gap: .6rem; font-size: .87rem; margin-bottom: .6rem; }
.footer__bottom { border-top: 1px solid var(--gray-light); padding-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; font-size: .79rem; text-align: center; color: var(--gray); }

@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .navbar__links { display: flex; } .navbar__cta { display: inline-flex; } .navbar__burger { display: none; } .hero__grid { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 1rem 0; } .hero__visual { display: block; } .services__grid { grid-template-columns: repeat(3, 1fr); } .footer__grid { grid-template-columns: 2fr 1fr 1fr; } .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }