/**
 * copyright 2023 geroncio.developer
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Fauna+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');


:root {

  /**
   * colors
   */

  --hoockers-green_20: hsl(148, 20%, 38%, 0.2);
  --pale-spring-bud: rgb(0, 175, 239);
  --hoockers-green: rgb(13, 33, 79);
  --star-yellow: rgb(255, 191, 0);
  --verde: rgb(107, 117, 82);
  --verde2: rgb(129, 165, 3);
  --verde3: #bac69a;
  --marrom: #6c4d38;
  --marrom2: #cfb091;
  --spanish-gray: hsl(0, 0%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --cultured-1: hsl(0, 0%, 97%);
  --cultured-2: hsl(60, 6%, 93%);
  --gray-web: hsl(0, 0%, 49%);
  --white_30: hsl(0, 0%, 100%, 0.3);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_15: hsla(0, 0%, 0%, 0.15);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_5: hsla(0, 0%, 0%, 0.05);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --brancogelo: rgb(253, 253, 253);
  --cinza: rgb(222, 223, 218);



  --string: "oi";

  /**
   * gradient color
   */

  --gradient: linear-gradient(to right, transparent 50%, var(--white_30) 100%);

  /**
   * typography
   */

  --ff-urbanist: 'Urbanist', sans-serif;

  --fs-1: 4.8rem;
  --fs-2: 4rem;
  --fs-3: 3.4rem;
  --fs-4: 2.4rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;
  --fs-9: 1.3rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 35px;

  /**
   * shadow
   */

  --shadow-1: 0 8px 16px var(--black_15);
  --shadow-2: 0 4px 10px var(--black_5);

  /**
   * radius
   */

  --radius-3: 3px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}


.hidden {
  display: none;
}


svg {
  width: 2.25em;
  display: none;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}

circle {
  fill: none;
  stroke: var(--verde);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}




/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


li {
  list-style: none
}

.li-2 {
  list-style: none;
  border-bottom: 1px solid var(--gray-web);
  margin-bottom: 20px;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

.span2 {
  font-size: 20px;
  color: var(--pale-spring-bud);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
  --ionicon-stroke-width: 25px;
}

html {
  font-family: var(--ff-urbanist);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.6;
}

.body2 {
  background-color: red;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--verde);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--verde);
}


.text-transparent {
  color: transparent;
  font-weight: var(--fw-600);
  line-height: 1.3;
}


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.container2 {
  padding-inline: 0px;
  margin-top: -10px;
}





.section {
  padding-block: var(--section-padding);
}

#agenda {
  height: 500px;

}




.h1,
.h2,
.h3,
.h2-large {
  color: var(--black);
  font-weight: var(--fw-600);
  line-height: 1.3;
}



.h1 {
  font-size: var(--fs-1);
  line-height: 1.2;
}

.h5 {
  color: transparent;
  font-size: var(--fs-1);
  line-height: 1.2;
}


.h2 {
  font-size: var(--fs-3);
}

.h2-large {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-4);
}

.btn {
  font-weight: var(--fw-600);
  width: 150px;
  height: 40px;
  justify-content: center;
  display: flex;
  padding: 10px 10px;
  border-radius: var(--radius-3);
  transition: var(--transition-1);
}

.btn2 {
  font-weight: var(--fw-600);
  width: 200px;
  height: 30px;
  justify-content: center;
  display: flex;
  padding: 7.5px 10px;
  border-radius: var(--radius-3);
  transition: var(--transition-1);
}

.btn-primary,
.btn-secondary:is(:hover, :focus) {
  background-color: var(--black);
  color: var(--white);
}



.btn-primary:is(:hover, :focus) {
  background-color: var(--hoockers-green);
}

.btn-secondary {

  background-color: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-2);
}

.has-scrollbar {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-block-end: 15px;
  margin-block-end: -15px;
  scroll-snap-type: inline mandatory;
}

.scrollbar-item {
  min-width: 100%;

  scroll-snap-align: start;
}

.copyright-menu {
  font-size: var(--fs-7);
  margin-top: 30px;
  margin-left: -20px;
  display: none;
  justify-content: center;
  cursor: pointer;
  color: var(--verde2);
}

.has-scrollbar::-webkit-scrollbar-track,
.has-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 70%);
}


.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.hover\:shine {
  overflow: hidden;
}

.hover\:shine .has-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: var(--transition-2);
}

.hover\:shine:is(:hover, :focus) .has-bg-image {
  transform: scale(1.15);
}

.hover\:shine::before {
  top: 0;
  left: -140%;
  bottom: 0;
  width: 100%;
  background-image: var(--gradient);
  transform: skewX(-25deg);
  transition: var(--transition-2);
  z-index: 1;
}

.hover\:shine:is(:hover, :focus-within)::before {
  animation: shine 1s ease forwards;
}


@keyframes shine {
  0% {
    transform: skewX(-25deg) translateX(0);
  }

  100% {
    transform: skewX(-25deg) translateX(250%);
  }
}


.btn-link {
  color: var(--black);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: var(--transition-1);
}

.link-b {
  color: var(--verde2);
  margin-left: 5px;
  text-decoration: underline;
}

.btn-link-b {
  color: var(--hoockers-green);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: var(--transition-1);
}



.btn-link-c {
  color: var(--white);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: var(--transition-1);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-t {
  color: #00000000;
}

.img-cover-2 {
  width: 100%;
  height: 100%;
  margin-top: 70px;
  object-fit: cover;
}

/**Deixar os cards ocupando todo o espaço na tela*/

.badge {
  max-width: max-content;
  background-color: var(--hoockers-green);
  color: var(--white);
  font-weight: var(--fw-700);
  padding-inline: 12px;
  border-radius: var(--radius-3);
}


.flex-list {
  display: block;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  gap: 30px;
}

.w-100 {
  width: 100%;
}


/**Efeito de cards irem aparecendo um após o outro*/

/**[data-section] > * {
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-3);
}

[data-section].active > * {
  transform: translateY(0);
  opacity: 1;
}*/



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .input-wrapper,
.header-action-btn:not(:first-child),
.navbar {
  display: none;
}

.header {
  position: relative;
  padding-block-end: 80px;
}

.alert {
  background-color: var(--pale-spring-bud);
  color: var(--black);
  font-size: var(--fs-7);
  text-transform: uppercase;
  font-weight: var(--fw-700);
  letter-spacing: 2px;
  text-align: center;
  padding-block: 15px;
}

.header-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--verde);
  padding-block: 26px;
  z-index: 4;
}

.header-top.active {
  position: fixed;
  top: -142px;
  bottom: auto;
  box-shadow: var(--shadow-1);
  transform: translateY(100%);
  transition: var(--transition-2);
}

.header-top.header-hide {
  box-shadow: none;
  transform: translateY(0);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-open-btn {
  width: 26px;
  display: grid;
  gap: 6px;
  padding-block: 5px;
}

.nav-open-btn .line {
  height: 2px;
  background-color: white;
}

.nav-open-btn .line-1 {
  width: 18px;
  margin-left: 10px;
}

.nav-open-btn .line-3 {
  width: 20px;
  margin-left: 8px;
}

.header-action-btn {
  font-size: 28px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) {
  color: var(--black_70);
}





/*-----------------------------------*\
  #MOBILE NAVBAR
\*-----------------------------------*/

.sidebar {
  z-index: 5;
}

.mobile-navbar {
  background-color: var(--brancogelo);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 350px;
  width: 100%;
  padding: 25px 40px;
  z-index: 6;
  transform: translateX(-100%);
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.mobile-navbar.active {
  visibility: visible;
  transform: translateX(0);
  transition: 0.4s var(--cubic-out);
}

.mobile-navbar .wrapper {
  display: flex;
  align-items: center;
  margin-block-end: 55px;
}

.mobile-navbar .wrapper .logo {
  display: block;
  justify-content: center;
  align-items: center;
  margin-left: 20%;
}



.nav-close-btn {
  font-size: 25px;
  color: var(--hoockers-green);
  margin-left: 40px;
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.mobile-navbar .navbar-link {
  color: var(--black);
  font-size: var(--fs-8);
  font-family: 'Fauna One', sans-serif;
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
  padding-block: 5px;
  transition: var(--transition-1);
}

.mobile-navbar .navbar-link:is(:hover, :focus) {
  color: var(--hoockers-green);
}

.overlay {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
  transition: var(--transition-1);
}

.overlay.active {
  background-color: var(--black_50);
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: 0;
}



.pricetext {
  color: var(--black);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-block-end: 20px;
  visibility: hidden;
}

.hero-text {
  font-size: var(--fs-6);
  margin-block: 16px 30px;
}



.hero-text-t {
  font-size: var(--fs-6);
  margin-block: 16px 30px;
  color: transparent;
}

.hero .price {
  color: var(--black);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-block-end: 20px;
}

.hero .price-t {
  color: transparent;
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-block-end: 20px;
}

.hero .scrollbar-item {
  min-width: 100%;
}





/*-----------------------------------*\
  #COLLECTION
\*-----------------------------------*/

.collection {
  padding-block-start: 0;
}

.collection-list {
  display: grid;
  gap: 15px;
}

.collection-list-b {
  display: grid;
  gap: 15px;
}



.collection-list-c {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}



.collection-card {
  background-color: var(--light-gray);
  min-height: 400px;
  max-width: 300px;
  margin-left: 0px;
  padding: 40px;
  padding-block-end: 30px;
  display: flex;
  flex-direction: column;
}

.collection-card2 {
  background-color: var(--star-yellow);
  min-height: 450px;
  max-width: 300px;
  margin-left: -30px;
  margin-right: -0px;
  padding: 40px;
  padding-block-end: 30px;
  display: flex;
  flex-direction: column;
}

.collection-card3 {
  background-color: var(--gray-web);
  min-height: 450px;
  max-width: 300px;
  padding: 40px;
  padding-block-end: 30px;
  display: flex;
  flex-direction: column;
}

.collection-card4 {
  background-color: var(--star-yellow);
  min-height: 450px;
  max-width: 300px;
  margin-left: -30px;
  padding: 40px;
  padding-block-end: 30px;
  display: flex;
  flex-direction: column;
}

.collection-card .card-title {
  margin-block-end: 12px;
}

.collection-card .card-title-b {
  margin-block-end: 12px;
  color: var(--pale-spring-bud);
}

.collection-card .card-title-c {
  margin-block-end: 12px;
  color: var(--white);
}

.collection-card .card-text {
  color: var(--black);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-block-end: auto;
}

.collection-card .card-text-b {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-block-end: auto;
}





/*-----------------------------------*\
  #SHOP
\*-----------------------------------*/

.shop .title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-block-end: 50px;
}

.shop .btn-link:is(:hover, :focus) {
  color: var(--hoockers-green);
}

.shop-card .card-banner {
  position: relative;
  overflow: hidden;
}

.shop-card .badge {
  position: absolute;
  top: 20px;
  left: 20px;
}

.shop-card .card-actions {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: grid;
  gap: 10px;
  opacity: 0;
  transition: var(--transition-2);
}

.shop-card .action-btn {
  background-color: var(--white);
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.shop-card .action-btn:is(:hover, :focus) {
  background-color: var(--black);
  color: var(--white);
}

.shop-card:is(:hover, :focus-within) .card-actions {
  opacity: 1;
  transform: translate(-20px, -50%);
}

.shop-card .card-content {
  padding-block: 20px;
  text-align: center;
}

.shop-card :is(.price, .card-rating, .rating-wrapper) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.shop-card .del {
  font-size: var(--fs-9);
  font-weight: var(--fw-400);
}

.shop-card .price .span {
  color: var(--black);
  font-weight: var(--fw-700);
}

.shop-card .card-title {
  color: var(--black);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  margin-block-end: 8px;
  transition: var(--transition-1);
}

.shop-card .card-title:is(:hover, :focus) {
  text-decoration: underline;
  color: var(--hoockers-green);
}

.shop-card .rating-wrapper {
  gap: 2px;
  color: var(--star-yellow);
  font-size: 15px;
}

.shop-card .rating-text {
  font-size: var(--fs-8);
  font-weight: var(--fw-400);
  line-height: 1;
}





/*-----------------------------------*\
  #BANNER
\*-----------------------------------*/

.banner-list {
  display: grid;
  gap: 30px;
}



.banner-card .card-subtitle {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-left: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner-card :is(.card-subtitle, .card-title) {
  text-shadow: 0 0 2px transparent;
}

/**sombra delineando o texto */

.banner-card-1 .card-title {
  margin-block: 10px 30px;
}

.banner-card .card-text {
  color: var(--white);
  font-size: var(--fs-7);
  margin-block: 10px 25px;
}





/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.feature {
  text-align: center;
}

.feature .section-title {
  margin-block-end: 40px;
}

.feature-card .card-icon {
  width: 100px;
  margin-inline: auto;
}

.feature-card .card-title {
  margin-block: 35px 15px;
}

.feature-card .card-text {
  font-size: var(--fs-7);
}





/*-----------------------------------*\
  #OFFER
\*-----------------------------------*/

.offer-banner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 30px;
  margin-block-end: 60px;
}

.offer-subtitle {
  font-size: var(--fs-7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-subtitle .span {
  color: var(--black);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 2px;
}

.offer .badge {
  font-weight: var(--fw-500);
}

.offer .section-title {
  margin-block: 20px 8px;
}

.offer .section-text {
  font-size: var(--fs-6);
}

.offer .countdown {
  color: var(--hoockers-green);
  font-size: var(--fs-2);
  line-height: 1;
  display: flex;
  margin-block: 20px 40px;
}

.offer .time:not(:last-child)::after {
  content: ":";
  color: var(--gray-web);
  font-size: 3rem;
  font-weight: var(--fw-500);
  margin-inline: 10px;
}

.offer .time {
  display: flex;
  align-items: center;
}

.search3 {
  width: 100%;
  height: 40px;
  margin-bottom: 40px;
  margin-top: 50px;
  margin-left: 0px;
  margin-right: 0px;
  display: block;
  position: relative;
}

.search3 input {
  height: 100%;
  width: 100%;
  font-size: 16px;
  outline: 0;
  padding: 0 20px;
  border-radius: 10px;
  border: 2px solid var(--hoockers-green);
  background-color: var(--white);
}

.search3 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  cursor: pointer;
  font-size: 25px;
  color: var(--pale-spring-bud);
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  padding-block-end: calc(var(--section-padding) * 2);
}

.blog .section-title {
  text-align: center;
  margin-block-end: 40px;
}

.blog-card .card-banner img {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus-within) .card-banner img {
  transform: scale(1.2);
}

.blog-card .card-title {
  text-align: center;
  margin-block: 30px 20px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--hoockers-green);
}

.blog-card .btn-link {
  justify-content: center;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer .logo {
  display: none;
}

.footer {
  justify-content: center;
  background-color: var(--cultured-1);
  padding-block: 70px;
  margin-top: 40px;
  max-height: 850px;
  margin-bottom: -10px;
}

.footer-top {
  display: block;
  justify-content: center;
  gap: 80px;
  margin-block-end: 60px;
}





.footer-list-image {
  margin-right: 10px;
  margin-top: 3px;
  color: var(--verde2);
}

.footer-list-text .link {
  display: inline-block;
  color: var(--black);
  font-weight: var(--fw-600);
  text-decoration: underline;
  transition: var(--transition-1);
}

.footer-list-text .link:is(:hover, :focus) {
  color: var(--hoockers-green);
}

.footer-list-text.bold {
  color: var(--black);
  font-weight: var(--fw-800);
  margin-block: 15px 2px;
}

.footer-link {
  font-size: var(--fs-7);
  padding-block: 5px;
  margin-left: 0px;
}

.footer-link:is(:hover, :focus) {
  text-decoration: underline;
  color: var(--verde2);
}

.newsletter-title {
  color: var(--black);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  line-height: 1.3;
}

.newsletter-text {
  font-size: var(--fs-7);
  line-height: 2;
  margin-block: 10px 35px;
}



.newsletter-form {
  position: relative;
}

.email-field {
  background-color: var(--white);
  font-size: var(--fs-7);
  padding: 12px 18px;
  padding-inline-end: 145px;
  border: 1px solid var(--hoockers-green_20);
  border-radius: var(--radius-3);
  outline: none;
  transition: var(--transition-1);
}

.email-field::placeholder {
  color: var(--spanish-gray);
}

.email-field:focus {
  border-color: var(--black);
}

.newsletter-form .btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.copyright {
  font-size: var(--fs-7);
  color: white;
  cursor: pointer;
}

.copyright-menu {
  font-size: var(--fs-7);
  margin-top: 30px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.footer-bottom .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-block-end: 20px;
}

.logo-footer {
  display: none;
}

.social-list {
  display: flex;
  gap: 20px;
}

.social-list-menu {

  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.social-link {
  color: var(--white);
  font-size: 18px;
  transition: var(--transition-1);
}

.social-link-2 {
  color: var(--star-yellow);
  font-size: 24px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  color: var(--star-yellow);
}

.footer-bottom>img {
  max-width: max-content;
}

.containertermos {
  width: 95%;
  margin-left: 25px;
  margin-top: 40px;

}

.logincontainer {
  width: 107%;
  margin-left: -40px;
  margin-top: -10px;
  background-color: var(--verde3);
  display: flex;
  justify-content: center;
}

.logincontainer-2 {
  width: 107%;
  margin-left: 0px;
  margin-top: -10px;
  background-color: white;
  display: flex;
  justify-content: center;
}


.logincontainer2 {
  width: 270px;
  height: 450px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: white;
}

.logincontainer2-2 {
  width: 270px;
  height: 250px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: white;
}



.logincontainer3 {
  display: none;
  width: 450px;
  height: 450px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-size: 450px;
}

.logincontainer4 {
  display: none;
  width: 450px;
  height: 450px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: url('/assets/images/blog-0.png');
  background-repeat: no-repeat;
  background-size: 450px;
}

.titletermos {
  color: var(--black);
  font-size: 20px;
}

.corptermos {
  color: var(--black_50);
  font-size: 12px;
  margin-top: 10px;
  margin-right: 30px;
  text-align: justify;
}

.form-item {
  margin-bottom: 20px;

}

.form-item2 {
  display: flex;
  width: 270px;
  justify-content: center;
  margin-bottom: 30px;

}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.form-control {
  width: 220px;
  margin-left: -15px;
  height: 40px;
  background: transparent;
  border-bottom: 1px solid var(--cinza);
  padding: 10px 25px;
  font-size: 12px;
  color: black;

}


*:focus {
  outline: none;
}



.form-group {
  display: flex;
}

.btn-control {
  width: 200px;
  border-radius: 20px;
  color: white;
  padding: 5px;
  font-size: 11px;
  background: var(--verde2);
}



.nameform {
  font-size: 10px;
  font-weight: 700;
  color: black;
}

.nameform2 {
  display: flex;
  justify-content: right;
  font-size: 10px;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: underline;
  color: var(--spanish-gray);
  cursor: pointer;
}

.nametitle {
  display: flex;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: black;
  font-size: 25px;
  justify-content: center;
}

.subtitle {
  display: flex;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 20px;
  color: black;
  font-size: 12px;
  text-align: justify;
  justify-content: center;
}

.nametitle2 {
  display: block;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
  color: black;
  font-size: 18px;
  justify-content: center;
}

.nameform3 {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 10px;
  margin-top: 60px;
  font-weight: 700;
  color: black;
  cursor: pointer;
}

.nametitle {
  display: flex;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: black;
  font-size: 25px;
  justify-content: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}



/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: var(--white);
  color: var(--hoockers-green);
  font-size: 22px;
  padding: 13px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--black);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.bx3 {
  visibility: hidden;
}



/******************************************************************************************************/

.logomenu {
  display: flex;
  justify-content: left;
  margin-left: 0px;
  margin-bottom: -5px;
  cursor: pointer;

}

.hero-card {
  background-color: var(--light-gray);
  padding: 100px 15px;
  background-position: 40%;
  max-height: 290px;
  min-height: 290px;
  width: 100%;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: 600px;
  background-position: center;
}


.card-b {
  margin-top: -70px;
  margin-left: 0px;
}


.h6 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}


.hero-text-b {
  width: 290px;
  font-size: 12px;
  font-weight: 600;
  margin-block: 16px 30px;
  color: white
}

.btn-primary-b {
  margin-top: -55px;
  background-color: var(--verde2);
  border-radius: 30px;
  font-size: 12px;
  box-shadow: var(--shadow-1);
  color: white;
  cursor: pointer;
}

.btn-primary {
  margin-top: -55px;
  background-color: var(--verde);
  margin-top: -10px;
  border-radius: 30px;
  font-size: 12px;
  box-shadow: var(--shadow-1);
  color: white;
  cursor: pointer;
}

.btn-primary-b2 {
  margin-top: 12px;
  height: 30px;
  background-color: var(--verde2);
  border-radius: 30px;
  font-size: 10px;
  box-shadow: var(--shadow-1);
  color: white;
  cursor: pointer;
}

.btn-primary-b3 {
  margin-top: 18px;
  height: 30px;
  background-color: var(--verde2);
  border-radius: 30px;
  margin-left: -20px;
  font-size: 10px;
  box-shadow: var(--shadow-1);
  color: white;
  cursor: pointer;
}


.card-c {
  position: relative;
  display: flex;
  margin-top: 0px;
  left: 87%;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--white);
  justify-content: center;
  align-items: center;
  background-color: var(--verde);
  box-shadow: var(--shadow-2);
}

.card-logo {
  width: 35px;
  height: 40px;
  justify-content: center;
  align-items: center;
}


.container3 {
  padding-inline: 0px;
  margin-top: -40px;
  width: 100%;
  height: 350px;
  background-color: var(--verde3);
  display: block;
  justify-content: center;
}


.about-image {
  width: 350px;
  height: 450px;
  margin-left: 60px;
  margin-top: -93px;
  justify-content: center;
  background-image: url('/assets/images/image-b5.png');
  background-repeat: no-repeat;
  background-size: 280px;
}

.about-text {
  width: 380px;
  height: 350px;
  margin-left: 40px;
  justify-content: center;
  display: block;
  background: var(--white);
}

.collection-card-b {
  background-color: var(--white);
  max-height: 0px;
  padding-block-end: 40px;
  display: flex;
  flex-direction: column;
}

.h8 {
  color: var(--verde3);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: -40px;
  margin-left: -40px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  font-family: 'Sacramento', serif;
}

.card-text-b {
  max-width: 400px;
  padding: 30px;
  text-align: center;
  font-size: 15px;
  margin-left: -40px;
}

.card-text-b-2 {
  max-width: 100%;
  width: 100%;
  height: 140px;
  max-lines: 4;
  padding: 30px;
  text-align: center;
  font-size: 15px;
  margin-left: 0px;
  margin-top: 10px;
  outline: transparent;
  border-color: transparent;
  font-family: 'Libre', serif;
  color: var(--cubic-in);
  font-size: 20px;
}




.container4 {
  padding-inline: 0px;
  margin-top: 330px;
  width: 100%;
  height: 1450px;
  border-top: 2px solid var(--cinza);
  background-color: var(--white);
  justify-content: center;
}

.social-list-b {
  max-width: 400px;
  margin-left: -20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}


.social-link-b {
  color: var(--white);
  width: 40px;
  height: 35px;
  justify-content: center;
  display: flex;
  background-color: var(--verde);
  border-radius: 10px;
  font-size: 25px;
  padding: 5px;
  cursor: pointer;
  box-shadow: var(--shadow-1);
}


.card-text-c {
  margin-top: 80px;
  margin-bottom: -20px;
  text-align: center;
  font-size: 18px;
  color: var(--marrom);
}


.h9 {
  color: var(--marrom);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
}

.h9-2 {
  color: transparent;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: -10px;
  display: flex;
  justify-content: center;
  text-decoration: underline var(--marrom);
  font-family: 'Open Sans', sans-serif;
}

.h9-3 {
  color: var(--marrom);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0px;
  display: flex;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
}

.h9-4 {
  color: transparent;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: -10px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  text-decoration: underline var(--marrom);
  font-family: 'Open Sans', sans-serif;
}

.container-list {
  padding-inline: 0px;
  margin-top: -130px;
  width: 100%;
  height: 350px;
  background-color: var(--white);
  display: none;
  justify-content: center;
}

.container-list-3 {
  padding-inline: 0px;
  margin-top: 30px;
  width: 100%;
  height: 150px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
}

.container-list-4 {
  padding-inline: 0px;
  margin-top: 260px;
  margin-bottom: 220px;
  width: 100%;
  height: 150px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
}

.service-card1 {
  width: 300px;
  height: 420px;
  margin-left: 10px;
  justify-content: center;
  background: var(--marrom2);
  background-size: 350px;
}

.service-card2 {
  width: 300px;
  height: 420px;
  margin-left: 5px;
  margin-right: 10px;
  justify-content: center;
  background: var(--verde);
  background-size: 350px;
}

.service-card4 {
  width: 300px;
  height: 420px;
  margin-left: 10px;
  margin-top: 20px;
  justify-content: center;
  background: var(--star-yellow);
  background-size: 350px;
}

.service-card3 {
  width: 300px;
  height: 420px;
  margin-left: 5px;
  margin-right: 10px;
  margin-top: 20px;
  justify-content: center;
  background: var(--marrom);
  background-size: 350px;
}

.service-image-b {
  width: 100%;
  height: 120px;
  margin-top: -50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-image {
  width: 80px;
  height: 80px;
  background-image: url('/assets/images/service-0.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 80px;
  background-repeat: no-repeat;
}


.service-text-b {
  width: 100%;
  height: 270px;
  margin-bottom: 20px;
  margin-top: -10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-text-c {
  width: 100%;
  height: 320px;
  margin-top: -200px;
  justify-content: center;
  align-items: center;
  display: flex;
}


.card-text-d {
  margin-top: -210px;
  margin-bottom: -30px;
  text-align: center;
  font-size: 18px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
}

.card-text-e {
  margin-top: -240px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
  font-size: 11px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
}

.card-text-h {
  margin-top: -50px;
  text-align: center;
  margin-left: -140px;
  margin-right: -120px;
  text-align: center;
  font-size: 14px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
}

.card-text-f {
  margin-top: -360px;
  margin-bottom: -30px;
  text-align: center;
  font-size: 15px;
  color: var(--black);
  font-family: 'Open Sans', sans-serif;
}

.btn-primary-c {
  margin-top: -205px;
  margin-left: 20px;
  background-color: transparent;
  border-radius: 30px;
  font-size: 12px;
  border: 1px solid var(--white);
  box-shadow: var(--shadow-1);
  color: white;
  cursor: pointer;
}

.btn-primary-c3 {
  margin-top: -205px;
  margin-left: 20px;
  background-color: transparent;
  border-radius: 30px;
  font-size: 12px;
  display: none;
  border: 1px solid var(--white);
  box-shadow: var(--shadow-1);
  color: white;
  cursor: pointer;
}



.service-image1 {
  width: 80px;
  height: 80px;
  background-image: url('/assets/images/service-1.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 80px;
  background-repeat: no-repeat;
}

.service-image2 {
  width: 80px;
  height: 80px;
  background-image: url('/assets/images/service-2.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 80px;
  background-repeat: no-repeat;
}

.service-image3 {
  width: 80px;
  height: 80px;
  background-image: url('/assets/images/service-3.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 80px;
  background-repeat: no-repeat;
}

.service-image4 {
  width: 80px;
  height: 80px;
  margin-left: 20px;
  margin-top: -100px;
  background-image: url('/assets/images/service-4.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 60px;
  background-repeat: no-repeat;
}

.service-image5 {
  width: 80px;
  height: 80px;
  margin-left: 18px;
  margin-top: -100px;
  background-image: url('/assets/images/service-5.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 60px;
  background-repeat: no-repeat;
}

.service-image6 {
  width: 80px;
  height: 80px;
  margin-left: 18px;
  margin-top: -100px;
  background-image: url('/assets/images/service-6.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 60px;
  background-repeat: no-repeat;
}

.service-image7 {
  width: 80px;
  height: 80px;
  margin-left: 18px;
  margin-top: -100px;
  background-image: url('/assets/images/service-7.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 60px;
  background-repeat: no-repeat;
}

.service-image8 {
  width: 80px;
  height: 80px;
  margin-left: 18px;
  margin-top: -100px;
  background-image: url('/assets/images/service-8.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 60px;
  background-repeat: no-repeat;
}

.container-list2 {
  padding-inline: 0px;
  margin-top: -80px;
  width: 100%;
  height: 350px;
  background-color: var(--white);
  display: none;
  justify-content: center;
}

.container-list2-2 {
  padding-inline: 0px;
  margin-top: 40px;
  width: 100%;
  height: 350px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
}

.container-list2-3 {
  padding-inline: 0px;
  margin-top: -180px;
  width: 100%;
  height: 350px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
}


.service-card5 {
  width: 100px;
  height: 100px;
  margin-left: 20px;
  border-radius: 50%;
  border: 2px solid black;
  justify-content: center;
  background: transparent;
  box-shadow: var(--shadow-1);
  cursor: pointer;
}

.service-card5-2 {
  width: 380px;
  height: 800px;
  margin-top: 195px;
  display: block;
  justify-content: center;
  background: var(--cultured-1);
  cursor: pointer;
}

.service-card5-3 {
  width: 400px;
  height: 395px;
  background-image: url('/assets/images/blog-6.png');
  background-repeat: no-repeat;
  background-size: 380px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.service-card5-4 {
  width: 400px;
  height: 395px;
  margin-top: -20px;
  background-image: url('/assets/images/blog-5.png');
  background-repeat: no-repeat;
  background-size: 380px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.service-card6 {
  width: 100px;
  height: 100px;
  margin-left: 0px;
  border-radius: 50%;
  border: 2px solid black;
  justify-content: center;
  background: transparent;
  background-size: 350px;
  box-shadow: var(--shadow-1);
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  width: 330px;
  height: auto;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
}

.modal-content img {
  width: 100px;
  height: 100px;
  padding: 20px;
  margin-top: -10px;
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 80px;
  background-repeat: no-repeat;
}

.modal-content span {
  color: rgba(0, 0, 0, 0.85);
  text-align: justify;
  padding-left: 20px;
  padding-right: 0px;
  padding-top: 5px;
  font-size: 14px;
  width: 100%;
}

.modal-content button {
  color: var(--white);
  text-align: justify;
  display: flex;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 10px;
  padding-top: 3px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 14px;
  background-color: var(--verde);
}


.service-card6-2 {
  width: 100px;
  height: 100px;
  margin-left: 0px;
  border-radius: 50%;
  margin-left: 150px;
  margin-right: 50px;
  border: 2px solid white;
  justify-content: center;
  background: transparent;
  background-size: 100px;
  box-shadow: var(--shadow-1);
  cursor: pointer;
}

.service-image-b {
  width: 100%;
  height: 120px;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-body {
  align-items: center;
  width: 100%;
  margin-top: 0px;
  height: 150px;
  justify-content: center;
  display: flex;
  background: var(--white);
}


.banner-card {
  width: 430px;
  height: 451px;
  margin-left: -30px;
  background-color: var(--verde);
  padding: 30px;
}

.banner-card2 {
  width: 430px;
  height: 520px;
  margin-top: -99px;
  margin-left: -30px;
  background-color: transparent;
  padding: 10px;
}

.h2-2 {
  color: var(--white);
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 20px;
  width: 400px;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.3;
}

.h2-3 {
  color: var(--white);
  font-weight: 300;
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 140px;
  width: 200px;
  text-align: justify;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.3;
}


.has-bg-image3 {
  width: 130px;
  height: 130px;
  margin-left: 230px;
  margin-top: -210px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.has-bg-image4 {
  width: 480px;
  height: 480px;
  margin-left: -40px;
  margin-top: 39px;
  box-shadow: var(--shadow-1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.has-bg-image5 {
  width: 80px;
  height: 80px;
  margin-left: -10px;
  margin-top: -250px;
  background-image: url('/assets/images/premium.png');
  background-size: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.btn-primary-c2 {
  margin-top: -105px;
  margin-left: 0px;
  background-color: transparent;
  border-radius: 30px;
  font-size: 12px;
  border: 1px solid var(--white);
  box-shadow: var(--shadow-1);
  color: white;
  cursor: pointer;
}


.flex-item {
  max-width: calc(130%);
  margin-left: 0px;
  margin-top: -88px;
}

.flex-item2 {

  display: none;
}

.flex-item4 {
  width: calc(100%);
  height: 1800px;
  margin-left: 0px;
  margin-top: 50px;
}



.flex-box {
  width: 100%;
  height: 350px;
  background-image: url('/assets/images/blog-2.png');
  background-size: 380px;
  background-repeat: no-repeat;
}

.flex-box2 {
  width: 380px;
  height: 286.5px;
  margin-top: -30px;
  background: var(--cultured-1);
}

.flex-box3 {
  width: 400px;
  height: 350px;
  background-image: url('/assets/images/blog-3.png');
  background-size: 380px;
  background-repeat: no-repeat;
}

.flex-box4 {
  width: 400px;
  height: 350px;
  background-image: url('/assets/images/blog-0.png');
  background-size: 380px;
  background-repeat: no-repeat;
}


.h11 {
  color: var(--verde);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0px;
  padding-top: 40px;
  margin-left: 40px;
  display: flex;
  justify-content: left;
  font-family: 'Open Sans', sans-serif;
}

.h11-2 {
  color: transparent;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: -10px;
  margin-left: 40px;
  display: flex;
  justify-content: left;
  text-decoration: underline var(--verde2);
  font-family: 'Open Sans', sans-serif;
}

.h12 {
  color: var(--verde);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 30px;
  margin-left: 50px;
  margin-right: 20px;
  display: flex;
  justify-content: left;
  font-family: 'Open Sans', sans-serif;
}

.h13 {
  color: var(--white);
  background: var(--verde3);
  font-size: 28px;
  margin-bottom: -40px;
  padding-left: 20px;
  padding-top: 30px;
  padding-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 30px;
  display: flex;
  justify-content: left;
  font-family: 'Open Sans', sans-serif;
}

.post-image0 {
  width: 100px;
  height: 100px;
  margin-left: 0px;
  margin-top: -121px;
  background-image: url('/assets/images/post-image0.png');
  justify-content: center;
  align-items: center;
  display: flex;
  background-size: 96px;
  background-repeat: no-repeat;
}

.container-list3 {
  padding-inline: 0px;
  margin-top: -60px;
  margin-bottom: -60px;
  width: 100%;
  height: 1100px;
  padding-top: 60px;

  background-color: var(--verde3);
  display: block;
  justify-content: center;
}

.footer-verde {
  height: 100px;
  margin-top: 10px;
  padding: 20px;
  width: 100%;
  background: var(--verde);
}

.footer-list2 {
  max-width: 450px;
  max-height: 350px;
  width: 450px;
  height: 350px;
  background-image: url('/assets/images/image-b3.jpg');
  background-repeat: no-repeat;
  background-size: 450px;
  margin-left: -40px;
  margin-top: -70px;
}

.footer-list-title {
  color: var(--black);
  font-size: var(--fs-5);
  margin-top: 50px;
  margin-left: 0px;
  font-weight: var(--fw-600);
  margin-block-end: 10px;
}

.footer-list-text {
  font-size: var(--fs-8);
  color: var(--verde);
  margin-left: 0px;
  display: flex;
}

.footer-list-text2 {
  font-size: 13px;
  color: var(--verde);
  margin-left: 0px;
  display: flex;
}


.flex-list-newmodelo {
  display: none;
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */
@media (min-width: 350px) {

  .logincontainer {
    width: 107%;
    margin-left: -10px;
    margin-top: -10px;
    background-color: var(--verde3);
    display: flex;
    justify-content: center;
  }

  .logincontainer3 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logincontainer4 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url('/assets/images/blog-0.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logomenu {
    display: flex;
    justify-content: left;
    margin-left: 0px;
    margin-bottom: -5px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 600px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 0px;
  }


  .h6 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 310px;
    font-size: 13px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: 0px;
    left: 87%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 35px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 45px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 380px;
    height: 350px;
    margin-left: 30px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -40px;
    margin-left: -40px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 400px;
    padding: 30px;
    text-align: center;
    font-size: 15px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 1450px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: -30px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  #blog{
    margin-top: 60px;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 11px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: -40px;
    text-align: center;
    margin-left: -140px;
    margin-right: -120px;
    text-align: center;
    font-size: 13px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 358px;
    height: 395px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 358px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 358px;
    height: 395px;
    margin-top: -25px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 358px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 130px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 420px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 420px;
    height: 500px;
    margin-top: -99px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 200px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 130px;
    height: 130px;
    margin-left: 230px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 430px;
    height: 480px;
    margin-left: -20px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -10px;
    margin-top: -250px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 0px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .flex-item {
    max-width: calc(130%);
    margin-left: 0px;
    margin-top: -88px;
  }

  .flex-item2 {

    display: none;
  }

  .flex-item4 {
    width: calc(100%);
    height: 1800px;
    margin-left: 0px;
    margin-top: 50px;
  }



  .flex-box {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 350px;
    height: 286.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }


  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 10px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 120px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    margin-top: -121px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 96px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 359px;
    height: 1100px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }




  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: 13px;
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 30px;
    ;
  }


  .footer-list2 {
    max-width: 380px;
    max-height: 350px;
    width: 380px;
    height: 350px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 380px;
    margin-left: -10px;
    margin-top: -70px;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 12px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

}


@media (min-width: 400px) {

  .logincontainer3 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logincontainer4 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url('/assets/images/blog-0.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logomenu {
    display: flex;
    justify-content: left;
    margin-left: 0px;
    margin-bottom: -5px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 600px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 0px;
  }


  .h6 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 310px;
    font-size: 13px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: 0px;
    left: 87%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 35px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 65px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 380px;
    height: 350px;
    margin-left: 40px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -40px;
    margin-left: -40px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 400px;
    padding: 30px;
    text-align: center;
    font-size: 15px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 1450px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: -30px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 11px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: -40px;
    text-align: center;
    margin-left: -140px;
    margin-right: -120px;
    text-align: center;
    font-size: 13px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 382px;
    height: 395px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 382px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 382px;
    height: 395px;
    margin-top: -25px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 382px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 140px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 420px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 420px;
    height: 500px;
    margin-top: -99px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 200px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 130px;
    height: 130px;
    margin-left: 230px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 470px;
    height: 480px;
    margin-left: -20px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -10px;
    margin-top: -250px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 0px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .flex-item {
    max-width: calc(130%);
    margin-left: 0px;
    margin-top: -88px;
  }

  .flex-item2 {

    display: none;
  }

  .flex-item4 {
    width: calc(100%);
    height: 1800px;
    margin-left: 0px;
    margin-top: 50px;
  }



  .flex-box {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 382px;
    height: 286.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }


  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 10px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 90px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    margin-top: -121px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 96px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 1100px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }

  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: 13px;
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 10px;
    ;
  }


  .footer-list2 {
    max-width: 420px;
    max-height: 350px;
    width: 500px;
    height: 350px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 400px;
    margin-left: -10px;
    margin-top: -70px;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 12px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

}


@media (min-width: 450px) {

  .logincontainer3 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logincontainer4 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url('/assets/images/blog-0.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logomenu {
    display: flex;
    justify-content: left;
    margin-left: 0px;
    margin-bottom: -5px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 600px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 0px;
  }


  .h6 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 310px;
    font-size: 13px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: 0px;
    left: 87%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 35px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 90px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 380px;
    height: 350px;
    margin-left: 70px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -40px;
    margin-left: -40px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 400px;
    padding: 30px;
    text-align: center;
    font-size: 15px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 1450px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: -20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 11px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: -50px;
    text-align: center;
    margin-left: -140px;
    margin-right: -120px;
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 35px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 450px;
    height: 395px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 450px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 450px;
    height: 395px;
    margin-top: -20px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 450px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 170px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 470px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 470px;
    height: 520px;
    margin-top: -99px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 200px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 130px;
    height: 130px;
    margin-left: 230px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 480px;
    height: 480px;
    margin-left: -20px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -10px;
    margin-top: -250px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 0px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .flex-item {
    max-width: calc(130%);
    margin-left: 0px;
    margin-top: -88px;
  }

  .flex-item2 {

    display: none;
  }

  .flex-item4 {
    width: calc(100%);
    height: 1800px;
    margin-left: 0px;
    margin-top: 50px;
  }



  .flex-box {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 450px;
    height: 286.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 100%;
    height: 350px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }


  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 40px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 90px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    margin-top: -121px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 96px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 1100px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }

  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: var(--fs-7);
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 30px;
    ;
  }


  .footer-list2 {
    max-width: 500px;
    max-height: 350px;
    width: 500px;
    height: 350px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 500px;
    margin-left: -40px;
    margin-top: -70px;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 13px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

}


@media (min-width: 500px) {

  .logincontainer3 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logincontainer4 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url('/assets/images/blog-0.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logomenu {
    display: flex;
    justify-content: left;
    margin-left: 0px;
    margin-bottom: -5px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 600px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 20px;
  }


  .h6 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 310px;
    font-size: 13px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: 0px;
    left: 87%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 35px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 125px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 380px;
    height: 350px;
    margin-left: 100px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -40px;
    margin-left: -40px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 400px;
    padding: 30px;
    text-align: center;
    font-size: 15px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 1450px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: -20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 11px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: -50px;
    text-align: center;
    margin-left: -140px;
    margin-right: -120px;
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 45px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 476px;
    height: 410px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 480px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 476px;
    height: 410px;
    margin-top: -20px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 480px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 190px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 520px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 520px;
    height: 520px;
    margin-top: -99px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 250px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 150px;
    height: 150px;
    margin-left: 290px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 520px;
    height: 480px;
    margin-left: 0px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -10px;
    margin-top: -260px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .flex-item {
    max-width: calc(130%);
    margin-left: 0px;
    margin-top: -88px;
  }

  .flex-item2 {

    display: none;
  }

  .flex-item4 {
    width: calc(100%);
    height: 1800px;
    margin-left: 0px;
    margin-top: 50px;
  }



  .flex-box {
    width: 100%;
    height: 380px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 476px;
    height: 256.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 100%;
    height: 380px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 100%;
    height: 380px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 480px;
    background-repeat: no-repeat;
  }


  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 40px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 90px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    margin-top: -121px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 96px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 1100px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }

  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: var(--fs-7);
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 60px;
    ;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }


  .footer-list2 {
    max-width: 520px;
    max-height: 350px;
    width: 520px;
    height: 350px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 520px;
    margin-left: -20px;
    margin-top: -50px;
  }

  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 13px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

}


@media (min-width: 570px) {

  .logincontainer3 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logincontainer4 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url('/assets/images/blog-0.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .span2 {
    font-size: 20px;
    color: var(--pale-spring-bud);
  }



  .titletermos {
    color: var(--black);
    font-size: 25px;
  }

  .corptermos {
    color: var(--black_50);
    font-size: 16px;
    margin-top: 10px;
    margin-right: 0px;
    text-align: justify;
  }

  :is(.header, .hero) .container {
    max-width: unset;
  }

  .has-scrollbar {
    gap: 30px;
  }

  .scrollbar-item {
    min-width: calc(50% - 15px);
  }


  .header-actionstermos {
    display: flex;
    align-items: center;
    gap: 40px;
    visibility: hidden;
  }

  .bx3 {
    display: none;
    visibility: hidden;
  }


  /**
   * HEADER
   */

  .alert {
    padding-block: 8px;
  }

  .header-top .container {
    padding-inline: 30px;
  }



  /**
   * HERO
   */

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 300px;
    min-height: 300px;
  }

  .textbanner {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    color: var(--white);
  }

  .textbanner2 {
    font-size: 14px;
    margin-top: 20px;
    color: var(--black);
  }

  .textbannertitle {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -60px;
    line-height: 1.3;
  }

  .textbannertitle2 {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -75px;
    line-height: 1.3;
  }

  .pricetext {
    color: var(--black);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-block-end: 20px;
    visibility: hidden;
  }

  .hero-text {
    max-width: 30ch;
  }

  .hero-text-t {
    max-width: 30ch;
  }



  /**
   * BANNER
   */

  .banner-card .card-text {
    max-width: 30ch;
  }



  /**
   * OFFER
   */

  .offer .countdown {
    --fs-2: 4.8rem;
  }

  .offer .countdown .time:not(:last-child)::after {
    margin-inline: 20px;
  }


  .logomenu {
    display: flex;
    justify-content: left;
    margin-left: 0px;
    margin-bottom: -5px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 20px;
  }


  .h6 {
    color: var(--white);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 340px;
    font-size: 13.5px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: -10px;
    left: 90%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 35px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 150px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 420px;
    height: 350px;
    margin-left: 140px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -40px;
    margin-left: -40px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 420px;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 1450px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: -20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 12px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: -50px;
    text-align: center;
    margin-left: -140px;
    margin-right: -120px;
    text-align: center;
    font-size: 15px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 65px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 510px;
    height: 480px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 510px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 510px;
    height: 480px;
    margin-top: -20px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 510px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 210px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 580px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 580px;
    height: 580px;
    margin-top: -99px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 250px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 150px;
    height: 150px;
    margin-left: 290px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 590px;
    height: 510px;
    margin-left: -10px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -10px;
    margin-top: -260px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .flex-item {
    max-width: calc(130%);
    margin-left: 0px;
    margin-top: -88px;
  }

  .flex-item2 {

    display: none;
  }

  .flex-item4 {
    width: calc(100%);
    height: 1800px;
    margin-left: 0px;
    margin-top: 50px;
  }



  .flex-box {
    width: 100%;
    height: 420px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 520px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 510px;
    height: 256.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 100%;
    height: 420px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 520px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 100%;
    height: 420px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 520px;
    background-repeat: no-repeat;
  }


  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 60px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 240px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    margin-top: -121px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 96px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 1300px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }

  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: var(--fs-7);
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 90px;
    ;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }


  .footer-list2 {
    max-width: 590px;
    max-height: 380px;
    width: 590px;
    height: 380px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 590px;
    margin-left: -40px;
    margin-top: -70px;
  }

  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 13px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

}



@media (min-width: 670px) {

  .logincontainer3 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logincontainer4 {
    display: none;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url('/assets/images/blog-0.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .span2 {
    font-size: 20px;
    color: var(--pale-spring-bud);
  }



  .titletermos {
    color: var(--black);
    font-size: 25px;
  }

  .corptermos {
    color: var(--black_50);
    font-size: 16px;
    margin-top: 10px;
    margin-right: 0px;
    text-align: justify;
  }

  :is(.header, .hero) .container {
    max-width: unset;
  }

  .has-scrollbar {
    gap: 30px;
  }

  .scrollbar-item {
    min-width: calc(50% - 15px);
  }


  .header-actionstermos {
    display: flex;
    align-items: center;
    gap: 40px;
    visibility: hidden;
  }

  .bx3 {
    display: none;
    visibility: hidden;
  }


  /**
   * HEADER
   */

  .alert {
    padding-block: 8px;
  }

  .header-top .container {
    padding-inline: 30px;
  }



  /**
   * HERO
   */

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 300px;
    min-height: 300px;
  }

  .textbanner {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    color: var(--white);
  }

  .textbanner2 {
    font-size: 14px;
    margin-top: 20px;
    color: var(--black);
  }

  .textbannertitle {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -60px;
    line-height: 1.3;
  }

  .textbannertitle2 {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -75px;
    line-height: 1.3;
  }

  .pricetext {
    color: var(--black);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-block-end: 20px;
    visibility: hidden;
  }

  .hero-text {
    max-width: 30ch;
  }

  .hero-text-t {
    max-width: 30ch;
  }



  /**
   * BANNER
   */

  .banner-card .card-text {
    max-width: 30ch;
  }



  /**
   * OFFER
   */

  .offer .countdown {
    --fs-2: 4.8rem;
  }

  .offer .countdown .time:not(:last-child)::after {
    margin-inline: 20px;
  }


  .logomenu {
    display: flex;
    justify-content: left;
    margin-left: 0px;
    margin-bottom: -5px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 20px;
  }


  .h6 {
    color: var(--white);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 340px;
    font-size: 13.5px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: -10px;
    left: 90%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 35px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 200px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 470px;
    height: 350px;
    margin-left: 160px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -40px;
    margin-left: 0px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 480px;
    padding: 20px;
    text-align: center;
    font-size: 17px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 1450px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: 0px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 13px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: -50px;
    text-align: center;
    margin-left: -140px;
    margin-right: -120px;
    text-align: center;
    font-size: 15px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 75px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 510px;
    height: 480px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 510px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 510px;
    height: 480px;
    margin-top: -20px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 510px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 210px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 580px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 580px;
    height: 580px;
    margin-top: -99px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 250px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 180px;
    height: 180px;
    margin-left: 320px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 590px;
    height: 510px;
    margin-left: -10px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -20px;
    margin-top: -290px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .flex-item {
    max-width: calc(130%);
    margin-left: 0px;
    margin-top: -88px;
  }

  .flex-item2 {

    display: none;
  }

  .flex-item4 {
    width: calc(100%);
    height: 1800px;
    margin-left: 0px;
    margin-top: 50px;
  }



  .flex-box {
    width: 100%;
    height: 420px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 520px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 510px;
    height: 256.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 100%;
    height: 420px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 520px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 100%;
    height: 420px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 520px;
    background-repeat: no-repeat;
  }


  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 60px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 240px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    margin-top: -121px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 96px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 1300px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }

  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: var(--fs-7);
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 90px;
    ;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }


  .footer-list2 {
    max-width: 690px;
    max-height: 430px;
    width: 690px;
    height: 430px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 690px;
    margin-left: -90px;
    margin-top: -70px;
  }

  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: 16px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 16px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  .logincontainer3 {
    display: block;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 450px;
  }

  .logincontainer4 {
    display: block;
    width: 450px;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url('/assets/images/blog-0.png');
    background-repeat: no-repeat;
    background-size: 450px;
  }

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.6rem;

  }


  .span2 {
    font-size: 20px;
    color: var(--pale-spring-bud);
  }


  .hero-card {
    padding: 120px 100px;
    max-height: 400px;
    min-height: 400px;
  }

  .textbanner {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    color: var(--white);
  }

  .textbanner2 {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    margin-left: -60px;
    color: var(--black);
  }

  .textbannertitle {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -20px;
    line-height: 1.3;
  }

  .textbannertitle2 {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -20px;
    margin-left: -60px;
    line-height: 1.3;
  }

  .btn-primary2 {
    background-color: var(--black);
    max-width: 120px;
    font-size: 14px;
    margin-left: -60px;
    justify-content: center;
    display: flex;
    margin-top: 20px;
    padding: 5px;
    color: var(--white);
    box-shadow: var(--shadow-2);
  }



  .pricetext {
    color: var(--black);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-block-end: 20px;
    visibility: hidden;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 730px;
  }

  .flex-item {
    max-width: calc(50% - 15px);
    margin-left: -40px;
    margin-top: -108px;
  }

  .flex-item2 {
    width: 940px;
    height: 573px;
    display: flex;
    margin-left: -65px;
    margin-top: -115px;
  }

  .flex-item3 {
    width: 940px;
    height: 286.5px;
    background: var(--verde);
    display: flex;
  }


  .flex-item5 {
    width: 940px;
    height: 286.5px;
    margin-top: 130px;
    background: var(--verde);
    display: flex;
  }

  .flex-item4 {
    width: 940px;
    height: 573px;
    display: none;
    margin-left: -65px;
    margin-top: -115px;
  }

  .flex-box {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 310px;
    height: 286.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }



  /**
   * COLLECTION
   */

  .collection-card {
    min-height: 450px;
  }



  /**
   * BANNER
   */

  .banner-list {
    grid-template-columns: 1fr 0.7fr;
  }

  .banner-card {
    padding: 50px;
  }



  /**
   * OFFER
   */

  .offer .section-text {
    max-width: 45ch;
  }



  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-list:last-child {
    grid-column: 1 / 4;
  }

  .footer-bottom {
    display: block;
    justify-content: center;
    align-items: center;
  }



  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-bottom .wrapper {
    margin-block-end: 0;
  }

  .logomenu {
    display: flex;
    justify-content: left;
    margin-left: 0px;
    margin-bottom: -5px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 20px;
  }


  .h6 {
    color: var(--white);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 340px;
    font-size: 13.5px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: -10px;
    left: 90%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 35px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 250px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 470px;
    height: 350px;
    margin-left: 200px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -40px;
    margin-left: 0px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 480px;
    padding: 20px;
    text-align: center;
    font-size: 17px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 1450px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: 0px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 20px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: 50px;
    text-align: center;
    margin-left: -140px;
    margin-right: -160px;
    text-align: center;
    font-size: 15px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 75px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 710px;
    height: 450px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 700px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 710px;
    height: 480px;
    margin-top: -20px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 700px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-left: 240px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 380px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 580px;
    height: 500px;
    margin-top: -49px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 250px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 0px;
    height: 180px;
    margin-left: 0px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 400px;
    height: 450px;
    margin-left: -10px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -20px;
    margin-top: -290px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }





  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 60px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 240px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 200px;
    height: 200px;
    margin-left: 0px;
    margin-top: -21px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 196px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 1300px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }

  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: var(--fs-7);
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 180px;
    ;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }


  .footer-list2 {
    max-width: 850px;
    max-height: 430px;
    width: 850px;
    height: 430px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 790px;
    margin-left: -40px;
    margin-top: -30px;
  }

  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 30px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: 16px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 16px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }


  .flex-item {
    max-width: calc(50% - 15px);
    margin-left: -40px;
    margin-top: -108px;
  }

  .flex-item2 {
    width: 940px;
    height: 573px;
    display: block;
    margin-left: -65px;
    margin-top: -115px;
  }

  .flex-item3 {
    width: 940px;
    height: 286.5px;
    background: var(--verde);
    display: flex;
  }

  .flex-item4 {
    width: 940px;
    height: 573px;
    display: none;
    margin-left: -65px;
    margin-top: -115px;
  }

  .flex-box {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 310px;
    height: 286.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }

  .flex-list {
    display: none;
  }

  .flex-list-newmodelo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
    margin-bottom: -220px;
    margin-right: -30px;
    padding-left: 10px;
  }





  .flex-item2-newmodelo {
    max-width: 405px;
    max-height: 605px;
    width: 405px;
    height: 605px;
    margin-left: 0px;
    margin-top: -47px;
  }


  .flex-item3-newmodelo {
    max-width: 405px;
    max-height: 201.6px;
    display: flex;
    width: 405px;
    height: 201.66px;
  }

  .flex-item4-newmodelo {
    max-width: 203px;
    max-height: 201.6px;
    width: 202.5px;
    height: 201.66px;
  }

  .flex-box-new {
    width: 100%;
    height: 201.6px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 202.5px;
    background-repeat: no-repeat;
  }

  .flex-box3-new {
    width: 100%;
    height: 201.6px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 202.5px;
    background-repeat: no-repeat;
  }

  .flex-box4-new {
    width: 100%;
    height: 201.6px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 202.5px;
    background-repeat: no-repeat;
  }

  .flex-box2-new {
    width: 203;
    height: 201.6px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .h11-new {
    color: var(--verde);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 20px;
    margin-left: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2-new {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 20px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12-new {
    color: var(--verde);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 10px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 50px;

  }


  .span2 {
    font-size: 20px;
    color: var(--pale-spring-bud);
  }


  .hero-card {
    padding: 120px 100px;
    max-height: 450px;
    min-height: 450px;
  }

  .textbanner {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    color: var(--white);
  }

  .textbanner2 {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    margin-left: 0px;
    color: var(--black);
  }

  .textbannertitle {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -20px;
    line-height: 1.3;
  }

  .textbannertitle2 {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -25px;
    margin-left: 0px;
    line-height: 1.3;
  }

  .btn-primary2 {
    background-color: var(--black);
    max-width: 120px;
    font-size: 14px;
    justify-content: center;
    display: flex;
    margin-top: 20px;
    margin-left: 0px;
    padding: 5px;
    color: var(--white);
    box-shadow: var(--shadow-2);
  }



  .pricetext {
    color: var(--black);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-block-end: 20px;
    visibility: hidden;
  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .scrollbar-item {
    min-width: calc(33.33% - 20px);
  }

  .flex-item {
    max-width: calc(38.33% - 20px);
  }



  /**
   * COLLECTION
   */

  .collection-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }




  /**
   * BANNER
   */

  .banner-list {
    grid-template-columns: 1fr 0.5fr;
  }



  /**
   * OFFER
   */

  .offer .container {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 30px;
  }

  .offer-banner {
    margin-block-end: 0;
  }



  /**
   * FOOTER
   */

  .footer .logo {
    display: block;
  }

  .footer {
    padding-block: 100px 80px;
  }

  .footer-top {
    grid-template-columns: 0.4fr 0.4fr 0.4fr 1fr;
    margin-block-end: 120px;
  }

  .footer-list:last-child {
    grid-column: auto;
  }

  .footer .logo img {
    width: 190px;
  }


  .nav-open-btn {
    display: none;
  }

  .navbar {
    display: block;
  }

  .navbar .navbar-list {
    display: flex;
    justify-content: right;
    gap: 45px;
    margin-right: 30px;
    margin-bottom: -10px;
  }

  .navbar .logomenu {
    display: none;
  }


  .navbar .navbar-link {
    color: var(--white);
    font-size: 13px;
    font-family: 'Libre Baskerville', serif;
  }


  /**********************************************************************************************************************/


  .logomenu {
    display: flex;
    justify-content: left;
    gap: 45px;
    margin-left: 20px;
    margin-bottom: -10px;
    cursor: pointer;

  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 290px;
    min-height: 290px;
    width: 100%;
  }

  .has-bg-image {
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: center;
  }


  .card-b {
    margin-top: -70px;
    margin-left: 20px;
  }


  .h6 {
    color: var(--white);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
  }


  .hero-text-b {
    width: 430px;
    font-size: 15px;
    font-weight: 600;
    margin-block: 16px 30px;
    color: white
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    font-size: 12px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }


  .card-c {
    position: relative;
    display: flex;
    margin-top: -110px;
    left: 47%;
    width: 70px;
    height: 140px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 60px;
    height: 70px;
    justify-content: center;
    align-items: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }


  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 350px;
    margin-top: -93px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 280px;
  }

  .about-text {
    width: 670px;
    height: 350px;
    margin-left: 230px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 40px;
    display: flex;
    flex-direction: column;
  }

  .h8 {
    color: var(--verde3);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    margin-left: 100px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .card-text-b {
    max-width: 650px;
    padding: 20px;
    text-align: center;
    font-size: 17px;
    margin-left: -40px;
  }


  .container4 {
    padding-inline: 0px;
    margin-top: 330px;
    width: 100%;
    height: 900px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .social-list-b {
    max-width: 400px;
    margin-left: 100px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }


  .card-text-c {
    margin-top: 80px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 18px;
    color: var(--marrom);
  }


  .h9 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h9-3 {
    color: var(--marrom);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .container-list {
    padding-inline: 0px;
    margin-top: 50px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list-3 {
    padding-inline: 0px;
    margin-top: 30px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list-4 {
    padding-inline: 0px;
    margin-top: 260px;
    margin-bottom: 220px;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 420px;
    margin-left: 10px;
    margin-top: 0px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 420px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 0px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .card-text-d {
    margin-top: -210px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -240px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 12.5px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: 50px;
    text-align: center;
    margin-left: -140px;
    margin-right: -160px;
    text-align: center;
    font-size: 15px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -360px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-c {
    margin-top: -205px;
    margin-left: 45px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c3 {
    margin-top: -205px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    display: none;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }



  .service-image1 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 80px;
    height: 80px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    margin-top: -100px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 80px;
    height: 80px;
    margin-left: 18px;
    margin-top: -100px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 60px;
    background-repeat: no-repeat;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2-2 {
    padding-inline: 0px;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }

  .container-list2-3 {
    padding-inline: 0px;
    margin-top: -180px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: none;
    justify-content: center;
  }


  .service-card5 {
    width: 100px;
    height: 100px;
    margin-left: 70px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 380px;
    height: 800px;
    margin-top: 195px;
    display: block;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 930px;
    height: 650px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 930px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 930px;
    height: 650px;
    margin-top: -20px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 930px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-left: 360px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 150px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }


  .banner-card {
    width: 580px;
    height: 451px;
    margin-left: -30px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 580px;
    height: 500px;
    margin-top: -49px;
    margin-left: -30px;
    background-color: transparent;
    padding: 10px;
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 400px;
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 250px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }


  .has-bg-image3 {
    width: 150px;
    height: 180px;
    margin-left: 320px;
    margin-top: -210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 400px;
    height: 450px;
    margin-left: -10px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 80px;
    height: 80px;
    margin-left: -20px;
    margin-top: -290px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .btn-primary-c2 {
    margin-top: -105px;
    margin-left: 20px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }





  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 40px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 160px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 240px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .post-image0 {
    width: 200px;
    height: 200px;
    margin-left: 0px;
    margin-top: -21px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 196px;
    background-repeat: no-repeat;
  }

  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 1700px;
    padding-top: 60px;
    background-color: var(--verde3);
    display: block;
    justify-content: center;
  }




  .footer-verde {
    height: 100px;
    margin-top: 10px;
    padding: 20px;
    width: 100%;
    background: var(--verde);
  }

  .footer-link {
    font-size: var(--fs-7);
    padding-block: 5px;
    margin-left: 20px;
  }


  .w-100 {
    margin-left: 180px;
    ;
  }


  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 50px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }


  .footer-list2 {
    max-width: 950px;
    max-height: 430px;
    width: 950px;
    height: 450px;
    background-image: url('/assets/images/image-b3.jpg');
    background-repeat: no-repeat;
    background-size: 890px;
    margin-left: 20px;
    margin-top: -30px;
  }

  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    margin-top: 30px;
    margin-left: 20px;
    font-weight: var(--fw-600);
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: 16px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: 16px;
    color: var(--verde);
    margin-left: 20px;
    display: flex;
  }


  /***

      .flex-item { max-width: calc(50% - 15px);
        margin-left: -40px;
        margin-top: -108px; }
    
      .flex-item2 {
        width: 940px;
        height: 573px;
        display: block;
        margin-left: -65px;
        margin-top: -115px;
       }
    
       .flex-item3 {
        width: 940px;
        height: 286.5px;
        background: var(--verde);
        display: flex;
       }
    
       .flex-item4 {
        width: 940px;
        height: 573px;
        display: none;
        margin-left: -65px;
        margin-top: -115px;
       }

       */

  .flex-box {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }

  .flex-box2 {
    width: 310px;
    height: 286.5px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .flex-box3 {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }

  .flex-box4 {
    width: 310px;
    height: 286.5px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 310px;
    background-repeat: no-repeat;
  }



  .flex-list {
    display: none;
  }

  .flex-list-newmodelo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
    margin-bottom: -220px;
    margin-right: -30px;
    padding-left: 10px;
  }





  .flex-item2-newmodelo {
    max-width: 605px;
    max-height: 605px;
    width: 605px;
    height: 605px;
    margin-left: 0px;
    margin-top: -47px;
  }


  .flex-item3-newmodelo {
    max-width: 605px;
    max-height: 201.6px;
    display: flex;
    width: 605px;
    height: 201.66px;
  }

  .flex-item4-newmodelo {
    max-width: 303px;
    max-height: 201.6px;
    width: 302.5px;
    height: 201.66px;
  }

  .flex-box-new {
    width: 100%;
    height: 201.6px;
    background-image: url('/assets/images/blog-2.png');
    background-size: 302.5px;
    background-repeat: no-repeat;
  }

  .flex-box3-new {
    width: 100%;
    height: 201.6px;
    background-image: url('/assets/images/blog-3.png');
    background-size: 302.5px;
    background-repeat: no-repeat;
  }

  .flex-box4-new {
    width: 100%;
    height: 201.6px;
    background-image: url('/assets/images/blog-0.png');
    background-size: 302.5px;
    background-repeat: no-repeat;
  }

  .flex-box2-new {
    width: 203;
    height: 201.6px;
    margin-top: 0px;
    background: var(--cultured-1);
  }

  .h11-new {
    color: var(--verde);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    padding-top: 20px;
    margin-left: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2-new {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 20px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12-new {
    color: var(--verde);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 10px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }



}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1300px;
  }

  .scrollbar-item {
    min-width: calc(20% - 24px);
  }

  .bx2 {
    display: none;
  }

  .bx3 {
    display: none;
  }


  .span2 {
    font-size: 20px;
    color: var(--pale-spring-bud);
  }



  /**
   * HEADER
   */

  .header .input-wrapper,
  .header-action-btn:not(:first-child),
  .navbar {
    display: block;
  }

  .nav-open-btn {
    display: none;
  }

  .header {
    padding-block-end: 60px;
    margin-block-end: 10px;
  }

  .header-top {
    position: unset;
    padding-block: 24px 0;
  }

  .header-top:is(.active, .header-hide) {
    all: unset;
  }

  .header-top .container {
    flex-wrap: wrap;
  }

  .search-field {
    width: 270;
    font-size: var(--fs-7);
    border: 2px solid var(--hoockers-green);
    border-radius: 10px;
    padding: 10px 20px;
    padding-inline-end: 40px;
    outline: none;
    transition: var(--transition-1);
  }

  .search-field::placeholder {
    color: var(--spanish-gray);
  }

  .search-field:focus {
    border-color: var(--black);
  }

  .header .input-wrapper {
    position: relative;
  }

  .header .search-submit {
    position: absolute;
    top: 60%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--pale-spring-bud);
  }

  .header .search-submit ion-icon {
    --ionicon-stroke-width: 40px;
  }

  .header .logo {
    margin-inline-end: 60px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .header-actionstermos {
    display: flex;
    align-items: center;
    gap: 40px;
    visibility: hidden;
  }

  .header-action-btn {
    position: relative;
  }

  .header-action-btn .btn-badge {
    position: absolute;
    top: 0;
    right: -10px;
    background-color: var(--black);
    color: var(--white);
    font-size: var(--fs-9);
    min-width: 18px;
    height: 18px;
    line-height: 1.4;
    border-radius: 20px;
  }

  .header-action-btn:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-action-btn .btn-text {
    font-size: var(--fs-7);
    font-weight: var(--fw-700);
    margin-block-start: 3px;
  }

  .navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding-block: 18px;
    z-index: 4;
  }

  .navbar .navbar-list {
    display: flex;
    justify-content: right;
    gap: 45px;
    margin-right: 30px;
    margin-bottom: 10px;
  }



  .navbar .navbar-link {
    color: var(--white);
    font-size: 13px;
    font-family: 'Libre Baskerville', serif;
  }

  .navbar .navbar-link::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    transition: var(--transition-1);
    transform: scaleX(0);
    transform-origin: left;
  }

  .navbar .navbar-link:is(:hover, :focus)::after {
    transform: scaleX(1);
  }

  .header-top.active .navbar {
    position: fixed;
    top: -110px;
    bottom: auto;
    padding-block: 28px;
    box-shadow: var(--shadow-1);
    transform: translateY(100%);
    transition: var(--transition-2);
  }

  .header-top.header-hide .navbar {
    box-shadow: none;
    transform: translateY(0);
  }



  /**
   * HERO
   */

  .hero-card {
    padding: 120px 100px;
    max-height: 450px;
    min-height: 450px;
  }

  .textbanner {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    color: var(--white);
  }

  .textbanner2 {
    font-size: var(--fs-6);
    font-size: 18px;
    margin-top: 20px;
    margin-left: 0px;
    color: var(--black);
  }

  .textbannertitle {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: 20px;
    line-height: 1.3;
  }

  .textbannertitle2 {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 25px;
    margin-top: -25px;
    margin-left: 0px;
    line-height: 1.3;
  }

  .btn-primary2 {
    background-color: var(--black);
    max-width: 120px;
    font-size: 14px;
    justify-content: center;
    display: flex;
    margin-top: 20px;
    margin-left: 0px;
    padding: 5px;
    color: var(--white);
    box-shadow: var(--shadow-2);
  }



  .pricetext {
    color: var(--black);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-block-end: 20px;
    visibility: hidden;
  }

  .hero-text {
    max-width: 40ch;
  }

  .hero-text-t {
    max-width: 40ch;
  }



  /**
   * BANNER
   */

  .banner-card-1 .card-title {
    max-width: 200px;
  }



  /**
   * FEATURE
   */

  .feature .section-title {
    margin-block-end: 60px;
  }

  .feature .flex-list {
    gap: 100px;
    padding-inline: 50px;
  }

  .feature .flex-item {
    max-width: calc(33.33% - 66.66px);
  }



  /**
   * OFFER
   */

  .offer .container {
    gap: 120px;
  }

  .logomenu {
    display: flex;
    justify-content: left;
    gap: 45px;
    margin-left: 20px;
    margin-bottom: -30px;
    cursor: pointer;

  }

  .navbar .logomenu {
    display: flex;
  }

  .navbar {
    background: var(--verde);
  }


  .agendaimage {

    width: 100%;
    height: 500px;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    background-image: url('/assets/images/agendar.png');
    background-repeat: no-repeat;
    background-size: 500px;
    background-position-x: center;

  }


  .container-list {
    padding-inline: 0px;
    margin-top: -130px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }

  .container-list2 {
    padding-inline: 0px;
    margin-top: -80px;
    width: 100%;
    height: 350px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
  }


  .container-list3 {
    padding-inline: 0px;
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    height: 350px;
    padding-top: 60px;

    background-color: var(--verde3);
    display: flex;
    justify-content: center;
  }

  .service-card1 {
    width: 300px;
    height: 500px;
    margin-left: 20px;
    justify-content: center;
    background: var(--marrom2);
    background-size: 350px;
  }

  .service-card2 {
    width: 300px;
    height: 500px;
    margin-left: 20px;
    justify-content: center;
    background: var(--verde);
    background-size: 350px;
  }

  .service-card3 {
    width: 300px;
    height: 500px;
    margin-left: 20px;
    margin-top: 0px;
    justify-content: center;
    background: var(--marrom);
    background-size: 350px;
  }

  .service-card4 {
    width: 300px;
    height: 500px;
    margin-left: 20px;
    margin-top: 0px;
    justify-content: center;
    background: var(--star-yellow);
    background-size: 350px;
  }

  .service-card5 {
    width: 150px;
    height: 150px;
    margin-left: 100px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card5-2 {
    width: 850px;
    height: 395px;
    margin-left: 120px;
    margin-top: -105px;
    display: flex;
    justify-content: center;
    background: var(--cultured-1);
    cursor: pointer;
  }

  .service-card5-3 {
    width: 475px;
    height: 395px;
    background-image: url('/assets/images/blog-6.png');
    background-repeat: no-repeat;
    background-size: 450px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card5-4 {
    width: 475px;
    height: 395px;
    margin-top: 0px;
    background-image: url('/assets/images/blog-5.png');
    background-repeat: no-repeat;
    background-size: 450px;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .service-card6 {
    width: 150px;
    height: 150px;
    margin-left: 0px;
    border-radius: 50%;
    border: 2px solid black;
    justify-content: center;
    background: transparent;
    background-size: 350px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-card6-2 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    border-radius: 50%;
    margin-left: 150px;
    margin-right: 50px;
    border: 2px solid white;
    justify-content: center;
    background: transparent;
    background-size: 100px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
  }

  .service-image-b {
    width: 100%;
    height: 120px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-image {
    width: 120px;
    height: 120px;
    background-image: url('/assets/images/service-0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 120px;
    background-repeat: no-repeat;
  }

  .service-image1 {
    width: 120px;
    height: 120px;
    background-image: url('/assets/images/service-1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 120px;
    background-repeat: no-repeat;
  }

  .service-image2 {
    width: 120px;
    height: 120px;
    background-image: url('/assets/images/service-2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 120px;
    background-repeat: no-repeat;
  }

  .service-image3 {
    width: 120px;
    height: 120px;
    background-image: url('/assets/images/service-3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 120px;
    background-repeat: no-repeat;
  }

  .service-image4 {
    width: 150px;
    height: 150px;
    margin-left: 35px;
    margin-top: 0px;
    background-image: url('/assets/images/service-4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image5 {
    width: 150px;
    height: 150px;
    margin-left: 35px;
    margin-top: 0px;
    background-image: url('/assets/images/service-5.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image6 {
    width: 150px;
    height: 150px;
    margin-left: 35px;
    margin-top: 0px;
    background-image: url('/assets/images/service-6.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image7 {
    width: 150px;
    height: 150px;
    margin-left: 35px;
    margin-top: 0px;
    background-image: url('/assets/images/service-7.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .service-image8 {
    width: 150px;
    height: 150px;
    margin-left: 35px;
    margin-top: 0px;
    background-image: url('/assets/images/service-8.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }


  .post-image0 {
    width: 100px;
    height: 100px;
    margin-left: 0px;
    margin-top: -121px;
    background-image: url('/assets/images/post-image0.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 96px;
    background-repeat: no-repeat;
  }

  .post-image1 {
    width: 150px;
    height: 150px;
    margin-left: 0px;
    margin-top: -71px;
    background-image: url('/assets/images/post-image1.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 146px;
    background-repeat: no-repeat;
  }


  .post-image2 {
    width: 150px;
    height: 150px;
    margin-left: 0px;
    margin-top: -71px;
    background-image: url('/assets/images/post-image2.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 146px;
    background-repeat: no-repeat;
  }

  .post-image3 {
    width: 150px;
    height: 150px;
    margin-left: 0px;
    margin-top: -71px;
    background-image: url('/assets/images/post-image3.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 146px;
    background-repeat: no-repeat;
  }

  .post-image4 {
    width: 150px;
    height: 150px;
    margin-left: 0px;
    margin-top: -71px;
    background-image: url('/assets/images/post-image4.png');
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 146px;
    background-repeat: no-repeat;
  }


  .service-text-b {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    margin-top: 0px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-c {
    width: 100%;
    height: 320px;
    margin-top: -200px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-text-d {
    width: 100%;
    height: 320px;
    margin-top: -270px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hero-text-b {
    width: 470px;
    font-size: 15px;
    margin-block: 16px 30px;
    color: white
  }

  .h6 {
    color: var(--white);
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
  }

  .h7 {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  .h8 {
    max-width: 1000px;
    color: var(--verde3);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: -20px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .h9 {
    color: var(--gray-web);
    font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-2 {
    color: transparent;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .h10 {
    color: var(--verde3);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Sacramento', serif;
  }

  .h11 {
    color: var(--verde);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 60px;
    padding-top: 0px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h11-2 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-left: 40px;
    display: flex;
    justify-content: left;
    text-decoration: underline var(--verde2);
    font-family: 'Open Sans', sans-serif;
  }

  .h12 {
    color: var(--verde);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    margin-left: 50px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h13 {
    color: var(--white);
    background: var(--verde3);
    font-size: 28px;
    margin-bottom: -40px;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .h14 {
    color: var(--white);
    background: var(--verde3);
    font-size: 20px;
    margin-bottom: -20px;
    padding-left: 60px;
    padding-top: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: left;
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-b {
    max-width: 100%;
    width: 100%;
    padding: 40px;
    text-align: center;
    font-size: 18px;
    margin-left: 0px;
  }

  .card-text-c {
    margin-top: 40px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 25px;
    color: var(--marrom);
  }

  .card-text-d {
    margin-top: -180px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 25px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-e {
    margin-top: -180px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-h {
    margin-top: -50px;
    text-align: center;
    margin-left: -120px;
    margin-right: -120px;
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
  }

  .card-text-f {
    margin-top: -250px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 20px;
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
  }

  .btn-primary-b {
    margin-top: -55px;
    background-color: var(--verde2);
    border-radius: 30px;
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .btn-primary-c {
    margin-top: -55px;
    margin-left: 0px;
    background-color: transparent;
    border-radius: 30px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .card-b {
    margin-top: -80px;
    margin-left: 20px;
  }

  .card-c {
    position: relative;
    display: flex;
    margin-top: -110px;
    left: 47%;
    width: 70px;
    height: 140px;
    border-radius: 50px;
    border: 1px solid var(--white);
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    box-shadow: var(--shadow-2);
  }

  .h2-2 {
    color: var(--white);
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 0px;
    width: 400px;
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .h2-3 {
    color: var(--white);
    font-weight: 300;
    font-size: 18px;
    margin-left: 0px;
    margin-top: 20px;
    margin-bottom: 140px;
    width: 350px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
  }

  .has-bg-image {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image3 {
    width: 300px;
    height: 300px;
    margin-left: 400px;
    margin-top: -280px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image4 {
    width: 480px;
    height: 480px;
    margin-left: -40px;
    margin-top: 39px;
    box-shadow: var(--shadow-1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .has-bg-image5 {
    width: 100px;
    height: 100px;
    margin-left: -30px;
    margin-top: -390px;
    background-image: url('/assets/images/premium.png');
    background-size: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }


  .container3 {
    padding-inline: 0px;
    margin-top: -40px;
    width: 100%;
    height: 350px;
    background-color: var(--verde3);
    display: flex;
    justify-content: center;
  }

  .container4 {
    padding-inline: 0px;
    margin-top: -100px;
    width: 100%;
    height: 1050px;
    border-top: 2px solid var(--cinza);
    background-color: var(--white);
    justify-content: center;
  }

  .about-image {
    width: 350px;
    height: 450px;
    margin-left: 40px;
    margin-top: -85px;
    justify-content: center;
    background-image: url('/assets/images/image-b5.png');
    background-repeat: no-repeat;
    background-size: 350px;
  }

  .about-text {
    width: 930px;
    height: 350px;
    margin-left: 40px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .service-body {
    align-items: center;
    width: 100%;
    margin-top: 0px;
    height: 350px;
    justify-content: center;
    display: flex;
    background: var(--white);
  }

  .service-text {
    align-items: center;
    width: 930px;
    height: 350px;
    justify-content: center;
    display: block;
    background: var(--white);
  }

  .collection-card-b {
    background-color: var(--white);
    max-height: 0px;
    padding-block-end: 20px;
    display: flex;
    flex-direction: column;
  }

  .has-bg-image2 {
    width: 350px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .social-list-b {
    max-width: 1000px;
    margin-left: -10px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--verde);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }

  .hero-card {
    background-color: var(--light-gray);
    padding: 100px 15px;
    background-position: 40%;
    max-height: 350px;
    min-height: 350px;
  }

  .textbanner {
    font-size: 12px;
    margin-top: 20px;
    color: var(--white);
  }

  .textbanner2 {
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--black);
  }

  .textbannertitle {
    color: var(--pale-spring-bud);
    font-weight: var(--fw-600);
    font-size: 18px;
    margin-top: -25px;
    line-height: 1.3;
  }

  .textbannertitle2 {
    color: var(--pale-spring-bud);
    font-weight: 700;
    font-size: 18px;
    margin-top: -55px;
    line-height: 1.3;
  }

  .btn-primary2 {
    background-color: var(--black);
    max-width: 120px;
    font-size: 14px;
    justify-content: center;
    display: flex;
    margin-top: -10px;
    padding: 5px;
    color: var(--white);
    box-shadow: var(--shadow-2);
  }

  .btn-secondary2 {
    background-color: var(--white);
    max-width: 130px;
    font-size: 14px;
    justify-content: center;
    display: flex;
    margin-top: -20px;
    padding: 5px;
    color: var(--black);
    box-shadow: var(--shadow-2);
  }

  .card-logo {
    width: 60px;
    height: 70px;
    justify-content: center;
    align-items: center;
  }

  .btn {
    font-weight: var(--fw-600);
    width: 220px;
    border-radius: 100px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    height: 45px;
    padding: 10px 10px;
    transition: var(--transition-1);
  }


  .container-list-3 {
    display: none;
  }

  .container-list-4 {
    display: none;
  }

  .container-list2-2 {
    display: none;
  }

  .container-list2-3 {
    display: none;
  }

  .banner-card {
    width: 850px;
    height: 451px;
    background-color: var(--verde);
    padding: 30px;
  }

  .banner-card2 {
    width: 450px;
    height: 520px;
    margin-top: -69px;
    margin-left: -30px;
    background-color: transparent;
    padding: 30px;
  }

  .btn-primary-c2 {
    display: none;
  }

  .btn-primary-c3 {
    margin-top: -45px;
    margin-left: 0px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 15px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-1);
    color: white;
    cursor: pointer;
  }

  .flex-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 180px;
    gap: 30px;
  }

  .flex-list-newmodelo {
    display: none;

  }

  .h9-3 {
    color: var(--marrom);
    font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }

  .h9-4 {
    color: transparent;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: -10px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    text-decoration: underline var(--marrom);
    font-family: 'Open Sans', sans-serif;
  }

  .img-cover-2 {
    width: 80%;
    height: 80%;
    margin-top: 0px;
    margin-left: 45px;
    object-fit: cover;
  }

  .footer {
    justify-content: center;
    background-color: var(--cultured-1);
    padding-block: 70px;
    margin-top: 0px;
    max-height: 350px;
    margin-bottom: -10px;
  }


  .footer-top {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-block-end: 60px;
  }

  .footer-list2 {
    max-width: 500px;
    max-height: 350px;
    width: 500px;
    height: 350px;
    background-image: url('/assets/images/image-b3.jpg');
    background-size: 510px;
    margin-top: -70px;
    margin-left: -250px;
  }

  .footer-list-title {
    color: var(--black);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    margin-top: 0px;
    margin-left: 0px;
    margin-block-end: 10px;
  }

  .footer-list-text {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 0px;
    display: flex;
  }

  .footer-list-text2 {
    font-size: var(--fs-8);
    color: var(--verde);
    margin-left: 0px;
    display: flex;
  }

  .footer-list-image {
    margin-right: 10px;
    margin-top: 3px;
    color: var(--verde2);
  }

  .footer-list-text .link {
    display: inline-block;
    color: var(--black);
    font-weight: var(--fw-600);
    text-decoration: underline;
    transition: var(--transition-1);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .ioniceye {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: -15px;
}

  .footer-bottom .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-block-end: 20px;
  }

  #blog{
    margin-top: 0px;
  }

  .logo-footer {
    display: block;
  }

  .footer-link {
    font-size: var(--fs-7);
    padding-block: 5px;
    margin-left: 0px;
  }

  .flex-item {
    max-width: calc(33.33% - 20px);
  }

  .w-100 {
    margin-left: 0px;
    ;
  }

  .logincontainer {
    width: 107%;
    margin-left: -40px;
    margin-top: -10px;
    background-color: var(--verde3);
    display: flex;
    justify-content: center;
  }

  #loginlogincont {
    justify-content: right;
    width: 100%;
    margin-right: 0px;
    padding-right: 40px;
    margin-left: 0px;
    background-color: white;
  }

  #loginlogin3 {
    width: 0px;
    border-bottom: 1px solid var(--verde3);
    flex: 2;
  }

  #loginlogin4 {
    display: flex;
    margin-top: 0px;
    justify-content: center;
    align-items: center;
    width: 0px;
    height: auto;
    border-top-left-radius: 130px;
    border-bottom-right-radius: 130px;
    flex: 1.2;
    background-color: var(--verde3);
  }




  .agendatitle {
    display: flex;
    font-weight: 400;
    margin-top: -30px;
    margin-bottom: 20px;
    color: var(--marrom);
    font-size: 30px;
    justify-content: center;
  }

  .logincontainer3-2 {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
  }


  #loginlogin5 {
    width: 270px;
    height: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: white;
  }


  .nameform3 {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    color: black;
    cursor: pointer;
  }

}