/*
Theme Name: Limpeza em Camadas
Theme URI: https://limpezaemcamadas.com.br
Author: Limpeza em Camadas
Author URI: https://limpezaemcamadas.com.br
Description: Tema WordPress personalizado para Limpeza em Camadas.
Version: 1.0.0
Text Domain: limpeza-em-camadas
*/

/*
|--------------------------------------------------------------------------
| CSS
|--------------------------------------------------------------------------
| O style.css funciona como arquivo principal do tema.
| Os estilos ficam separados em:
|
| - assets/css/main.css       → estilos principais
| - assets/css/responsive.css → estilos responsivos
|--------------------------------------------------------------------------
*/

/* ==========================================================================
   Base
   ========================================================================== */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.admin-bar .site-header {
  top: 25px;
}

@media (max-width: 767px) {
  .admin-bar .site-header {
    top: 0;
  }
}

/* =========================================
   404
========================================= */

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: #fff;
}

.page-404__container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.page-404__code {
  display: block;
  margin-bottom: 16px;
  color: #3b82b6;
  font-size: 88px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-404__title {
  margin: 0;
  color: #172033;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-404__description {
  max-width: 560px;
  margin: 18px auto 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.6;
}

.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.page-404__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.page-404__button:hover {
  transform: translateY(-2px);
}

.page-404__button--primary {
  background: #172033;
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.page-404__button--primary:hover {
  background: #111827;
}

.page-404__button--secondary {
  border: 1px solid #dbe3ec;
  background: #fff;
  color: #172033;
}

.page-404__button--secondary:hover {
  border-color: #3b82b6;
  color: #3b82b6;
}

@media (max-width: 767px) {
  .page-404 {
    min-height: 65vh;
    padding: 100px 20px 60px;
  }

  .page-404__code {
    font-size: 64px;
    margin-bottom: 12px;
  }

  .page-404__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .page-404__description {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .page-404__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .page-404__button {
    width: 100%;
  }
}

/* ==========================================================================
   Main CSS
   ========================================================================== */

@import url("./assets/css/main.css");

/* ==========================================================================
   Responsive CSS
   ========================================================================== */

@import url("./assets/css/responsive.css");
