*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}


.container{
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

li{list-style-type: none;}
a{text-decoration: none;}

.custom-logo {
    width: 100%;
    max-width: 180px;
    height: 100%;
	    padding: 8px;
    background: var(--color-white);
    border-radius: 4px;
}

/* header */

header{
    padding: 32px 0;
}

header .logo{
    width: 100%;
    display: flex;
    max-width: 180px;
    height: 60px;
    border-radius: 10px;
}

header .logo a{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-accent);
  font-weight: bold;

}


header .content{
    display: flex;
    align-items: center;
    justify-content: space-between;

}

header .content nav ul{
    display: flex;
    align-items: center;
    gap: 32px;
    width: 90%;
    justify-content: center;
}

header .content nav ul li a{
    font-size: 18px;
    line-height: 24px;
    color: var(--color-accent);
    transition: all 0.3s;
}

header .content nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    position: relative;
}

header .content nav ul li {
    position: relative; 
}

header .content nav ul li a {
    font-size: 18px;
    line-height: 24px;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 12px;
    display: inline-block;
}

header .content nav ul li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 16px;  /* largura da seta */
    height: 16px; /* altura da seta */
    margin-left: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    transition: transform 0.3s;
}

header .content nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
}

/* Abre submenu ao passar o mouse no desktop */
@media (min-width: 769px) {
  header .content nav ul li:hover > ul.sub-menu {
      display: block;
  }
}


header .content nav ul li ul.sub-menu li {
    position: relative;
}

header .content nav ul li ul.sub-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--color-gray-700);
    font-size: 16px;
    transition: background 0.3s;
}

header .content nav ul li ul.sub-menu li a:hover {
    background: var(--color-gray-100);
}

header .content nav ul li ul.sub-menu li.menu-item-has-children > ul.sub-menu {
    top: 0;
    left: 100%;
}

header .content nav ul li ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu {
    display: block;
}

header .content nav ul li.menu-item-has-children:hover > a::after {
    transform: rotate(-180deg);
}

header .content .button_cta a{
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 20px;
    line-height: 20px;
    border-radius: 4px;
    padding: 6px 24px;
    cursor: pointer;
}

/* Botão Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Botão de Busca Mobile */
.search-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.search-trigger:hover {
  opacity: 0.7;
}

  .search_bar{
    display: flex;
    align-items: center;
    gap: 12px;
  }

/* Mobile Styles */
@media (max-width: 768px) {
  header .content nav ul{
    justify-content: flex-start;
  }
  header {
    padding: 16px 0;
    position: relative;
  }

  header .logo {
    max-width: 140px;
    height: 50px;
  }

  header .content {
    position: relative;
  }

  /* Mostrar hamburger */
  .menu-toggle {
    display: block;
    order: 3;
  }

  /* Esconder busca no mobile ou ajustar posição */
  .search-trigger {
    order: 2;
    margin-right: 12px;
  }

  /* Menu mobile */
  header .content nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 0 40px;
  }

  header .content nav ul li:hover > ul.sub-menu {
      display: none;
  }

  header .content nav ul li.menu-item-has-children:hover > a::after{
    transform: rotate(180deg);
  }

  header .content nav.active {
    right: 0;
  }

  header .content nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  header .content nav ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  header .content nav ul li a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
  }

  /* Submenu Mobile */
  header .content nav ul li.menu-item-has-children > a {
    position: relative;
    padding-right: 50px;
  }

  header .content nav ul li.menu-item-has-children > a::after {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
  }

  header .content nav ul li.menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(-180deg);
  }

  header .content nav ul li ul.sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: #f8f9fa;
    padding: 0;
    min-width: auto;
  }

  header .content nav ul li.menu-item-has-children.active > ul.sub-menu {
    display: block;
  }

  header .content nav ul li ul.sub-menu li {
    border-bottom: none;
  }

  header .content nav ul li ul.sub-menu li a {
    padding: 12px 24px 12px 40px;
    font-size: 15px;
  }

  /* Submenu de terceiro nível */
  header .content nav ul li ul.sub-menu li.menu-item-has-children > ul.sub-menu {
    position: static;
    left: auto;
    background: #eef0f2;
  }

  header .content nav ul li ul.sub-menu li ul.sub-menu li a {
    padding-left: 56px;
    font-size: 14px;
  }

  /* Botão CTA Mobile */
  header .content .button_cta {
    order: 4;
    display: none; /* Esconder no mobile ou ajustar */
  }

  /* Overlay do menu */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

   header .content nav ul li ul.sub-menu {
      position: static;
      box-shadow: none;
      background: #f8f9fa;
      padding: 0;
      min-width: auto;

      /* Inicial fechado */
      display: block;
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
  }

  header .content nav ul li.menu-item-has-children.active > ul.sub-menu {
      max-height: 500px;
  }

  /* Remover hover mobile */
  header .content nav ul li:hover > ul.sub-menu {
      display: block;
  }
}

@media (max-width: 480px) {
  header .content nav {
    width: 90%;
  }

  header .logo {
    max-width: 120px;
    height: 45px;
  }
}

/* index sticky post */

section.hero{
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    position: relative;
}

section.hero .container{
    max-width: 100%;
}

section.hero img{
    width: 100%;
    border-radius: 20px;
    height: auto;
    object-fit: cover;
}

section.hero .placeholder_sticky{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgba(0,0,0,0.8);
    border-radius: 20px;
}

section.hero .sticky_post{
  position: relative;
  display: flex;
  height: auto;
}

section.hero .sticky_post::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 2;
  border-radius: 20px;
}

section.hero .text{
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 10;
	max-width:980px;
	width:100%;
}

/* Parágrafo da hero */
section.hero .text p {
    color: var(--color-white);
    font-size: clamp(14px, 1.2vw, 18px); /* mínimo 14px, cresce com a tela, máximo 18px */
    line-height: 1.6;
}

/* Título principal da hero */
section.hero .text h1 {
    color: var(--color-white);
    font-size: clamp(28px, 5vw, 48px); /* mínimo 28px, máximo 48px, cresce com a tela */
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
    width: 100%;
    max-width: 808px;
}

/* Subtítulo / destaque da hero */
section.hero .text h6 {
    color: var(--color-white);
    font-size: clamp(12px, 1.5vw, 18px); /* mínimo 12px, máximo 16px */
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width:1600px){
  section.hero .container{
    max-width:100%;
  }
}

@media (max-width:768px){

  section.hero img,section.hero .placeholder_sticky, section.hero .sticky_post{
      height: 65vh;
  }

  section.hero{
    padding: 32px 0;
  }
  section.hero .text{
    max-width: 280px;
  }

  .sticky_post{
    height: 580px;
  }
  .sticky_post img{
    height: 100%;
    object-fit: cover;
  }
}



/* section home all posts */


section.all_posts{
    padding: 128px 0;
}

section.all_posts h2.title_all_posts{
    font-size: clamp(22px, 1.5vw, 28px);
    line-height: 1.5;
    font-weight: 600;
    color: var(--color-accent);
    margin: 0 0 24px;
}

section.all_posts .content .posts_content,
section.all_posts .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 0;
	width:100%;
}

section.all_posts .content .post_single{
    width: 100%;
	max-width:32%;

}

section.all_posts .content .post_single img.post_image,
.post_single img.post_image{
    width: 100%;
    border-radius: 14px;
    height: 280px;
    object-fit: cover;
}

section.all_posts .content .post_single .text{
    padding: 0 10px;
}

section.all_posts .content .post_single .text h3 {
    font-size: clamp(16px, 2vw, 24px); /* mínimo 18px, máximo 24px */
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-gray-700);
    margin: 16px 0 16px;
}

/* Texto / resumo do post nos cards */
section.all_posts .content .post_single .text p {
    font-size: clamp(12px, 1.5vw, 14px); /* mínimo 14px, máximo 16px */
    line-height: 1.6;
    color: var(--color-gray-500);
    margin-bottom: 12px;
    min-height: 40px;
}


section.all_posts .content .post_single .author_date{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0 0;
}
section.all_posts .content .post_single .author_date .author{
    display: flex;
    align-items: center;
    gap: 8px;
}

section.all_posts .content .post_single .author_date p{
    min-height: auto;
    margin: 0;
}

section.all_posts .content .post_single .author_date .author img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

section.all_posts .content .load_more{
    display: flex;
    justify-content: center;
    margin: 32px 0 0;
    width: 100%;
}

section.all_posts .content .load_more button{
    cursor: pointer;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 8px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
}

/* newsletter */
.newsletter {
    background: var(--color-black);
    padding: 40px 20px 64px;
    text-align: center;
    max-width: 780px;
    margin: 40px auto;
}

.newsletter h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 12px;
    color: var(--color-white);
}

.newsletter p {
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 20px;
    color: var(--color-white);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    flex: 1;
    min-width: 220px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--color-gray-400);
}

.newsletter-success {
    margin-top: 15px;
    color: var(--color-success);
    font-weight: 600;
}

@media (max-width:768px){
  .newsletter-form button{
    width: 100%;
  }
}

/* footer */

footer{
  margin: 20px;
  border-radius: 40px;
}

.site-footer {
  background: var(--color-black);
  color: #FFFFFF;
  padding: 20px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-cta {
  text-align: center;
  margin-bottom: 50px;
}

.footer-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

.footer-cta p {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-bottom: 20px;
  color: #CCCCCC;
}

.footer-buttons .btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* Footer links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #AAAAAA;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #CCCCCC;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--color-white);
  padding-top: 20px;
  font-size: 12px;
  color: #888888;
}

.footer-logo {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-bottom p a {
  color: var(--color-white);
  text-decoration: underline;
}

/* Responsivo Mobile - Accordion */
@media(max-width: 768px) {
  .site-footer {
    padding: 40px 10px 30px;
  }

  footer{
    margin: 10px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0;
  }

  .footer-column {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-column h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin: 0;
    cursor: pointer;
    font-size: 15px;
    color: #FFFFFF;
    user-select: none;
    position: relative;
  }

  .footer-column h4::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #AAAAAA;
    transition: transform 0.3s ease;
  }

  .footer-column.active h4::after {
    transform: rotate(45deg);
  }

  .footer-column ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer-column.active ul {
    max-height: 500px;
    padding-bottom: 16px;
  }

  .footer-column ul li {
    margin-bottom: 10px;
    padding-left: 0;
  }

  .footer-column ul li a {
    font-size: 14px;
    color: #CCCCCC;
  }
}


/* page category */

/* ========================================
   CATEGORIA - HERO
======================================== */

section.category-hero {
  background: linear-gradient(135deg, var(--color-gray-700) 0%, var(--color-accent) 100%);
  padding: 80px 0;
  margin-bottom: 64px;
}

.category-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.category-label {
  color: var(--color-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.9;
}

.category-header h1 {
  color: var(--color-white);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.category-description {
  color: var(--color-white);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.category-meta {
  margin-top: 24px;
}

.category-meta p {
  color: var(--color-white);
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
}

/* ========================================
   CATEGORIA - POSTS
======================================== */

section.category-posts {
  padding: 64px 0 128px;
}

/* ========================================
   PAGINAÇÃO
======================================== */

.pagination-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pagination-wrapper .page-numbers {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.pagination-wrapper .page-numbers li {
  list-style: none;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--color-gray-700);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid var(--color-gray-300);
}

.pagination-wrapper .page-numbers a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.pagination-wrapper .page-numbers .current {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.pagination-wrapper .page-numbers .prev,
.pagination-wrapper .page-numbers .next {
  font-weight: 600;
}

/* ========================================
   SEM POSTS
======================================== */

.no-posts {
  text-align: center;
  padding: 80px 20px;
  width: 100%;
}

.no-posts h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-gray-700);
  margin-bottom: 12px;
}

.no-posts p {
  font-size: 16px;
  color: var(--color-gray-500);
  margin-bottom: 24px;
}

.no-posts .btn-home {
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.no-posts .btn-home:hover {
  background: var(--color-gray-700);
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  section.category-hero {
    padding: 60px 0;
    margin-bottom: 48px;
  }

  .category-label {
    font-size: 12px;
  }

  section.category-posts {
    padding: 48px 0 80px;
  }

  .pagination-wrapper .page-numbers a,
  .pagination-wrapper .page-numbers span {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* search */

/* ========================================
   SEARCH - HERO
======================================== */

section.search-hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gray-700) 100%);
  padding: 80px 0 100px;
  margin-bottom: 64px;
}

.search-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.search-label {
  color: var(--color-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.9;
}

.search-header h1 {
  color: var(--color-white);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  word-break: break-word;
}

.search-meta {
  margin-bottom: 32px;
}

.search-meta p {
  color: var(--color-white);
  font-size: 16px;
  opacity: 0.85;
  font-weight: 500;
}

/* ========================================
   SEARCH FORM HERO
======================================== */

.search-form-wrapper {
  margin-top: 32px;
}

.search-form-hero {
  display: flex;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-form-hero input[type="search"] {
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: transparent;
}

.search-form-hero input[type="search"]::placeholder {
  color: var(--color-gray-400);
}

.search-form-hero button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.search-form-hero button:hover {
  background: var(--color-gray-700);
  transform: translateY(-2px);
}

.search-form-hero button svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   SEARCH RESULTS
======================================== */

section.search-results {
  padding: 32px 0 64px;
}

.search-results .post_single .post-category {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
  padding: 4px 12px;
  background: var(--color-gray-100);
  border-radius: 4px;
}

@media (max-width:768px){
  section.all_posts{
    padding: 32px 0;
  }
  section.all_posts .content .post_single{
    max-width: 48%;
  }
}

@media (max-width:480px){
  section.all_posts .content .post_single{
    max-width: 98%;
  }
}


/* ========================================
   NO RESULTS
======================================== */

.no-results {
  width: 100%;
  margin: 0 auto;
}

.no-results .no-results-text{
  text-align: center;
}

.no-results-icon {
  margin-bottom: 24px;
  color: var(--color-gray-300);
}

.no-results-icon svg {
  width: 80px;
  height: 80px;
}

.no-results h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-gray-700);
  margin-bottom: 12px;
}

.no-results > p {
  font-size: 16px;
  color: var(--color-gray-500);
  margin-bottom: 32px;
}

/* ========================================
   SEARCH SUGGESTIONS
======================================== */

.search-suggestions {
  background: var(--color-gray-100);
  padding: 24px;
  border-radius: 8px;
  text-align: left;
  max-width: 500px;
  margin: 24px auto 42px;
}

.search-suggestions h3 {
  font-size: 18px;
  color: var(--color-gray-700);
  margin-bottom: 12px;
}

.search-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-suggestions ul li {
  padding: 8px 0;
  color: var(--color-gray-600);
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.search-suggestions ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* ========================================
   POPULAR POSTS
======================================== */

.popular-posts {
  margin: 40px 0;
}

.popular-posts h3 {
  font-size: 22px;
  color: var(--color-gray-700);
  margin-bottom: 24px;
}

.popular-posts-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.popular-post-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--color-gray-100);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.popular-post-item:hover {
  background: var(--color-gray-200);
  transform: translateY(-4px);
}

.popular-post-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.popular-post-item h4 {
  font-size: 16px;
  color: var(--color-gray-700);
  line-height: 1.4;
  margin: 0;
}

.no-results .btn-home {
  padding: 12px 32px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 16px;
  margin: 0 auto;
  display: flex;
  max-width: fit-content;
}

.no-results .btn-home:hover {
  background: var(--color-gray-700);
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVO - SEARCH
======================================== */

@media (max-width: 768px) {
  section.search-hero {
    padding: 60px 0 80px;
    margin-bottom: 48px;
  }

  .search-form-hero {
    flex-direction: column;
  }

  .search-form-hero button {
    width: 100%;
    justify-content: center;
  }

  section.search-results {
    padding: 48px 0 80px;
  }

  .popular-posts-grid {
    grid-template-columns: 1fr;
  }

  .search-suggestions {
    text-align: center;
  }

  .search-suggestions ul li {
    padding-left: 0;
  }

  .search-suggestions ul li::before {
    display: none;
  }
}



.search-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: all 0.3s;
  border-radius: 4px;
}

.search-trigger:hover {
  background: var(--color-gray-100);
  transform: scale(1.1);
}

.search-trigger svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   MODAL DE BUSCA
======================================== */

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Overlay escuro */
.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Conteúdo do Modal *//* Conteúdo do Modal - Glass Effect Minimalista */
.search-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 90%;
  max-width: 550px;
  background: var(--color-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  padding: 36px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transform: translate(-50%, -50%) translateY(-20px);
  transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
  transform: translate(-50%, -50%) translateY(0);
}

/* Botão de fechar - Minimalista */
.search-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #999;
  transition: color 0.2s ease;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-modal-close:hover {
  color: #666;
}

.search-modal-close svg {
  width: 18px;
  height: 18px;
}

.search-modal-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 12px;
  transition: border-color 0.2s ease;
}

.search-input-wrapper:focus-within {
  border-color: var(--color-accent);
}

.search-input-wrapper svg {
  color: #aaa;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.search-input-wrapper input[type="search"] {
  flex: 1;
  padding: 12px 10px;
  font-size: 15px;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.search-input-wrapper input[type="search"]::placeholder {
  color: #aaa;
}

.search-input-wrapper input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

.search-modal-form button[type="submit"] {
  padding: 12px 20px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.search-modal-form button[type="submit"]:hover {
  opacity: 0.9;
}
/* Responsivo */
@media (max-width: 768px) {
  .search-modal-content {
    width: 95%;
    padding: 24px;
    border-radius: 16px;
  }

  .search-modal-form{
    flex-direction: column;
  }
  
  .search-input-wrapper input[type="search"] {
    font-size: 15px;
  }
  
  .search-modal-form button[type="submit"],
  .search-input-wrapper {
    font-size: 14px;
    width: 100%;
  }
}
/* ========================================
   RESPONSIVO - MODAL BUSCA
======================================== */

@media (max-width: 768px) {
  .search-modal {
    padding-top: 5vh;
  }

  .search-modal-content {
    width: 95%;
    padding: 32px 24px;
    border-radius: 12px;
  }

  .search-modal-inner h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .search-input-wrapper input[type="search"] {
    font-size: 16px;
    padding: 16px 12px;
  }

  .search-modal-form button[type="submit"] {
    padding: 14px 24px;
    font-size: 16px;
  }

  .search-suggestions-modal {
    margin-top: 24px;
  }
}

/* Ajuste no header para acomodar o botão de busca */
header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

header .content nav {
  flex: 1;
  display: flex;
  justify-content: center;
}


/* single */


/* ========================================
   SINGLE POST - HERO
======================================== */

.single-post-main {
  background: var(--color-white);
}

.single-post-hero {
  padding: 60px 0 40px;
}

.post-header {
  max-width: 900px;
  margin: 0 auto;
}

/* Categoria Tag */
.post-category-tag {
  margin-bottom: 20px;
}

.post-category-tag a {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.post-category-tag a:hover {
  background: var(--color-gray-700);
  transform: translateY(-2px);
}

/* Título do Post */
.post-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-gray-700);
  margin-bottom: 24px;
}

/* Meta Informações */
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: 32px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: var(--color-gray-700);
  font-size: 16px;
}

.post-date {
  font-size: 14px;
  color: var(--color-gray-500);
}

.post-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.post-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-gray-500);
}

.post-stats svg {
  color: var(--color-gray-400);
}

/* Imagem Destaque */
.post-featured-image {
  border-radius: 16px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   SINGLE POST - CONTEÚDO
======================================== */

.single-post-content {
  padding: 0px 0 80px;
}

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
}

/* Sidebar de Compartilhamento */
.post-sidebar {
  position: relative;
}

.share-sticky {
  position: sticky;
  top: 100px;
}

.share-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-500);
  margin-bottom: 12px;
  text-align: center;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.share-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
}

.share-btn.facebook {
  background: #1877F2;
  color: white;
}

.share-btn.twitter {
  background: #1DA1F2;
  color: white;
}

.share-btn.linkedin {
  background: #0A66C2;
  color: white;
}

.share-btn.whatsapp {
  background: #25D366;
  color: white;
}

.share-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Conteúdo do Post */
.post-content {
  max-width: 720px;
}

.post-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-gray-600);
  margin-bottom: 24px;
}

.post-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gray-700);
  margin: 0px 0 20px;
  line-height: 1.3;
}

.post-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gray-700);
  margin: 0px 0 20px;
  line-height: 1.3;
}

.post-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-gray-700);
  margin: 32px 0 16px;
  line-height: 1.4;
}

.post-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-gray-700);
  margin: 24px 0 12px;
}

.post-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-700);
  margin: 24px 0 12px;
}

.post-content ul,
.post-content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.post-content li {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-gray-600);
  margin-bottom: 12px;
}

.post-content a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.3s;
}

.post-content a:hover {
  color: var(--color-gray-700);
}

.post-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--color-gray-600);
  font-size: 20px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

.post-content code {
  background: var(--color-gray-100);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: var(--color-accent);
}

.post-content pre {
  background: var(--color-gray-700);
  color: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 32px 0;
}

.post-content pre code {
  background: transparent;
  color: var(--color-white);
  padding: 0;
}

/* Tags do Post */
.post-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-gray-200);
}

.tags-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-500);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.tag-item:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ========================================
   AUTHOR BOX
======================================== */

.author-box {
  background: var(--color-gray-100);
  padding: 60px 0;
}

.author-box-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.author-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--color-white);
}

.author-details {
  flex: 1;
}

.author-details h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gray-700);
  margin-bottom: 12px;
}

.author-details p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin-bottom: 16px;
}

.author-link {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.author-link:hover {
  color: var(--color-gray-700);
  transform: translateX(4px);
}

/* ========================================
   POSTS RELACIONADOS
======================================== */

.related-posts {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--color-gray-700);
  text-align: center;
  margin-bottom: 48px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.related-post-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s;
}

.related-post-item:hover {
  transform: translateY(-8px);
}

.related-post-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.related-post-text {
  padding: 0 4px;
}

.related-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.related-post-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gray-700);
  line-height: 1.4;
  margin-bottom: 8px;
}

.related-date {
  font-size: 14px;
  color: var(--color-gray-500);
}

/* ========================================
   COMENTÁRIOS
======================================== */

.comments-section {
  padding: 60px 0 80px;
  background: var(--color-gray-100);
}

.comments-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Seção de Comentários */
.comments-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.comments-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Título dos Comentários */
.comment-reply-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.comment-reply-title small {
  font-size: 14px;
  font-weight: 400;
  margin-left: 12px;
}

.comment-reply-title small a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.comment-reply-title small a:hover {
  color: var(--color-accent);
}

/* Informações de Login */
.logged-in-as {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
}

.logged-in-as a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.logged-in-as a:hover {
  opacity: 0.8;
}

.required {
  color: #e74c3c;
  font-weight: 600;
}

/* Formulário de Comentário */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-form-comment label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.comment-form-comment textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s ease;
}

.comment-form-comment textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.1);
}

/* Botão de Envio */
.form-submit {
  margin: 0;
}

.form-submit .submit {
  padding: 14px 32px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit .submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Lista de Comentários (caso tenha) */
h3#comments{
  margin: 0 0 24px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  max-width: 680px;
  font-weight: 600;
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.comment {
  padding: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #fafafa;
}

.comment-author {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.comment-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.reply {
  margin-top: 12px;
}

.reply a {
  font-size: 13px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.reply a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
  .comments-section {
    padding: 40px 0;
  }
  
  .comments-wrapper {
    padding: 24px;
    border-radius: 8px;
  }
  
  .comment-reply-title {
    font-size: 20px;
  }
  
  .logged-in-as {
    font-size: 13px;
    padding: 10px 12px;
  }
  
  .form-submit .submit {
    width: 100%;
  }
}

/* ========================================
   RESPONSIVO - SINGLE POST
======================================== */

@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .post-sidebar {
    order: 2;
    margin-top: 40px;
  }

  .share-sticky {
    position: static;
  }

  .share-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .single-post-hero {
    padding: 40px 0 24px;
  }

  .post-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-content p,
  .post-content li {
    font-size: 16px;
  }

  .post-content h2,
  .post-content h1 {
    font-size: 28px;
    margin: 32px 0 16px;
  }

  .post-content h3 {
    font-size: 22px;
  }

  .author-box-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .related-posts {
    padding: 60px 0;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* 404*/

/* Página 404 */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 40px 20px;
}

.error-404-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Número 404 */
.error-404-number {
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-accent) 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Título */
.error-404-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Descrição */
.error-404-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Botões */
.error-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-404-btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.error-404-btn-primary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.error-404-btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
}

.error-404-btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #e0e0e0;
}

.error-404-btn-secondary:hover {
  border-color: #333;
  background: #333;
  color: white;
}

/* Campo de Busca na 404 */
.error-404-search {
  margin-top: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-search form {
  display: flex;
  gap: 8px;
}

.error-404-search input[type="search"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.error-404-search input[type="search"]:focus {
  border-color: var(--color-accent);
}

.error-404-search button {
  padding: 12px 24px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.error-404-search button:hover {
  opacity: 0.9;
}

/* Ilustração/Ícone */
.error-404-icon {
  margin-bottom: 30px;
}

.error-404-icon svg {
  width: 200px;
  height: 200px;
  opacity: 0.7;
}

/* Animação sutil */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.error-404-number {
  animation: float 3s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 768px) {
  .error-404-number {
    font-size: 100px;
  }
  
  .error-404-title {
    font-size: 24px;
  }
  
  .error-404-description {
    font-size: 15px;
  }
  
  .error-404-actions {
    flex-direction: column;
  }
  
  .error-404-btn {
    width: 100%;
  }
  
  .error-404-search form {
    flex-direction: column;
  }
  
  .error-404-search button {
    width: 100%;
  }
  
  .error-404-icon svg {
    width: 150px;
    height: 150px;
  }
}