:root {
  --rc-primary: #be1920;
  --rc-primary-dark: #9c151b;
  --rc-accent: #f2c94c;
  --rc-dark: #11131a;
  --rc-light: #f7f8fb;
  --rc-ink: #0f172a;
  --bs-primary: #be1920;
  --bs-primary-rgb: 190, 25, 32;
  --bs-warning: #f2c94c;
  --bs-warning-rgb: 242, 201, 76;
  --bs-border-radius: 0.5rem;
  --bs-border-radius-lg: 0.5rem;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--rc-light);
  color: var(--rc-ink);
}

.lucide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
}

a {
  text-decoration: none;
  color: var(--rc-primary);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Outfit", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.h2,
h2 {
  font-size: 1.6rem;
  margin: 30px 0 10px;
}

@media (max-width: 576px) {
  .h2,
  h2 {
    font-size: 1.4rem;
    margin: 30px 0 10px;
  }
}

table {
  border-collapse: collapse;
  background-color: #fbfbfb;
  width: 100%;
  margin-bottom: 20px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #dfdede;
  border-style: solid;
  border-width: 1px;
}

th,
td {
  padding: 8px;
  text-align: left;
}

th {
  background-color: #7c7c7c;
  color: #fff;
}

tr:nth-child(even) {
  background-color: #e8e8e8;
}

tr:hover {
  background-color: #dfdfdf;
}

.btn:hover {
  color: var(--rc-dark);
  background-color: var(--rc-accent);
  border-color: var(--rc-accent);
}

.bg-warning-subtle {
  background-color: #f5df80 !important;
}

.text-xs {
  font-size: 0.75rem;
}

.rc-topbar {
  background: #333333;
  color: #e5e7eb;
  font-size: 13px;
}

.rc-topbar a {
  color: #cdcdcf;
}

.rc-topbar a:hover {
  color: #fff;
}

.rc-topbar .rc-topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: none;
  width: auto;
  height: auto;
}

.rc-fav-btn.btn-primary {
  background: #232323;
  border-color: #232323;
  color: #ffffff;
}

.rc-fav-btn.btn-primary:hover,
.rc-fav-btn.btn-primary:focus {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.rc-navbar {
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  z-index: 1030;
}

.rc-navbar .navbar-brand img {
  height: 70px;
}

.rc-navbar .dropdown-menu {
  min-width: 220px;
}

.rc-navbar .dropdown-submenu {
  position: relative;
}

.rc-navbar .dropdown-submenu > .dropdown-menu {
  top: -10px;
  left: 100%;
  margin-left: -5px;
  display: none;
}

.rc-navbar .dropdown-menu > .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-item {
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
}

.dropdown-item.active {
  color: #333333;
  background-color: var(--bs-dropdown-link-hover-bg) !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--rc-dark);
  background-color: var(--rc-accent);
}

.rc-navbar .navbar-nav {
  gap: 0.3rem !important;
}

.rc-navbar .dropdown-submenu > .dropdown-item i {
  transition: transform 0.2s ease;
}

.rc-navbar .dropdown-menu > .dropdown-submenu:hover > .dropdown-item i {
  transform: translateX(2px);
}

.rc-navbar .nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #be1920;
  border-radius: 12px;
  padding: 5px 16px !important;
}

.rc-navbar .nav-link:hover,
.rc-navbar .nav-link.active {
  color: var(--rc-dark);
  background: var(--rc-accent);
}

@media (min-width: 1080px) {
  .rc-navbar .navbar-nav {
    gap: 0.7rem !important;
  }
}

.btn-primary,
.rc-btn-primary {
  --bs-btn-bg: var(--rc-primary);
  --bs-btn-border-color: var(--rc-primary);
  --bs-btn-hover-bg: var(--rc-primary-dark);
  --bs-btn-hover-border-color: var(--rc-primary-dark);
  --bs-btn-active-bg: var(--rc-primary-dark);
  --bs-btn-active-border-color: var(--rc-primary-dark);
  box-shadow: none !important;
  font-weight: 600;
}

.btn-outline-primary,
.rc-btn-outline {
  --bs-btn-color: var(--rc-primary);
  --bs-btn-border-color: var(--rc-primary);
  --bs-btn-hover-bg: var(--rc-primary);
  --bs-btn-hover-border-color: var(--rc-primary);
  --bs-btn-active-bg: var(--rc-primary);
  --bs-btn-active-border-color: var(--rc-primary);
  box-shadow: none !important;
  font-weight: 600;
}

.btn-group-sm > .btn,
.btn-sm {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 0.8rem;
}

.btn-accent {
  background: var(--rc-accent);
  border: none;
  color: #4b3a00;
  font-weight: 600;
  box-shadow: none;
}

.btn-accent:hover {
  background: #e4bc3f;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background-color: #f3f3f3;
  color: #333;
  border: 0;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.25rem rgba(242, 201, 76, 0.5);
}

.form-check-input:checked {
  background-color: var(--rc-primary);
  border-color: var(--rc-primary);
}

.rc-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
}

.rc-card-catlist:hover {
  background: var(--rc-accent);
}

.hero-full {
  position: relative;
  margin-top: 0;
}

.full-bleed {
  width: 99vw;
  margin-left: calc(50% - 50vw);
}

/*.hero-carousel-section {
  width: 100%;
}*/ /* Pode ativar para delimitar a largura */

.hero-carousel-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 8px;
  --items-per-view: 3;
  --hero-gap: 25px;
}

.hero-carousel-viewport {
  overflow: hidden; /* Pode ativar para não aparecer os próximos itens de cada lado */
  width: 100%;
}

.hero-carousel-track {
  display: flex;
  gap: var(--hero-gap);
  transition: transform 0.5s ease;
  will-change: transform;
}

.hero-carousel-item {
  flex: 0 0
    calc(
      (100% - (var(--hero-gap) * (var(--items-per-view) - 1))) /
        var(--items-per-view)
    );
}

.hero-carousel-item .hero-slide {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.hero-carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: all 0.2s ease;
  z-index: 999;
}

.hero-carousel-arrow:hover {
  background: #f8fafc;
}

.hero-carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  border: 0;
  transition: all 0.2s ease;
}

.hero-carousel-dot.active {
  width: 26px;
  background: var(--rc-accent);
}

.hero-slide {
  position: relative;
  min-height: 420px;
  height: 420px;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hero-slide:hover .hero-image {
  transform: scale(1.06);
}

.hero-image.placeholder {
  background:
    linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.35),
      rgba(226, 232, 240, 0.7)
    ),
    url(../storage/uploads/site/logo_bw.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.45) 60%,
    rgba(15, 23, 42, 0.2) 100%
  );*/
  background: linear-gradient(
    0deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.5) 30%,
    rgba(15, 23, 42, 0.2) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  color: #fff;
  padding: 30px;
}

.hero-category {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--rc-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
}

.hero-content h2 {
  font-size: 30px;
  font-weight: 700;
  max-width: 420px;
}

.hero-content h2 a {
  color: #fff;
  text-decoration: none;
  text-shadow: 3px 3px 0 #333;
}

.hero-content h2 a:hover {
  color: #fff;
}

.hero-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta {
  display: flex;
  gap: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  justify-content: space-between;
}

.hero-meta i {
  color: var(--rc-accent);
}

.hero-cta {
  width: auto;
  border-radius: 999px;
  padding: 10px 18px;
}

.section-block {
  margin-top: 48px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 0;
}

.section-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--rc-primary);
  background: var(--rc-accent);
  padding: 5px 15px;
  border-radius: 16px;
}

.section-link:hover {
  color: var(--rc-light);
  background: var(--rc-primary);
}

@media (max-width: 576px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }

  .section-header .section-link {
    align-self: flex-start;
  }
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  /*border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);*/
  color: #475569;
  font-weight: 600;
  justify-content: center;

  flex-direction: column;
}

/*.category-pill:hover {
  color: var(--rc-primary);
  border-color: rgba(190, 25, 32, 0.3);
  background: #f3de9d;
}*/

.category-pill .category-icon {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #eaeaea;
  background: #ffffff;
  color: #333333;
}

.category-pill:hover > .category-icon {
  color: var(--rc-primary);
  border-color: rgba(190, 25, 32, 0.3);
  background: #f3de9d;
}

.category-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 199, 199, 0.2);
  color: var(--rc-primary);
}

.category-icon i {
  font-size: 18px;
}

.category-icon svg {
  width: 18px;
  height: 18px;
}

.category-name {
  font-size: 16px;
  text-align: center;
}

.category-name-lg {
  font-size: 1.2rem;
}

@media (max-width: 575px) {
  .category-pill {
    justify-content: flex-start;
  }
}

.recipe-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.recipe-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.recipe-media img,
.recipe-media .placeholder,
.recipe-media .recipe-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.recipe-card:hover .recipe-media img,
.recipe-card:hover .recipe-media .placeholder {
  transform: scale(1.06);
}

.recipe-media .placeholder {
  background:
    linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.35),
      rgba(226, 232, 240, 0.7)
    ),
    url(../storage/uploads/site/logo_bw.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.recipe-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--rc-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.recipe-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.recipe-fav.is-favorite {
  color: #be1920;
}

.recipe-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recipe-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.recipe-rating {
  font-size: 14px;
  color: #f5b301;
  margin-bottom: 6px;
}

.recipe-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #64748b;
  margin-top: auto;
}

.recipe-info span i:before {
  color: var(--rc-primary);
}

.article-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  position: relative;
}

.article-excerpt p {
  margin-bottom: 0;
}

.article-media {
  height: 200px;
  position: relative;
}

.article-media img,
.article-media .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .article-media img,
.article-card:hover .article-media .placeholder {
  transform: scale(1.06);
}

.article-media .placeholder {
  background: linear-gradient(
    135deg,
    rgba(148, 163, 184, 0.35),
    rgba(226, 232, 240, 0.7)
  );
}

.article-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--rc-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.article-chip--detail {
  position: static;
}

.article-author {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-card .author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-card .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-card .author-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #64748b;
  font-size: 28px;
}

.author-card .author-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  background: rgba(190, 25, 32, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.author-card .author-info-item i:before {
  color: var(--rc-primary);
}

.author-card .author-body a {
  color: #252525;
}

.author-card .author-body a:hover {
  color: #111111;
}

.author-username {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.article-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-title {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #6b7280;
  font-size: 14px;
}

.article-meta i:before {
  color: var(--rc-primary);
}

.article-chip.article-chip-yellow {
  background: rgb(245 218 103);
  color: var(--rc-dark);
  display: inline-flex;
  align-self: flex-start;
}

.article-excerpt-highlight {
  background: #fcfcfc;
  border-left: 8px solid #f2c94c;
  padding: 18px 20px;
  font-size: 17px;
  color: #374151;
  font-style: italic;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.article-excerpt-highlight p {
  margin-bottom: 0;
}

.article-cover {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 420px;
}

.cover-caption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #1f2937;
  text-align: justify;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--rc-primary);
  background: rgba(15, 23, 42, 0.04);
  border-radius: 12px;
  color: #374151;
  font-style: italic;
}

.article-content h2 {
  scroll-margin-top: 30px;
}

.article-toc {
  margin: 18px 0 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.article-toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.article-toc-list {
  list-style: decimal;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-toc-list a {
  color: var(--rc-dark) !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.article-toc-list a:hover {
  color: var(--rc-primary) !important;
}

.article-toc-title i {
  color: var(--rc-primary);
}

.article-detail a,
.article-detail a:visited {
  color: var(--rc-primary);
}

.article-detail a:hover {
  color: #111111;
}

.breadcrumb a,
.recipe-list-grid a,
.article-card a {
  color: #252525;
}

.breadcrumb a:hover,
.recipe-list-grid a:hover,
.article-card a:hover {
  color: #111111;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share .share-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.article-share .share-icon:hover {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.4);
  background: rgba(148, 163, 184, 0.15);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.sidebar-card h6 {
  font-size: 1.2rem;
}

.sidebar-card div a div div {
  font-size: 1rem;
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.sidebar-link:hover {
  background: rgb(245 218 103);
  color: #111827;
}

.article-sidebar a,
.article-sidebar a:visited {
  color: #252525;
}

.article-sidebar a:hover {
  color: #111111;
}

.article-body {
  padding: 16px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
}

.article-date {
  font-size: 12px;
  color: #94a3b8;
}

.newsletter-banner {
  background: #be1920;
  border-radius: 20px;
  color: #fff;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.newsletter-banner::before,
.newsletter-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.newsletter-banner::before {
  top: -30px;
  left: -30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E");
  transform: rotate(12deg);
}

.newsletter-banner::after {
  bottom: -30px;
  right: -30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E");
  transform: rotate(-12deg);
}

.newsletter-banner > * {
  position: relative;
}

.newsletter-banner h2 {
  font-size: 28px;
  font-weight: 700;
}

.newsletter-banner p {
  opacity: 0.85;
  margin-bottom: 0;
}

.newsletter-note {
  font-size: 12px;
  opacity: 0.8;
  text-align: center;
  margin-top: 8px;
  width: 100%;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 700px;
  justify-content: center;
}

.newsletter-alert {
  width: 100%;
  order: 3;
}

.newsletter-input {
  flex: 1 1 160px;
  border-radius: 999px;
  border: none;
  padding: 10px 16px;
}

.newsletter-form .btn {
  border-radius: 999px;
  padding: 10px 26px;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .newsletter-form {
    flex-wrap: nowrap;
  }
  .newsletter-input {
    min-width: 0;
  }
}

.rc-footer {
  background: #232323;
  color: #dfdfdf;
  position: relative;
  overflow: hidden;
}

.rc-footer .footer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.rc-footer .footer-meta {
  color: #8e8e8e;
}

.rc-footer a {
  color: #cbd5f5;
}

.rc-footer .footer-submit-btn {
  background: #f2c94c;
  border-color: #f2c94c;
  color: #252525;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rc-footer .footer-submit-btn:hover,
.rc-footer .footer-submit-btn:focus {
  background: #e9bf3b;
  border-color: #e9bf3b;
  color: #252525;
  text-decoration: none;
}

.rc-footer .footer-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.footer-menu li + li {
  margin-top: 10px;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cbd5f5;
  padding: 6px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.footer-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.rc-footer .rc-topbar-icon {
  color: #cdcdcf;
  font-size: 20px;
}

.rc-footer .footer-bottom {
  background-color: #111111;
  color: #9ca3af;
}

.rc-footer::before,
.rc-footer::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.rc-footer::before {
  top: -40px;
  left: -40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E");
  transform: rotate(12deg);
}

.rc-footer::after {
  bottom: -40px;
  right: -40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E");
  transform: rotate(-12deg);
}

.rc-footer > * {
  position: relative;
  z-index: 1;
}

.rc-search-btn {
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 22px;
  padding: 6px;
}

.rc-search-btn:hover {
  color: var(--rc-primary);
}

.modal-dialog,
.modal.show .modal-dialog {
  margin-top: 4rem;
}

.rc-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--rc-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  z-index: 1040;
}

.rc-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.rc-scroll-top:hover {
  background: var(--rc-primary-dark);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}

.rc-scroll-top i {
  font-size: 18px;
}

@media (max-width: 575px) {
  .rc-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 1.6em;
  height: 1.6em;
}

.rc-mobile-socials .rc-topbar-icon {
  color: #64748b;
}

.rc-mobile-socials {
  justify-content: center;
}

.rc-mobile-socials .rc-topbar-icon {
  font-size: 25px;
}

.rc-offcanvas {
  width: 280px;
  max-width: 85vw;
}

.rc-mobile-links .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #64748b;
  border-radius: 8px;
  padding: 10px 12px;
}

.rc-mobile-links .nav-link:hover,
.rc-mobile-links .nav-link.active {
  background: rgba(242, 201, 76, 0.7);
  color: var(--rc-primary);
}

.rc-mobile-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #64748b;
  border-radius: 8px;
  padding: 10px 12px;
}

.rc-mobile-nav .nav-link:hover,
.rc-mobile-nav .nav-link.active {
  background: rgba(242, 201, 76, 0.7);
  color: var(--rc-primary);
}

.rc-mobile-nav .nav-link .nav-plus {
  margin-left: auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  color: #475569;
  font-weight: 700;
}

.rc-mobile-nav .nav-link .nav-plus::before {
  content: "+";
}

.rc-mobile-nav .nav-link[aria-expanded="true"] .nav-plus::before {
  content: "-";
}

.rc-mobile-nav .nav-link.nav-link-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  flex: 0 0 auto;
}

.rc-mobile-nav .nav-link.nav-link-toggle:hover {
  background: none;
}

.filter-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  color: #475569;
  font-weight: 600;
  font-size: 13px;
}

.filter-accordion-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-accordion-toggle {
  border: 0;
  background: transparent;
  color: #94a3b8;
  padding: 8px;
  border-radius: 10px;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.filter-accordion-toggle:hover {
  background: rgba(148, 163, 184, 0.15);
  color: #475569;
}

.filter-accordion-toggle i {
  font-size: 14px;
}

.filter-accordion-toggle .fa-plus {
  display: none;
}

.filter-accordion-toggle.collapsed .fa-plus {
  display: inline-block;
}

.filter-accordion-toggle.collapsed .fa-minus {
  display: none;
}

.filter-accordion-body .filter-item {
  padding: 6px 10px;
}

.filter-item .filter-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-item .filter-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  margin-right: 6px;
  font-size: 18px;
  line-height: 1;
}

.filter-item .filter-icon svg,
.filter-item svg.lucide {
  width: 18px;
  height: 18px;
  color: #b0b0b0;
}

.filter-item.active,
.filter-item:hover {
  background: rgba(160, 160, 160, 0.08);
  color: var(--rc-primary);
}

.filter-item:hover .filter-icon {
  color: var(--rc-primary);
}

.recipe-list-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recipe-view {
  display: none;
}

.recipe-view.active {
  display: block;
}

.view-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  background: #f1f5f9;
  border-radius: 999px;
}

.view-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  background: transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.view-toggle-btn.active,
.view-toggle-btn:hover {
  background: #ffffff;
  color: var(--rc-primary);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
}

.recipe-list-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recipe-list-item {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.recipe-card,
.recipe-list-item {
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.recipe-card:hover,
.recipe-list-item:hover {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.recipe-list-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.recipe-card h3 a,
.recipe-list-item h3 a {
  color: inherit;
}

.recipe-list-image {
  position: relative;
  flex: 0 0 240px;
  border-radius: 16px;
  overflow: hidden;
}

.recipe-list-image img,
.recipe-list-image .bg-secondary,
.recipe-list-image .recipe-placeholder {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.recipe-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recipe-list-content h3 {
  margin: 6px 0 6px;
}

.recipe-list-content p {
  margin-bottom: 8px;
}

.recipe-list-link {
  color: var(--rc-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  padding: 7px 20px;
  background: var(--rc-accent);
  border-radius: 999px;
  max-width: 160px;
}

@media (max-width: 991.98px) {
  .recipe-list-item {
    flex-direction: row;
  }
  .recipe-list-image {
    flex: 0 0 170px;
  }
  .recipe-list-image img,
  .recipe-list-image .bg-secondary {
    height: 120px;
  }
}

@media (max-width: 575px) {
  .recipe-list-image {
    flex: 0 0 140px;
  }
  .recipe-list-image img,
  .recipe-list-image .bg-secondary {
    height: 100%;
  }
  .recipe-list-item {
    gap: 12px;
    padding: 12px;
  }
}

@media (max-width: 767px) {
  .article-linked-recipes .recipe-list-item {
    flex-direction: column;
    align-items: stretch;
  }
  .article-linked-recipes .recipe-list-image {
    flex: 0 0 auto;
    width: 100%;
  }
  .article-linked-recipes .recipe-list-image img,
  .article-linked-recipes .recipe-list-image .recipe-placeholder {
    height: 120px;
  }
}

.recipe-list-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
  .recipe-list-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .recipe-list-grid,
  .recipe-list-grid--3,
  .recipe-list-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .recipe-list-grid,
  .recipe-list-grid--3,
  .recipe-list-grid--4 {
    grid-template-columns: 1fr;
  }
}

@media print {
  .sticky-top {
    position: static !important;
    top: auto !important;
  }
  .rc-scroll-top {
    display: none !important;
  }
  .newsletter-banner,
  .rc-card [data-ajax="comment"],
  #comment-list,
  #comment-alert,
  #comment-info,
  .share-icons,
  #shareRecipeModal {
    display: none !important;
  }
}

.recipe-detail-hero {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.recipe-detail-hero img {
  object-fit: cover;
  min-height: 365px;
}

.recipe-cover-placeholder {
  min-height: 365px;
  background:
    linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.35),
      rgba(226, 232, 240, 0.7)
    ),
    url("../storage/uploads/site/logo_bw.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.recipe-placeholder {
  background:
    linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.35),
      rgba(226, 232, 240, 0.7)
    ),
    url("../storage/uploads/site/logo_bw.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.recipe-category-badge {
  background: #f2c94c;
  color: #232323;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.recipe-detail-info {
  display: flex;
  min-height: 365px;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  height: -webkit-fill-available;
}

.recipe-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  font-size: 16px;
  width: 100%;
  /*justify-content: space-between;*/
  margin-top: auto;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 15px 0;
}

.recipe-detail-meta .recipe-meta-item {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  /*border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  padding: 15px 30px;*/
}

.recipe-meta-title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #9ca3af;
  font-weight: 600;
}

.recipe-meta-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111827;
}

.recipe-detail-meta i {
  color: #be1920;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .recipe-detail-hero img {
    min-height: 270px;
  }

  .recipe-detail-info {
    min-height: auto;
  }

  .recipe-detail-meta span {
    padding: 15px 10px;
  }

  .recipe-rating {
    margin: 10px 3px;
  }

  .recipe-detail-meta {
    flex-wrap: nowrap;
    gap: 5px;
    overflow-x: auto;
  }

  .recipe-detail-meta .recipe-meta-item {
    min-width: 110px;
  }

  .recipe-meta-title {
    font-size: 10px;
  }

  .recipe-meta-value {
    font-size: 15px;
    white-space: nowrap;
  }

  .recipe-actions {
    flex-wrap: nowrap;
    gap: 10px !important;
  }

  .recipe-actions form {
    flex: 1 1 auto;
  }

  .rc-fav-btn.rc-fav-btn-lg {
    width: 100%;
  }
}

.recipe-detail-meta .icon-difficulty:before {
  color: #be1920;
}

.recipe-detail-meta .icon-time:before {
  color: #be1920;
}

.recipe-detail-meta .icon-yield:before {
  color: #be1920;
}

.recipe-actions .rc-fav-btn-lg {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.rc-action-btn {
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  border: 0;
  background-color: #efefef;
}

.rc-action-btn i {
  font-size: 1.2rem;
}

.recipe-actions {
  width: 100%;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  margin-top: auto;
  flex-wrap: nowrap;
}

.recipe-actions form {
  flex: 1 1 auto;
  display: flex;
}

.recipe-actions > .rc-fav-btn {
  flex: 1 1 auto;
}

.share-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-around;
}

.share-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  text-decoration: none;
}

.share-facebook {
  background: #1877f2;
}

.share-x {
  background: #111111;
}

.share-whatsapp {
  background: #25d366;
}

.share-copy {
  background: #6b7280;
}

.ingredient-list,
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredient-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.3);
  font-size: 14px;
}

.ingredient-checklist .ingredient-item {
  align-items: center;
  gap: 12px;
}

.ingredient-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
}

.ingredient-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.ingredient-box {
  min-width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(35, 35, 35, 0.35);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ingredient-toggle:checked + .ingredient-box {
  background: #f2c94c;
  border-color: #f2c94c;
}

.ingredient-toggle:checked + .ingredient-box::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #232323;
  font-size: 12px;
  line-height: 1;
}

.ingredient-toggle:checked ~ .ingredient-text {
  color: #9ca3af;
  text-decoration: line-through;
}

.ingredient-group-title {
  margin: 16px 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.recipe-form .step-row {
  display: block;
}

.step-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-media {
  position: relative;
  flex: 0 0 250px;
}

.step-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.my-recipes-actions {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
}

.my-recipes-actions .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .public-table {
    display: block;
    width: 100%;
  }
  .public-table thead {
    display: none;
  }
  .public-table tbody,
  .public-table tr,
  .public-table td {
    display: block;
    width: 100%;
  }
  .public-table tr {
    border: 1px solid rgba(226, 232, 240, 0.7);
    padding: 12px;
    margin-bottom: 12px;
    background: #fff;
  }
  .public-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border: none;
  }
  .public-table td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
  }
  .public-table td.text-end {
    text-align: left;
  }
  .public-table td.text-end::before {
    margin-right: auto;
  }
  .public-table td > .my-recipes-actions {
    margin-left: auto;
    justify-content: flex-start;
  }
}

.step-image--placeholder {
  background: #e5e7eb;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.step-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f2c94c;
  color: #232323;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.step-row--no-image {
  align-items: flex-start;
}

.step-badge--inline {
  position: static;
  flex: 0 0 auto;
  margin-top: 2px;
}

@media (max-width: 991.98px) {
  .step-row {
    flex-direction: column;
  }
  .step-media {
    width: 100%;
    flex: 0 0 auto;
  }
  .step-image {
    height: 200px;
  }
  .step-badge {
    top: 10px;
    left: 10px;
  }
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-primary);
  font-weight: 700;
}

.author-card {
  background: #fbfbfb;
}

.author-card .btn {
  border: 0;
  background-color: #efefef;
}

.author-card .btn:hover {
  background-color: var(--rc-accent);
}

.ad-slot-shell {
  margin: 28px 0;
}

.ad-unit {
  width: 100%;
  min-height: 80px;
}

.ad-link {
  display: block;
  text-decoration: none;
}

.ad-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.ad-unit iframe,
.ad-unit img,
.ad-unit > * {
  max-width: 100%;
}

.ad-unit iframe {
  border: 0;
}

.ad-overview-card {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  background: #fff;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.ad-overview-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.ad-overview-value {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
}

.ad-report-filter {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
}

.ad-report-chart-wrap {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
}

.ad-report-legend {
  font-size: 13px;
  color: #64748b;
}

.ad-report-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 220px;
}

.ad-report-chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ad-report-chart-bars {
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}

.ad-report-bar {
  width: 12px;
  border-radius: 999px 999px 4px 4px;
  display: inline-block;
}

.ad-report-bar--views {
  background: var(--rc-primary);
}

.ad-report-bar--clicks {
  background: #f2c94c;
}

.ad-report-chart-label {
  font-size: 12px;
  color: #64748b;
}

.ad-report-table th,
.ad-report-table td {
  vertical-align: middle;
}

.comment-card {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: #fff;
}

.comment-replies {
  margin-top: 12px;
  padding-left: 16px;
  border-left: 2px solid rgba(226, 232, 240, 0.8);
}

.comment-reply {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
}

.comment-reply .avatar {
  flex: 0 0 36px;
}

.comment-card .btn-link {
  color: var(--rc-primary);
  font-weight: 600;
  padding: 5px 10px !important;
}

.comment-card .btn-link:hover {
  color: #8f1318;
}

.rc-toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.rc-toast {
  min-width: 240px;
  max-width: 360px;
  padding: 14px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  border-left: 10px solid var(--rc-primary);
  color: #1f2937;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-8px);
  animation: rcToastIn 0.2s ease-out forwards;
}

.rc-toast--success {
  border-left-color: #22c55e;
}

.rc-toast--error {
  border-left-color: #ef4444;
}

.rc-toast-icon {
  font-size: 1.2rem !important;
  margin-top: 0;
  align-self: center;
}

.rc-toast-icon:before {
  font-size: 1.5rem !important;
}

.rc-toast--success .rc-toast-icon {
  color: #22c55e;
}

.rc-toast--error .rc-toast-icon {
  color: #ef4444;
}

.rc-toast-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 1.5rem;
}

.flash-alert {
  display: none !important;
}

@keyframes rcToastIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}

.rating-stars input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.rating-stars label {
  font-size: 25px;
  color: #d1d5db;
  cursor: pointer;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: var(--rc-accent);
}

.rc-form-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.rc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-modal {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.modal-backdrop-custom {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1055;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-dialog-custom {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.modal-dialog-lg {
  max-width: 720px;
}

.admin-scroll {
  max-height: 360px;
  overflow-y: auto;
}

.admin-option {
  cursor: pointer;
}

.upload-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upload-area {
  width: 100%;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(248, 250, 252, 0.9);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.upload-area:hover {
  border-color: rgba(190, 25, 32, 0.45);
  background: rgba(242, 201, 76, 0.12);
}

.upload-placeholder {
  text-align: center;
  padding: 16px;
  color: #94a3b8;
}

.upload-placeholder i {
  font-size: 22px;
  margin-bottom: 8px;
  color: rgba(190, 25, 32, 0.7);
}

.upload-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drag-handle {
  cursor: grab;
}

.drag-handle:active {
  cursor: grabbing;
}

.avatar {
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(226, 232, 240, 0.6);
}

.object-cover {
  object-fit: cover;
}

.fa-check-circle:before,
.fa-circle-check:before,
.fa-circle-xmark:before,
.fa-times-circle:before,
.fa-xmark-circle:before {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 40px;
    line-height: 3rem;
  }
  .hero-image {
    min-height: 370px;
  }
  .hero-slide {
    min-height: 370px;
    height: 370px;
  }
  .hero-content {
    padding: 24px;
    gap: 10px;
  }
  .hero-carousel-shell {
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 500px;
    height: 500px;
  }
  .hero-image {
    min-height: 500px;
  }
  .hero-carousel-shell {
    padding: 0 2px;
    gap: 8px;
    width: 96%; /* Adicionado para aumentar área de visualização do card */
    margin: 0 auto; /* Adicionado para aumentar área de visualização do card */
  }
  .hero-carousel-arrow {
    width: 32px;
    height: 32px;
    z-index: 999;
  }
  /* Adicionado prev e next para aumentar área de visualização do card */
  .hero-carousel-arrow {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    top: 15px;
    width: 50px;
    height: 50px;
  }
  .hero-carousel-arrow:hover,
  .hero-carousel-arrow:active {
    background: rgba(255, 255, 255, 0.5);
  }
  .hero-carousel-prev {
    left: 25px;
  }
  .hero-carousel-next {
    right: 25px;
  }
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .ad-report-chart {
    grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  }
}

.grecaptcha-badge {
  display: none !important;
}

/*** Google Ad Manager ***/
@media (min-width: 768px) {
  .admanager-article-bottom {
    max-width: 100% !important;
    display: block;
  }

  .admanager-article-bottom div {
    min-width: auto !important;
    max-width: 100% !important;
  }

  .admanager-article-bottom iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .admanager-article-bottom {
    display: none;
  }
}

.ad-article-sidebar,
.ad-recipe-ingredients-bottom,
.ad-recipe-steps-bottom,
.ad-geral-footer {
  display: block;
}

.ad-article-sidebar img,
.ad-recipe-ingredients-bottom img,
.ad-recipe-steps-bottom img,
.ad-geral-footer img {
  display: block;
  margin: 0 auto;
  width: auto;
}
