@charset "UTF-8";
/*!
Theme Name: Atipiko Brands
Theme URI: https://atipikobrands.com/
Author: Atipiko Brands
Author URI: https://atipikobrands.com/
Description: Um tema inclusivo para Atipiko Brands, Lda.
Text Domain: Thema Wordpress com ACF
Version: 1
*/
/* Reset de estilos */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Configurações padrão para blocos */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reseta a aparência dos botões */
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

/* Remove estilos padrão de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove a aparência do campo de pesquisa no Safari */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* Remove a aparência do contorno em formulários no Firefox */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:focus,
input:focus {
  outline: 0;
}

/* Remove a aparência de rolagem de textos em dispositivos móveis */
textarea {
  resize: none;
}

/* =====================
   HEADER STRUCTURE
===================== */
header {
  position: fixed;
  z-index: 10;
  margin-top: 30px;
  width: 100%;
  /* MENU TOGGLE (hamburguer) */
}
header .header-menu {
  display: flex;
  background-color: white;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
  border-radius: 35px;
  box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.15);
}
header .header-menu .logo {
  padding-left: 10px;
}
@media (max-width: 1000px) {
  header .header-menu nav {
    display: none;
  }
}
header .header-menu nav ul {
  display: flex;
  gap: 30px;
}
@media (max-width: 1000px) {
  header .header-menu .nav-btn {
    display: none;
  }
}
header .menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 10000;
  /* Animação para X */
}
@media (max-width: 1000px) {
  header .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
  }
}
header .menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
header .menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* =====================
   MOBILE MENU
===================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fe6829;
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
  transform: translateY(-5%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu .mobile-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mobile-menu .mobile-nav ul a {
  font-size: 22px;
  text-decoration: none;
  color: white;
}
.mobile-menu .menu-second {
  margin-top: 20px;
}
.mobile-menu .mobile-nav {
  margin-top: 100px;
}

/* Bloquear scroll quando o menu está aberto */
body.menu-open {
  overflow: hidden;
}

/* =====================
   SUBMENU ESTILO E HOVER
===================== */
.site-navigation ul li {
  position: relative; /* Importante para posicionar o submenu */
}

.site-navigation ul li .sub-menu {
  display: none; /* Oculto por padrão */
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 10px 0;
  z-index: 100;
}

.site-navigation ul li:hover > .sub-menu {
  display: block; /* Mostra o submenu ao passar o mouse */
}

.site-navigation ul li .sub-menu li {
  display: block;
  padding: 10px 20px;
}

.site-navigation ul li .sub-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  transition: background 0.2s ease;
}

.site-navigation ul li .sub-menu li a:hover {
  background: #f5f5f5;
  color: #fe6829;
}

.sub-menu {
  margin-top: 20px;
  margin-left: 25px;
}
.sub-menu li a {
  font-size: 19px !important;
}

.footer {
  background: #fff;
  padding: 60px 0;
  color: #000;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .footer .container {
    grid-template-columns: 1fr;
  }
}
.footer .footer__col h3 {
  font-size: 27px;
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  .footer .footer__col h3 {
    font-size: 25px;
  }
}
.footer .footer__col p,
.footer .footer__col li,
.footer .footer__col a {
  color: #000;
  text-decoration: none;
}
.footer .footer__col p:hover,
.footer .footer__col li:hover,
.footer .footer__col a:hover {
  color: #666;
}
.footer .footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.0625rem;
  color: #000000;
  background-color: #fff;
}

.cover-image {
  position: relative;
  width: 100%;
}
.cover-image > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

h1,
h2,
h3 {
  font-family: "Helvetica", sans-serif;
  font-weight: normal;
  margin-bottom: 0.625rem;
}

h1 {
  font-size: 3.125rem;
  line-height: 1.1;
}
@media (max-width: 1000px) {
  h1 {
    font-size: 1.875rem !important;
  }
}

h2 {
  font-size: 2.5rem;
  line-height: 1.1;
}
@media (max-width: 1000px) {
  h2 {
    font-size: 1.5625rem;
  }
}

h3 {
  font-size: 1.5625rem;
  line-height: 1;
}
@media (max-width: 575px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  font-size: 1.0625rem;
  line-height: 1.4;
}

.p-text {
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 575px) {
  .p-text {
    width: 100%;
  }
}
.p-text h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 28px 0 18px;
}
.p-text h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 24px 0 16px;
}
.p-text p, .p-text span {
  font-size: 1.0625rem;
  margin-bottom: 25px;
}
.p-text p:last-child, .p-text span:last-child {
  margin-bottom: 20px;
}
.p-text blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  padding-left: 16px;
  margin: 20px 0;
  color: #666;
}
.p-text ul, .p-text ol {
  padding-left: 15px;
  margin-left: 10px;
  margin-bottom: 20px;
}
.p-text ul {
  list-style-type: disc;
}
.p-text ol {
  list-style-type: decimal;
}
.p-text a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-text a:hover {
  color: #0f5bb5;
  text-decoration: underline;
}
.p-text u {
  text-decoration: underline;
}
.p-text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
}
.p-text strong {
  font-weight: bold;
}
.p-text em {
  font-style: italic;
}

.container {
  max-width: 1250px;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1000px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 30px;
  }
}

.mg-mx {
  margin: 100px 0;
}
@media (max-width: 575px) {
  .mg-mx {
    margin: 50px 0;
  }
}

.mg-md {
  margin: 50px 0;
}

.mg-pd {
  margin: 20px 0;
}

.pd-mx {
  padding: 100px 0;
}
@media (max-width: 575px) {
  .pd-mx {
    padding: 50px 0;
  }
}

.pd-md {
  padding: 50px 0;
}

.pd-pd {
  padding: 20px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 35px;
}
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 575px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slider .slide.active {
  opacity: 1;
}
.hero-slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}
.hero-slider .slide .slide-content {
  position: relative;
  z-index: 2;
  top: 65%;
  transform: translateY(-50%);
}
.hero-slider .slide .slide-content h1 {
  color: #fff;
  width: 34.375rem;
}
@media (max-width: 575px) {
  .hero-slider .slide .slide-content {
    top: 60%;
    padding: 0 1.875rem;
  }
  .hero-slider .slide .slide-content h1 {
    width: 100%;
    font-size: 2.25rem;
    line-height: 1.15;
  }
}
.hero-slider .slider-nav {
  position: absolute;
  bottom: 6.25rem;
  z-index: 3;
  display: flex;
  gap: 0.9375rem;
}
.hero-slider .slider-nav .slider-dot {
  width: 3.125rem;
  height: 0.25rem;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider .slider-nav .slider-dot.active {
  background: #FE6829;
  width: 5rem;
}
@media (max-width: 1000px) {
  .hero-slider .slide .slide-content {
    padding: 0 2.5rem;
  }
  .hero-slider .slide .slide-content h1 {
    font-size: 2.625rem;
    max-width: 30rem;
  }
  .hero-slider .slider-nav {
    bottom: 3.75rem;
    left: 2.5rem;
  }
  .hero-slider .slider-nav .slider-dot {
    width: 1.875rem;
  }
  .hero-slider .slider-nav .slider-dot.active {
    width: 3.125rem;
  }
}
@media (max-width: 575px) {
  .hero-slider .slide .slide-content {
    padding: 0 1.875rem;
  }
  .hero-slider .slide .slide-content h1 {
    font-size: 2.25rem;
    max-width: 100%;
  }
  .hero-slider .slider-nav {
    bottom: 3.125rem;
    left: 1.875rem;
  }
}

.about {
  background-color: #FE6829;
  color: white;
  padding: 80px 0;
}
.about h2 {
  width: 550px;
}
@media (max-width: 575px) {
  .about h2 {
    width: 100%;
    font-size: 1.875rem;
  }
}
.about .about_content {
  display: flex;
  gap: 70px;
}
@media (max-width: 575px) {
  .about .about_content {
    flex-direction: column;
    gap: 30px;
  }
}
.about .about_content .about_content_title {
  flex: 1;
}
.about .about_content .about_content_item {
  flex: 1;
  display: flex;
  gap: 50px;
}
.about .about_content .about_content_item h3 {
  font-size: 40px;
}

.services {
  padding: 4rem 0;
  background: #fff;
  /* tiny-slider controls */
}
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.services .section-title {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.services .my-slider .slide-item .slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .services .my-slider .slide-item .slide-content {
    flex-direction: column;
  }
}
.services .my-slider .slide-item .slide-content .text {
  flex: 1;
}
.services .my-slider .slide-item .slide-content .text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}
.services .my-slider .slide-item .slide-content .text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.services .my-slider .slide-item .slide-content .text .btn {
  display: inline-block;
  background: #ff5b2e;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}
.services .my-slider .slide-item .slide-content .text .btn:hover {
  background: #e64a1f;
}
.services .my-slider .slide-item .slide-content .image {
  flex: 1.4;
  height: 350px;
}
@media (max-width: 1000px) {
  .services .my-slider .slide-item .slide-content .image {
    flex: none;
    height: 250px;
  }
}
.services .my-slider .slide-item .slide-content .image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.services .tns-nav {
  position: absolute;
  text-align: left;
  margin-top: -14.5rem;
  bottom: -20px;
  right: 48%;
}
.services .tns-nav button {
  width: 35px;
  height: 3px;
  border: none;
  margin-right: 8px;
  background: #ccc;
  transition: all 0.3s;
}
.services .tns-nav button.tns-nav-active {
  background: #ff5b2e;
  width: 45px;
}
.services .tns-controls {
  position: absolute;
  bottom: -40px;
  right: 30px;
  display: flex;
  gap: 1rem;
}
.services .tns-controls button {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}
.services .tns-controls button:hover {
  border-color: #ff5b2e;
  color: #ff5b2e;
}

.cta {
  background: #4a4948;
  color: #fff;
  padding: 6.5rem 0 4.5rem;
  text-align: center;
}
@media (max-width: 575px) {
  .cta {
    padding: 4rem 0 3rem;
  }
}
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 900px;
}
.cta h2 {
  width: 500px;
}
@media (max-width: 575px) {
  .cta h2 {
    width: 100%;
  }
}
.cta__desc {
  margin: 0;
  color: #fff;
  max-width: 760px;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
}

.page-hero {
  width: 100%;
  display: block;
}
.page-hero__bg {
  position: relative;
  height: 16.25rem;
  min-height: 21.875rem;
  background-size: cover;
  background-position: center;
}
.page-hero__bg .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.page-hero__bg .page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 18.75rem;
}
.page-hero__bg .page-hero__inner nav ul {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.page-hero__bg .page-hero__inner nav ul li {
  position: relative;
  color: #fff;
  font-size: 0.875rem;
}
.page-hero__bg .page-hero__inner nav ul li::after {
  content: ">";
  color: #ccc;
  margin: 0 0.375rem;
}
.page-hero__bg .page-hero__inner nav ul li:last-child::after {
  content: "";
}
.page-hero__bg .page-hero__inner nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-hero__bg .page-hero__inner nav ul li a:hover {
  color: #f97316;
}
.page-hero__bg .page-hero__inner nav ul li a.active {
  color: #f97316;
}
.page-hero__content {
  background: #fff;
  padding: 80px 0 !important;
}
@media (max-width: 1000px) {
  .page-hero__content {
    padding: 25px 0 !important;
  }
}
.page-hero .hero-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}
.page-hero .hero-col--left .hero-title {
  max-width: 31.25rem;
}
.page-hero .hero-col--right p {
  margin-bottom: 1.25rem;
}
.page-hero .hero-col--right strong {
  font-weight: 700;
}
.page-hero .hero-col--right u {
  text-decoration: underline;
  text-decoration-color: #ffd700;
  text-decoration-thickness: 2px;
}
.page-hero .hero-col--right ul, .page-hero .hero-col--right ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.page-hero .hero-col--right ul {
  list-style-type: disc;
}
.page-hero .hero-col--right ol {
  list-style-type: decimal;
}
.page-hero .hero-col--right li {
  margin-bottom: 0.5em;
}
@media (max-width: 1100px) {
  .page-hero__bg {
    height: 13.75rem;
  }
  .page-hero .hero-content__inner {
    gap: 1.75rem;
  }
  .page-hero .hero-col--left .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 1000px) {
  .page-hero__bg {
    height: 12.5rem;
  }
  .page-hero .hero-content__inner {
    grid-template-columns: 1fr;
    gap: 1.125rem;
  }
  .page-hero .hero-col--left {
    order: 1;
  }
  .page-hero .hero-col--right {
    order: 2;
  }
  .page-hero .hero-col--left .hero-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }
  .page-hero .hero-col--right p {
    font-size: 1rem;
    max-width: 100%;
  }
  .page-hero__content {
    padding: 1.25rem 2.5rem;
  }
}
@media (max-width: 575px) {
  .page-hero__bg {
    height: 10rem;
  }
  .page-hero__inner {
    padding: 1.125rem 0;
  }
  .page-hero .hero-col--left .hero-title {
    font-size: 1.75rem;
  }
}

.mosaic-section {
  margin: 3.75rem 0 5.625rem;
  background: #fff;
}
.mosaic-section .mosaic-inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.mosaic-section .mosaic-grid {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.mosaic-section .mosaic-grid .mosaic-row {
  display: flex;
  gap: 1.125rem;
}
.mosaic-section .mosaic-grid .mosaic-row .mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #fff;
  transition: transform 0.3s ease;
}
.mosaic-section .mosaic-grid .mosaic-row .mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mosaic-section .mosaic-grid .mosaic-row .mosaic-item:hover img {
  transform: scale(1.05);
}
.mosaic-section .mosaic-grid .mosaic-row--top .large {
  flex: 0 0 60%;
  height: 22.5rem;
}
.mosaic-section .mosaic-grid .mosaic-row--top .small {
  flex: 0 0 40%;
  height: 22.5rem;
}
.mosaic-section .mosaic-grid .mosaic-row--bottom .small {
  flex: 0 0 40%;
  height: 20rem;
}
.mosaic-section .mosaic-grid .mosaic-row--bottom .large {
  flex: 0 0 60%;
  height: 20rem;
}
.mosaic-section .mosaic-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.mosaic-section .mosaic-cta .btn {
  background: #FE6829;
  color: #fff;
  padding: 0.875rem 2.625rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  box-shadow: 0 0.375rem 1.125rem rgba(254, 104, 41, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mosaic-section .mosaic-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.625rem 1.625rem rgba(254, 104, 41, 0.22);
}
@media (max-width: 900px) {
  .mosaic-section .mosaic-grid .mosaic-row {
    flex-direction: column;
    gap: 0.875rem;
  }
  .mosaic-section .mosaic-grid .mosaic-row .mosaic-item {
    flex: 1 1 100%;
    height: 16.25rem;
  }
  .mosaic-section .mosaic-cta .btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}
@media (max-width: 560px) {
  .mosaic-section {
    padding: 2.5rem 0 3.75rem;
  }
  .mosaic-section .mosaic-grid .mosaic-row .mosaic-item {
    height: 12.5rem;
  }
}

.btn {
  display: inline-block;
  background-color: #FE6829;
  padding: 15px 20px;
  color: white;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #4F4E4C;
  color: white;
  border: none;
}

.btn-gray {
  display: inline-block;
  background-color: #4F4E4C;
  padding: 15px 25px;
  border-radius: 25px;
  color: white;
  text-align: center;
  text-decoration: none;
}
.btn-gray:hover {
  color: white;
  border: none;
}

/*# sourceMappingURL=style.css.map */
