﻿@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #1e6fb7;
  --color-secondary: #1b8a6b;
  --color-accent: #f2c94c;
  --color-neutral: #f3f8f7;
  --color-danger: #b42318;
  --color-success: #027a48;
  --color-text: #1b2630;
  --color-muted: #5f6f7b;
  --glass-bg: rgba(255, 255, 255, 0.74);
  --glass-border: rgba(30, 111, 183, 0.18);
  --shadow-soft: 0 20px 50px rgba(30, 111, 183, 0.12);
}

body {
  font-family: "Sora", sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top left, #eef6ff 0%, #ecfbf6 42%, #fff8e1 100%);
  min-height: 100vh;
}

.site-main {
  padding-bottom: 3rem;
}

.section-block {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-slider .hero-slide {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 138, 107, 0.85), rgba(30, 111, 183, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 520px;
}

.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.glass-card,
.section-title,
.hero-content {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef6ff, #e8fbf0);
  border: 1px solid rgba(30, 111, 183, 0.14);
}

@media (min-width: 992px) {
  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  background: var(--color-secondary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(27, 138, 107, 0.3);
  text-decoration: none;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.nav-announce {
  background: linear-gradient(120deg, #153546, #1b8a6b);
  color: #e8f4ff;
}

.nav-announce-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.85rem;
}

.nav-announce-tag {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-announce-contact a {
  color: #f5d063;
  text-decoration: none;
}

.nav-announce-contact a:hover,
.nav-announce-contact a:focus {
  color: #ffe08a;
}

.nav-announce-sep {
  margin: 0 0.5rem;
  color: rgba(232, 244, 255, 0.7);
}

.nav-shell {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(30, 111, 183, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(21, 53, 70, 0.08);
}

.nav-shell .navbar-collapse {
  visibility: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-text);
}

.nav-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-logo {
  width: 78px;
  height: 62px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(30, 111, 183, 0.12);
  box-shadow: 0 12px 24px rgba(21, 53, 70, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
}

.nav-logo-text {
  display: inline-block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.1;
}

.nav-brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}

.nav-toggle {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
}

.nav-toggle:focus {
  box-shadow: none;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  margin: 6px 0;
  border-radius: 999px;
}

.nav-links {
  gap: 0.4rem;
  align-items: center;
}

.nav-links .nav-link {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus {
  background: rgba(30, 111, 183, 0.12);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-cta {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(242, 201, 76, 0.35);
}

@media (max-width: 991.98px) {
  .nav-inner {
    padding: 0.65rem 0;
  }

  .nav-logo {
    width: 64px;
    height: 50px;
    padding: 5px;
  }

  .nav-brand-text {
    font-size: 1.1rem;
  }

  .footer-logo-img {
    width: 200px;
  }

  .footer-logo-text {
    font-size: 1.15rem;
  }

  .nav-brand-sub {
    display: none;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(21, 53, 70, 0.12);
  }

  .nav-links {
    align-items: stretch;
  }

  .nav-links .nav-link {
    width: 100%;
  }

  .nav-actions {
    margin-top: 0.75rem;
  }
}

.navbar-brand {
  font-weight: 600;
  color: var(--color-primary);
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #2b2f3a;
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #e7bb2e;
  border-color: #e7bb2e;
  color: #1b2630;
}

.site-footer {
  background: #153546;
  color: #e8f4ff;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.footer-logo-img {
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.site-footer a {
  color: #f5d063;
}

.footer-muted {
  color: rgba(232, 244, 255, 0.75);
}

.form-control,
.form-select {
  border-radius: 12px;
}

.object-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-img-top.object-cover {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.thumb-preview {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.image-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-thumb {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.detail-hero {
  width: 100%;
  max-height: 420px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-hero {
  position: relative;
  padding: 5.5rem 0 3rem;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(30, 111, 183, 0.18), transparent 55%),
    radial-gradient(circle at 20% 20%, rgba(27, 138, 107, 0.18), transparent 45%);
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-hero-copy {
  max-width: 540px;
}

.about-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(30, 111, 183, 0.12);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1rem 0 0.75rem;
}

.about-hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.about-hero-media {
  position: relative;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  border: 1px solid rgba(30, 111, 183, 0.12);
  box-shadow: var(--shadow-soft);
}

.about-hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.about-stat {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 111, 183, 0.12);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  min-width: 140px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.about-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.about-body {
  padding: 2.5rem 0 5rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(30, 111, 183, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.about-content p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-features {
  margin-top: 3rem;
}

.about-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.about-feature-grid {
  display: grid;
  gap: 1.5rem;
}

.about-feature-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 111, 183, 0.12);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.about-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.about-feature-card p {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 992px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

@media (max-width: 767.98px) {
  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-media img {
    height: 260px;
  }

  .about-card {
    padding: 1.75rem;
  }
}

.accordion-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 111, 183, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.accordion-button,
.accordion-body {
  color: var(--color-text);
}

.accordion-button:not(.collapsed) {
  color: var(--color-text);
  background-color: rgba(30, 111, 183, 0.08);
  box-shadow: none;
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

.admin-shell {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.admin-sidebar {
  width: 240px;
  padding: 2rem 1.5rem;
  background: #0f172a;
  color: #e2e8f0;
  border-right: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-sidebar .nav-link {
  color: #cbd5f5;
  margin-bottom: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link:focus {
  color: #ffffff;
  background: rgba(148, 163, 184, 0.2);
}

.admin-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-brand-subtitle {
  font-size: 0.85rem;
  color: #94a3b8;
}

.admin-content {
  flex: 1;
  padding: 2.5rem;
  background: transparent;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.admin-title {
  font-size: 1.35rem;
  margin: 0;
  color: #0f172a;
  font-weight: 700;
}

.admin-subtitle {
  margin: 0.2rem 0 0;
  color: #64748b;
  font-size: 0.95rem;
}

.admin-content .card {
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.admin-content .card-header {
  background: #f8fafc;
  font-weight: 600;
}

.admin-content .table {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

.admin-content .table thead {
  background: #f1f5f9;
}

.admin-content .form-label {
  font-weight: 600;
  color: #1e293b;
}

.admin-content .form-control,
.admin-content .form-select {
  border-radius: 12px;
  border-color: #e2e8f0;
}

.admin-content .form-control:focus,
.admin-content .form-select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.2);
}

.admin-content .btn-primary {
  background: #0ea5e9;
  border-color: #0ea5e9;
  font-weight: 600;
  border-radius: 12px;
}

.admin-content .btn-outline-secondary {
  border-radius: 12px;
}

.admin-content .text-muted {
  color: #64748b !important;
}

.admin-dashboard-hero {
  position: relative;
  padding: 1.75rem 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.admin-dashboard-hero-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 70%);
  filter: blur(2px);
}

.admin-dashboard-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-dashboard-kicker {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0f172a;
  font-weight: 700;
}

.admin-dashboard-title {
  margin: 0.3rem 0 0.25rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
}

.admin-dashboard-subtitle {
  margin: 0;
  color: #475569;
}

.admin-dashboard-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  min-height: 110px;
}

.admin-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f172a;
}

.admin-stat-icon-primary {
  background: rgba(14, 165, 233, 0.2);
}

.admin-stat-icon-emerald {
  background: rgba(16, 185, 129, 0.2);
}

.admin-stat-icon-amber {
  background: rgba(245, 158, 11, 0.2);
}

.admin-stat-icon-sky {
  background: rgba(56, 189, 248, 0.2);
}

.admin-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 991px) {
  .admin-dashboard-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .admin-shell {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1.5rem;
  }

  .admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .admin-sidebar .nav-item {
    margin: 0;
  }
}
