:root {
  --navy-950: #081221;
  --navy-900: #0f1b2d;
  --navy-800: #13233a;
  --navy-700: #1f3d63;
  --slate-700: #405066;
  --slate-500: #66758a;
  --slate-300: #cdd6e1;
  --slate-200: #dde4ec;
  --slate-100: #edf2f7;
  --white: #ffffff;
  --bg-soft: #f6f8fb;
  --accent: #245ea8;
  --accent-strong: #1a4b8c;
  --success: #0f9f76;
  --shadow-sm: 0 10px 30px rgba(8, 18, 33, 0.08);
  --shadow-md: 0 18px 45px rgba(8, 18, 33, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 18, 33, 0.16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1160px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--navy-900);
  background:
    radial-gradient(circle at top left, rgba(36, 94, 168, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 45%, #ffffff 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--slate-700);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 30px rgba(36, 94, 168, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 35px rgba(36, 94, 168, 0.28);
}

.btn-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(19, 35, 58, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: rgba(19, 35, 58, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(19, 35, 58, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  padding: 0.15rem;
  background: transparent;
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--slate-700);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.25s ease;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy-900);
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.5rem;
}

.site-nav a.nav-cta,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(19, 35, 58, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-900);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 4.5rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  color: var(--slate-700);
  font-size: 1.1rem;
}

.hero-subcopy {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--slate-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.8rem;
}

.hero-highlights {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--slate-700);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-highlights i {
  color: var(--success);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(19, 35, 58, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 251, 0.96) 100%);
  box-shadow: var(--shadow-lg);
}

.panel-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(19, 35, 58, 0.08);
}

.panel-featured {
  display: block;
  padding: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--accent-strong) 100%);
  border: 0;
}

.panel-featured strong {
  display: block;
  margin: 0.25rem 0 0.55rem;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.panel-label,
.panel-title {
  margin: 0;
  font-weight: 700;
}

.panel-copy,
.panel-featured span {
  color: rgba(255, 255, 255, 0.82);
}

.panel-copy {
  color: var(--slate-700);
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
}

.panel-icon {
  display: grid;
  place-items: center;
  min-width: 46px;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(36, 94, 168, 0.1);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-stats div {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(19, 35, 58, 0.08);
}

.panel-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.panel-stats span {
  color: var(--slate-700);
  font-size: 0.92rem;
}

.value-strip {
  padding-bottom: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-card {
  padding: 1.8rem;
  border: 1px solid rgba(19, 35, 58, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.value-card i {
  font-size: 1.25rem;
  color: var(--accent);
}

.value-card h2 {
  margin: 1rem 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.value-card p {
  margin: 0;
  color: var(--slate-700);
}

.services {
  background: linear-gradient(180deg, rgba(237, 242, 247, 0.55) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  border: 1px solid rgba(19, 35, 58, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  margin-bottom: 1rem;
  padding: 0.45rem 0.25rem 0.8rem;
  border-bottom: 1px solid rgba(19, 35, 58, 0.08);
}

.brand-logo svg {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 88px;
  object-fit: contain;
  object-position: center;
}

.brand-logo--koi,
.brand-logo--fontana {
  padding-inline: 0.75rem;
  border-radius: 18px;
  background: #0f1626;
  border: 1px solid rgba(19, 35, 58, 0.08);
}

.brand-logo--koi svg {
  max-width: 250px;
}

.brand-logo--fontana svg {
  max-width: 240px;
}

.brand-logo--lorena svg,
.brand-logo--lorena img {
  max-width: 260px;
}

.brand-logo--hotel-villa svg {
  max-width: 255px;
}

.brand-logo--don-beto svg {
  max-width: 240px;
}

.brand-logo--lorena svg,
.brand-logo--tartaleta svg,
.brand-logo--puerto-marisco svg {
  max-width: 250px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #5e8fd0);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36, 94, 168, 0.22);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  aspect-ratio: 1;
  border-radius: 18px;
  color: var(--accent);
  background: rgba(36, 94, 168, 0.1);
}

.service-icon i {
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 1rem 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.card-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(36, 94, 168, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(237, 242, 247, 0.4) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.4rem;
}

.about-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 35, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.about-card-large {
  grid-row: span 2;
}

.about-tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 27, 45, 0.08);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-card h3,
.culture-feature h3,
.value-tile h3,
.benefit-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.about-card p,
.about-list,
.culture-feature p,
.value-tile p,
.benefit-card p {
  color: var(--slate-700);
}

.about-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.about-list i {
  color: var(--success);
}

.culture {
  background: var(--white);
}

.culture-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: start;
}

.culture-feature {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.96) 0%, rgba(31, 61, 99, 0.96) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.culture-feature p {
  color: rgba(255, 255, 255, 0.8);
}

.culture-feature blockquote {
  margin: 1.4rem 0 0;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid rgba(255, 255, 255, 0.32);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.culture-values,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-tile,
.benefit-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 35, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.value-tile h3,
.benefit-card h3 {
  font-size: 1.1rem;
}

.benefits {
  background: linear-gradient(180deg, rgba(237, 242, 247, 0.45) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.service-card p,
.method-step p,
.testimonial-card p,
.contact-copy p {
  color: var(--slate-700);
}

.service-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-900);
  font-weight: 500;
}

.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(36, 94, 168, 0.08);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.method-step {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(19, 35, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.method-step span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  border-radius: 15px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
}

.method-step h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.testimonials {
  background: var(--navy-950);
  color: var(--white);
}

.testimonials .section-heading p,
.testimonials .testimonial-author span,
.testimonials .testimonial-card p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.testimonial-stars {
  display: flex;
  gap: 0.28rem;
  margin-bottom: 1.1rem;
  color: #ffc857;
}

.testimonial-card p {
  margin: 0 0 1.6rem;
}

.testimonial-author {
  display: grid;
  gap: 0.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: start;
}

.contact-copy {
  padding-right: 1rem;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-points div {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 35, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.contact-points i {
  margin-top: 0.1rem;
  color: var(--accent);
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(19, 35, 58, 0.08);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(19, 35, 58, 0.14);
  border-radius: 16px;
  background: #fbfcfe;
  color: var(--navy-900);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(36, 94, 168, 0.55);
  box-shadow: 0 0 0 4px rgba(36, 94, 168, 0.12);
  background: var(--white);
}

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.4rem 0 1.4rem;
  color: var(--slate-700);
  font-size: 0.95rem;
}

.consent input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.form-feedback {
  min-height: 1.4rem;
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  color: var(--success);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.form-feedback.is-visible {
  opacity: 1;
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 35, 58, 0.08);
}

.site-footer p,
.footer-links a {
  color: var(--slate-700);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .culture-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .contact-copy {
    padding-right: 0;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(19, 35, 58, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
  }

  .site-nav a:not(.btn):hover,
  .site-nav a:not(.btn):focus-visible {
    background: rgba(36, 94, 168, 0.08);
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    margin: 0.35rem 0 0;
    width: 100%;
  }

  .services-grid,
  .value-grid,
  .method-grid,
  .testimonials-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .culture-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .panel-stats,
  .services-grid,
  .value-grid,
  .method-grid,
  .testimonials-grid,
  .form-row,
  .about-grid,
  .culture-values,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .service-card,
  .method-step,
  .testimonial-card,
  .about-card,
  .culture-feature,
  .value-tile,
  .benefit-card {
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
