@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #6a4040;
  --color-background: #f7f7ed;
  --color-surface: #f6f6d8;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.align-left {
  text-align: left;
  align-items: flex-start;
}

.align-right {
  text-align: right;
  align-items: flex-end;
}

.isFlex {
  display: flex;
  justify-content: center;
}

.botao_padrao {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.75rem 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.875em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin: 2rem;
  text-decoration: none;
}
.botao_padrao:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.link_google {
  margin: 35px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-decoration: none;
  flex-direction: column;
}
.link_google img {
  width: 140px;
}
.link_google span {
  display: block;
  color: var(--color-primary);
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 10px;
}

aside {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  right: 0;
}
aside .mascara-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  background-color: black;
  height: 120px;
  z-index: -1;
}
aside .aside-body {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
aside .aside-body .logo {
  width: 150px;
  padding: 25px 0;
}
aside .aside-body .logo img {
  width: 100%;
}
aside .aside-body .aside-menu {
  background-color: var(--color-black);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  width: 50%;
}
aside .aside-body .aside-menu > div:first-child {
  text-align: left;
  padding-left: 25px;
}
aside .aside-body .aside-menu > div:first-child a {
  color: var(--color-white);
  text-decoration: none;
  margin-right: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s;
  font-size: 1.2rem;
}
aside .aside-body .aside-menu > div:first-child a:hover {
  color: var(--color-primary);
}
aside .aside-body .aside-menu > div:last-child {
  text-align: right;
}
aside .aside-body .aside-menu > div:last-child a {
  color: var(--color-white);
  text-decoration: none;
  margin-right: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s;
}
aside .aside-body .aside-menu > div:last-child a:hover {
  color: var(--color-primary);
}
aside .aside-body .aside-menu > div:last-child a:last-child {
  margin-right: 0;
}

nav {
  position: fixed;
  width: 50%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: var(--color-black);
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.nav-open {
  transform: translateX(0);
}
nav .nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
nav .nav-close:hover {
  color: var(--color-primary);
}
nav ul {
  list-style: none;
  padding: 0;
}
nav ul li {
  margin-bottom: 1.5rem;
}
nav ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: var(--color-primary);
}
nav ul li a .nav-arrow {
  font-size: 0.9rem;
  margin-left: 0.4rem;
  transition: transform 0.3s;
  display: inline-block;
}
nav ul li.has-submenu > a {
  cursor: pointer;
}
nav ul li.has-submenu.open > a .nav-arrow {
  transform: rotate(180deg);
}
nav ul li .nav-submenu {
  list-style: none;
  padding: 0.5rem 0 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
nav ul li .nav-submenu li {
  margin-bottom: 0.75rem;
}
nav ul li .nav-submenu li a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
nav ul li .nav-submenu li a:hover {
  color: var(--color-primary);
}
nav ul li.has-submenu.open .nav-submenu {
  max-height: 200px;
}

.topo-home {
  background: url(/assets/images/background/fundo-topo.webp) top center no-repeat;
  background-size: cover;
  height: 100vh;
}
.topo-home > div:first-child {
  height: 100%;
}
.topo-home > div:first-child .topo-arte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.topo-home > div:first-child .topo-arte h1 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-white);
  text-align: center;
  padding: 1rem;
  margin-bottom: 45px;
  font-size: 3rem;
  width: 60%;
}
.topo-home > div:first-child .topo-arte p {
  text-align: center;
  margin-bottom: 45px;
}

.topo-sobre {
  height: 100vh;
  background: url(/assets/images/background/degrade-preto.webp) bottom center no-repeat;
  background-size: 100% 100%;
}
.topo-sobre > div {
  height: 100%;
}
.topo-sobre > div > div {
  padding: 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.topo-sobre > div > div h1 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-white);
  text-align: center;
  padding: 2rem;
  margin-bottom: 50px;
}
.topo-sobre > div > div p {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  text-align: center;
  padding: 0 2rem;
  text-align: justify;
}

.topo-interno .pagina-sobre-header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.topo-interno .pagina-sobre-header h1 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-white);
  text-align: center;
  padding: 2rem;
  margin-bottom: 45px;
  font-size: 3rem;
  width: 60%;
}
.topo-interno .pagina-sobre-header .bread_crumb {
  text-align: center;
  text-transform: uppercase;
}
.topo-interno .pagina-sobre-header .bread_crumb span {
  color: var(--color-white);
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 0;
  font-size: 0.8em;
}
.topo-interno .pagina-sobre-header .bread_crumb span::after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--color-white);
}
.topo-interno .pagina-sobre-header .bread_crumb a {
  color: var(--color-surface);
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 0;
  font-size: 0.8em;
  text-decoration: none;
  transition: color 0.3s;
}
.topo-interno .pagina-sobre-header .bread_crumb a:hover {
  color: var(--color-primary);
}
.topo-interno .pagina-sobre-header .bread_crumb a::after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--color-white);
}
.topo-interno .pagina-sobre-header .bread_crumb a:last-child::after {
  content: "";
}

.topo-pagina-sobre {
  background: url(/assets/images/background/topo-sobre.webp) top center no-repeat #000;
  background-size: 100% auto;
}

.topo-catering {
  background: url(/assets/images/background/topo-catering.webp) top center no-repeat #000;
  background-size: 100% auto;
}

.topo-datas-especiais {
  background: url(/assets/images/background/topo-datas-especiais.webp) top center no-repeat #000;
  background-size: 100% auto;
}

.topo-avulsos {
  background: url(/assets/images/background/topo-avulso.webp) top center no-repeat #000;
  background-size: 100% auto;
}

.cards-avulsos > div {
  flex: 0 0 calc(25% - 15px) !important;
  max-width: calc(25% - 15px) !important;
  text-align: center;
}
.cards-avulsos .item-avulso {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
}
.cards-avulsos .item-avulso .item-avulso-imagem {
  width: 240px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 16px auto;
  overflow: hidden;
}
.cards-avulsos .item-avulso strong {
  color: var(--color-primary);
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
  display: block;
  margin-bottom: 8px;
}
.cards-avulsos .item-avulso .item-tabua-frios {
  background: url(/assets/images/produtos/tabua-frios.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-mini-hamburger {
  background: url(/assets/images/produtos/mini-hamburguer.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-festa-na-caixa {
  background: url(/assets/images/produtos/festa-na-caixa.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-cesta-cafe-da-manha {
  background: url(/assets/images/produtos/cesta-cafe-manha.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-cafe-da-manha {
  background: url(/assets/images/produtos/cafe-da-manha.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-tortas-bolos {
  background: url(/assets/images/produtos/tortas-bolos.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-camafeu {
  background: url(/assets/images/produtos/camafeu.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-queijo-brie-folhado {
  background: url(/assets/images/produtos/queijo-brie-folhado.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-torta-fria {
  background: url(/assets/images/produtos/torta-fria.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-barquetes-e-panelinhas {
  background: url(/assets/images/produtos/barquetes-e-panelinhas.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-doces-tradicionais-finos {
  background: url(/assets/images/produtos/doces-tradicionais-finos.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-canapes {
  background: url(/assets/images/produtos/canapes.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-quiches {
  background: url(/assets/images/produtos/quiches.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-pudim {
  background: url(/assets/images/produtos/pudim.webp) center center/cover no-repeat;
}
.cards-avulsos .item-avulso .item-pizza-caseira-sardinha {
  background: url(/assets/images/produtos/pizza-caseira-sardinha.webp) center center/cover no-repeat;
}

.servicos-line-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 15px;
  width: 100%;
  margin-top: 75px;
  font-size: 0.8em;
}
.servicos-line-cards > div {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
  text-align: center;
}
.servicos-line-cards h4 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem;
  font-size: 1.5rem;
}
.servicos-line-cards p {
  padding: 0.8em;
}
.servicos-line-cards ul {
  list-style: none;
  padding: 0;
}
.servicos-line-cards ul li {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-black);
  text-align: left;
  padding: 0.5rem;
  text-align: justify;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sobre-angelita {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sobre-angelita > div {
  width: 50%;
  text-align: right;
}
.sobre-angelita > div h2 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  text-align: right;
  padding: 2rem;
  font-size: 2rem;
  margin-bottom: 45px;
}
.sobre-angelita > div p {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  text-align: right;
  padding: 0 2rem;
  text-align: justify;
}
.sobre-angelita > div:last-child {
  padding: 30px 0 75px 30px;
}

.sobre-design {
  background-color: var(--color-background);
  padding: 75px 0;
}
.sobre-design > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sobre-design h2 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem;
  font-size: 2rem;
  margin-bottom: 50px;
  width: 50%;
}
.sobre-design p {
  width: 60%;
}
.sobre-design .sobre-design-cards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
}
.sobre-design .sobre-design-cards > div {
  flex: 0 0 25%;
  max-width: 25%;
}

.angelita-destaque {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.angelita-destaque::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: url(/assets/images/conception/angelita2.webp) top center no-repeat;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
}

.servimos-container {
  background-color: var(--color-background);
  padding: 75px 0;
}
.servimos-container h1 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem;
  font-size: 2.6rem;
  margin: 0 auto 75px auto;
  text-transform: uppercase;
  width: 60%;
}
.servimos-container .sub {
  font-size: 1.2rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 75px;
}
.servimos-container .servimos-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.servimos-container .servimos-cards h2 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem;
  font-size: 1.8rem;
  margin-bottom: 35px;
}
.servimos-container .servimos-cards p {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-black);
  padding: 0 2rem;
  text-align: justify;
}
.servimos-container .servimos-cards > div {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  justify-content: center;
}
.servimos-container .servimos-cards > div:last-child {
  margin-bottom: 0;
}

.clientes-container {
  background-color: var(--color-white);
  padding: 75px 0;
}
.clientes-container h1 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem;
  font-size: 2.6rem;
  margin-bottom: 75px;
  text-transform: uppercase;
}
.clientes-container .sub {
  font-size: 1.2rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 75px;
}
.clientes-container .clientes-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.clientes-container .clientes-cards > div {
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.depoimentos-container {
  background-color: var(--color-surface);
  padding: 75px 0;
}
.depoimentos-container h1 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem;
  font-size: 2.6rem;
  margin-bottom: 75px;
  text-transform: uppercase;
}
.depoimentos-container p {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-primary);
  padding: 0 2rem;
  text-align: justify;
  font-size: 1.2rem;
}
.depoimentos-container span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--color-black);
  font-family: "Work Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.3em;
  text-align: center;
}

footer {
  position: relative;
  background-color: var(--color-primary);
}
footer .footer-design {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  background: url(/assets/images/background/atendimento.webp) center center no-repeat;
  background-size: cover;
}
footer .footer-body {
  padding: 10% 10% 10% 0;
  width: 50%;
}
footer .footer-body .footer-logo {
  margin-bottom: 50px;
}
footer .footer-body .footer-logo img {
  width: 100%;
  max-width: 150px;
}
footer .footer-body .footer-shortcuts {
  margin-bottom: 2rem;
}
footer .footer-body .footer-shortcuts h3 {
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-white);
  text-align: left;
  padding: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
footer .footer-body .footer-shortcuts .footer-shortcut-item {
  display: block;
  margin-bottom: 1rem;
}
footer .footer-body .footer-shortcuts .footer-shortcut-item h4 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  text-align: left;
  padding: 0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
footer .footer-body .footer-shortcuts .footer-shortcut-item a {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  text-decoration: none;
  display: block;
  font-size: 0.9em;
}
footer .footer-body .footer-form {
  margin-bottom: 50px;
  color: var(--color-white);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
footer .footer-body .footer-form p {
  margin-bottom: 2rem;
}
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-control,
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #885555;
  border-radius: 0;
  color: var(--color-white);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-shadow: none;
  outline: none;
  padding-left: 0;
}
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-control:focus,
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-select:focus {
  background: transparent;
  border-bottom-color: var(--color-white);
  box-shadow: none;
}
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-control option,
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-select option {
  color: var(--color-black);
  background: var(--color-white);
}
footer .footer-body .footer-form .footer-contact-form .form-floating > label {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-left: 0;
}
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  color: rgba(255, 255, 255, 0.8);
  transform: scale(0.85) translateY(-1rem) translateX(0);
}
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-control:focus ~ label,
footer .footer-body .footer-form .footer-contact-form .form-floating > .form-select ~ label {
  color: rgba(255, 255, 255, 0.8);
  transform: scale(0.85) translateY(-1rem) translateX(0);
}
footer .footer-body .footer-form .footer-contact-form .btn-solicitar {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  background: transparent;
  border: 1px solid #885555;
  color: var(--color-white);
  padding: 0.75rem 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
footer .footer-body .footer-form .footer-contact-form .btn-solicitar:hover {
  background: #885555;
  color: var(--color-white);
}
footer .footer-body .footer-copyright {
  margin-bottom: 35px;
}
footer .footer-body .footer-copyright p {
  font-size: 0.9rem;
  color: var(--color-white);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  margin-bottom: 0;
  padding: 0;
}
footer .footer-body .footer-social a {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s;
}
footer .footer-body .footer-social a:hover {
  color: var(--color-white);
}

.wpp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.6rem;
  color: #fff;
}
.wpp-float i {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1920px) {
  /*aside .aside-body .mascara-menu,
  aside .mascara-menu { display: none; }

  aside .aside-body .aside-menu { width: 100%; }

  nav { width: 75%; }

  .topo-home { height: auto; min-height: 100vh; }*/
  .topo-home h1 {
    width: 60% !important;
  }
  /*.topo-home > div:first-child { height: auto; min-height: 100vh; }

  .topo-sobre > div > div { padding: 8%; }

  .servimos-cards > div {
      flex: 0 0 100% !important;
      max-width: 100% !important;
  }

  .clientes-cards > div {
      flex: 0 0 25% !important;
      max-width: 25% !important;
  }

  .sobre-angelita { flex-direction: column; }
  .sobre-angelita > div { width: 100% !important; }

  .sobre-design-cards > div {
      flex: 0 0 50% !important;
      max-width: 50% !important;
  }

  .servicos-line-cards > div {
      flex: 0 0 calc(50% - 8px) !important;
      max-width: calc(50% - 8px) !important;
  }

  footer .footer-design { display: none; }
  footer .footer-body { width: 100%; padding: 10%; }*/
}
@media (max-width: 991px) {
  aside .aside-body .mascara-menu,
  aside .mascara-menu {
    display: none;
  }
  aside .aside-body .aside-menu {
    width: 100%;
  }
  nav {
    width: 75%;
  }
  .topo-home {
    height: auto;
    min-height: 100vh;
  }
  .topo-home h1 {
    width: 100% !important;
  }
  .topo-home > div:first-child {
    height: auto;
    min-height: 100vh;
  }
  .topo-sobre > div > div {
    padding: 8%;
  }
  .servimos-cards > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .clientes-cards > div {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .sobre-angelita {
    flex-direction: column;
  }
  .sobre-angelita > div {
    width: 100% !important;
  }
  .sobre-design-cards > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .servicos-line-cards > div {
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
  footer .footer-design {
    display: none;
  }
  footer .footer-body {
    width: 100%;
    padding: 10%;
  }
}
@media (max-width: 575px) {
  nav {
    width: 100%;
  }
  .topo-sobre > div > div h1 {
    font-size: 1.8rem;
  }
  .topo-home .topo-arte h1 {
    font-size: 1.5rem;
    width: 100% !important;
  }
  .topo-home > div:first-child {
    height: auto;
    min-height: 100vh;
  }
  .angelita-destaque {
    height: 60vh;
  }
  .clientes-cards > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .sobre-design-cards > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .servicos-line-cards > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .cards-avulsos > div {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }
  .servimos-cards > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .servimos-container h1 {
    font-size: 1.6rem;
    width: 100%;
  }
  .sobre-design h2 {
    font-size: 1.4rem;
    width: 100%;
  }
  aside .aside-body .aside-menu {
    width: 70%;
    margin-right: -0.75rem;
  }
  .wpp-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  footer .footer-body {
    padding: 8% 5%;
  }
  .topo-interno .pagina-sobre-header h1 {
    font-size: 2rem;
    width: 90%;
  }
}/*# sourceMappingURL=main.css.map */