/*
Theme Name: Siembrala
Theme URI: https://oceanwp.org/
Template: oceanwp
Author: OceanWP
Author URI: https://oceanwp.org/about-oceanwp/
Description: OceanWP is the perfect theme for your project. Lightweight and highly extendable, it will enable you to create almost any type of website such a blog, portfolio, business website and WooCommerce storefront with a beautiful &amp; professional design. Very fast, responsive, RTL &amp; translation ready, best SEO practices, unique WooCommerce features to increase conversion and much more. You can even edit the settings on tablet &amp; mobile so your site looks good on every device. Work with the most popular page builders as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, etc... Developers will love his extensible codebase making it a joy to customize and extend. Best friend of Elementor &amp; WooCommerce. Looking for a Multi-Purpose theme? Look no further! Check the demos to realize that it's the only theme you will ever need: https://oceanwp.org/demos/
Tags: two-columns,right-sidebar,footer-widgets,blog,news,custom-background,custom-menu,post-formats,rtl-language-support,sticky-post,editor-style,threaded-comments,translation-ready,buddypress,custom-colors,featured-images,full-width-template,theme-options,e-commerce,block-styles,wide-blocks,accessibility-ready
Version: 4.1.5.1775368639
Updated: 2026-04-05 05:57:19

*/

/* --- Design Tokens --- */
:root {
  --color-primary: #2d4a2d;
  --color-primary-fg: #ffffff;
  --color-secondary: #c9a84c;
  --color-secondary-fg: #1a1a1a;
  --color-accent: #c9694a;
  --color-accent-fg: #ffffff;
  --color-muted: #f5f0eb;
  --color-muted-fg: #6b6b6b;
  --color-foreground: #1a1a1a;
  --color-background: #ffffff;
  --color-lilac: #d4b8e0;
  --color-coral: #e8826a;
  --font-display: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;
  --mobile-nav-height: 64px;
  --mobile-floating-gap: 14px;
  --mobile-floating-bottom: calc(
    var(--mobile-nav-height) + env(safe-area-inset-bottom, 0px) +
      var(--mobile-floating-gap)
  );
}

#site-header {
  display: none;
}

/* ============================
   New Site Header - Desktop
   ============================ */
#new-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

body.admin-bar #new-site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar #new-site-header {
    top: 46px;
  }
}

@media (min-width: 769px) {
  #wrap {
    padding-top: 80px;
  }
}

.nsh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nsh-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nsh-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.nsh-logo a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-foreground);
}

.nsh-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nsh-nav__link {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-foreground);
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}

.nsh-nav__link:hover,
.nsh-nav__link.nsh-active {
  color: var(--color-accent);
}

.nsh-lang-menu {
  position: relative;
  flex-shrink: 0;
}

.nsh-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted-fg);
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nsh-lang:hover {
  color: var(--color-foreground);
  background: var(--color-muted);
}

.nsh-lang svg {
  flex: 0 0 auto;
}

.nsh-lang-menu__panel {
  background: var(--color-background);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(26, 26, 26, 0.14);
  display: grid;
  gap: 4px;
  min-width: 76px;
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 10000;
}

.nsh-lang-menu.is-open .nsh-lang-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nsh-lang-menu__panel a {
  border-radius: 8px;
  color: var(--color-foreground);
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.nsh-lang-menu__panel a:hover,
.nsh-lang-menu__panel a:focus-visible {
  background: var(--color-muted);
  color: var(--color-accent);
}

.nsh-lang-menu__panel a.is-active {
  background: var(--color-primary);
  color: var(--color-primary-fg);
}

/* ============================
   Mobile Bottom Nav
   ============================ */
#nsh-mobile-nav {
  display: none;
}

#nsh-mobile-lang {
  display: none;
}

@media (max-width: 768px) {
  #new-site-header {
    display: none;
  }

  #nsh-mobile-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
  }

  #nsh-mobile-lang {
    align-items: center;
    bottom: var(--mobile-floating-bottom);
    display: flex;
    justify-content: center;
    position: fixed;
    left: 14px;
    z-index: 9999;
  }

  #nsh-mobile-lang .nsh-lang {
    align-items: center;
    background: var(--color-primary);
    border-radius: 9999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    color: var(--color-primary-fg);
    display: flex;
    font-size: 12px;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    padding: 0;
    width: 38px;
  }

  #nsh-mobile-lang .nsh-lang-menu__panel {
    bottom: calc(100% + 8px);
    left: 0;
    right: auto;
    top: auto;
    transform: translateY(4px);
  }

  #nsh-mobile-lang.is-open .nsh-lang-menu__panel {
    transform: translateY(0);
  }

  .nsh-mobile-nav__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: var(--mobile-nav-height);
    padding: 0 4px;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .nsh-mobile-item {
    position: relative;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    min-height: 52px;
    padding: 6px 2px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-muted-fg);
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.15;
    transition:
      color 0.2s ease,
      background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .nsh-mobile-item svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
  }

  .nsh-mobile-item.nsh-mobile-active,
  .nsh-mobile-item:hover {
    color: var(--color-accent);
  }

  .nsh-mobile-indicator {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 32px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--color-accent);
    transform: translateX(-50%);
  }

  body {
    padding-bottom: 80px;
  }
}

/* ===========================================
   Footer
   =========================================== */
#new-footer {
  background: var(--color-primary);
  color: var(--color-primary-fg);
  position: relative;
  overflow: hidden;
}

.nf-flower {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 96px;
  opacity: 0.2;
  pointer-events: none;
}

.nf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .nf-container {
    padding: 80px 24px;
  }
}

.nf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .nf-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Brand */
.nf-brand img,
.nf-brand .custom-logo {
  width: 55%;
  margin-bottom: -26px;
  margin-left: -12%;
}

.nf-brand__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-fg);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.nf-brand__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  margin: 0;
}

/* Heading */
.nf-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-primary-fg);
}

/* Nav */
.nf-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nf-nav__list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nf-nav__list a:hover {
  color: var(--color-secondary);
}

/* Social */
.nf-social__icons {
  display: flex;
  gap: 16px;
}

.nf-social__icons a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nf-social__icons a:hover {
  color: var(--color-secondary);
}

.nf-social__location {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
}

/* Bottom bar */
.nf-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 500px) {
  .nf-brand img,
  .nf-brand .custom-logo {
    width: 85%;
    margin-bottom: -26px;
    margin-left: -22%;
    margin-top: -14%;
  }
}
/* ===========================================
   WhatsApp Widget
   =========================================== */
#wa-widget {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 50;
}

@media (min-width: 769px) {
  #wa-widget {
    bottom: 81px;
  }
}

@media (max-width: 768px) {
  #wa-widget {
    bottom: var(--mobile-floating-bottom);
    right: 22px;
    z-index: 9998;
  }
}

/* FAB */
.wa-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.wa-fab:active {
  transform: scale(0.95);
}

.wa-fab__icon--close {
  display: none;
}

#wa-widget.wa-open .wa-fab__icon--chat {
  display: none;
}
#wa-widget.wa-open .wa-fab__icon--close {
  display: block;
}

/* Popup */
.wa-popup {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 288px;
  background: var(--color-background);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid #e8e8e8;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
}

#wa-widget.wa-open .wa-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wa-popup__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-foreground);
}

.wa-popup__flower {
  width: 24px;
  height: 24px;
}

.wa-popup__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted-fg);
  padding: 4px;
  transition: color 0.2s;
}

.wa-popup__close:hover {
  color: var(--color-foreground);
}

/* Options */
.wa-popup__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.wa-option:hover,
.wa-option:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
}

.wa-option--academia {
  background: var(--color-primary);
  color: var(--color-primary-fg);
}

.wa-option--academia:hover,
.wa-option--academia:focus-visible {
  background: #234023;
  box-shadow: 0 10px 24px rgba(45, 74, 45, 0.28);
  color: var(--color-primary-fg);
}

.wa-option--experience {
  background: var(--color-accent);
  color: var(--color-accent-fg);
}

.wa-option--experience:hover,
.wa-option--experience:focus-visible {
  background: #b55a3d;
  box-shadow: 0 10px 24px rgba(201, 105, 74, 0.28);
  color: var(--color-accent-fg);
}

.wa-option:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

.wa-option__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.wa-option__sub {
  font-family: var(--font-body);
  font-size: 12px;
  opacity: 0.7;
  margin: 2px 0 0;
}
