/* --------------------------
:: Site Author: Letícia Gonçalves
:: Description: Site desenvolvido exclusivamente para Dolce Altezza
-------------------------- */

/* --------------------------
:: Fonts
-------------------------- */

/* Fonts */
:root {
  --font-default: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-heading: "Cormorant", serif;
}


:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Base CSS Start
--------------------------------------------------------------*/
body {
  background-color:#fff;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size:15px;
  line-height:28px;
  color:#000;
  margin-top: 0;
}

a {
  color: #D3B47C;
  text-decoration: none;
}

a:hover {
  color: #CFA35B;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", times, serif;
  text-decoration: none;
}

h1 { font-size: 50px; color: #000;}
h2 { font-size: 45px; color: #000;}
h3 { font-size: 20px; color: #000;}
h3 { font-size: 18px; color: #000;}
h5 { font-size: 16px; color: #000;}
h6 { font-size: 14px; color: #000;}

strong {
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Preloader CSS
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #A16C1E;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Buttons CSS
--------------------------------------------------------------*/
/*Scroll Top Button*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #A16C1E;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #A16C1E, transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Section CSS
--------------------------------------------------------------*/
/* Global Sections */
.section {
  color: #444444;
  background-color: #fff;
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/* Global Sections Title*/
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-family: "Cormorant", serif;
  margin: 0;
  position: relative;
  display: inline-block;
  z-index: 0;
  word-break: break-word;
}

.section-title h3 {
  font-family: "Cormorant", serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .15em;
  display: block;
  margin-bottom: 13px;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Title Altezza CSS
--------------------------------------------------------------*/
.title-altezza h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ccc;
  font-family: "Rubik", arial, sans-serif;
}

/*--------------------------------------------------------------
# Header CSS
--------------------------------------------------------------*/
/* Header Base */
.header {
  background-color: #efd5d0; /* Cor de fundo rosa */
  color: #444444;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

/*--------------------------------------------------------------
# Navigation Menu CSS
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    display: flex;
    justify-content: center;
    flex-grow: 1;
  }

  .navmenu .logo-item {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .navmenu .nav-logo {
    height: 80px;
    object-fit: contain;
    margin: 0 20px;
  }

  .navmenu .logo-item img {
    height: 80px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 12px;
    padding: 0 2px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #B7852C;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #B7852C;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #444444;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #B7852C;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, #444444, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 2px;

  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #A16C1E, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #A16C1E;
    color: #fff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #B7852C;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #A16C1E;
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media (max-width: 1199px) {
  .logo-item {
    display: none;
  }

  .navmenu ul li {
    width: 100%;
    border-bottom: 1px solid #BA975F;
    padding: 10px 0;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs ACSS
--------------------------------------------------------------*/
@media (max-width: 480px) {
  .breadcrumbs {
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .breadcrumbs .page-header {
    background-position: center;
  }
}

.breadcrumbs {
  padding: 0;
}

.breadcrumbs .page-header {
  padding: 190px 0 150px 0;
  min-height: 20vh;
  position: relative;
}

/*--------------------------------------------------------------
# Hero ACSS
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-selo {
  position: absolute;
  top: calc(15% - 20px); /* Adjusted to add margin */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: auto;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 20px; /* Ensures separation from button */
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.hero-gold {
  position: absolute;
  top: calc(15% - 20px); /* Adjusted to add margin */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: auto;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 20px; /* Ensures separation from button */
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.hero .btn-get-started.scroll-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #EFD5D0, #d07777, #EFD5D0);
  background-size: 200% 200%;
  border: 1px solid #BA975F;
  color: #000;
  cursor: pointer;
  font-size: 20px;
  animation: gradient-move 3s infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero .btn-get-started.scroll-button:hover {
  transform: scale(1.1);
  background-color: #EFD5D0;
}

@keyframes gradient-move {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

/*--------------------------------------------------------------
# Dolce Experience CSS
--------------------------------------------------------------*/
.dolce-experience {
  background-color: #fff;
  padding-bottom: 80px;
  padding-top: 80px;
  margin-top: 20px;
}

.dolce-experience .selo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.dolce-experience .content p:last-child {
  margin-bottom: 0;
}

.dolce-experience .icon-box {
  background-color: #fff;
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.dolce-experience .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #BA975F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, #A16C1E, transparent 95%);
  color: #B7852C;
}

.dolce-experience .icon-box:hover i {
  background: #EFD5D0;
}

.dolce-experience .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
}

.dolce-experience .icon-box p {
  margin-bottom: 0;
}

.dolce-experience .icon-boxes .col-md-6:nth-child(2) .icon-box,
.dolce-experience .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .dolce-experience .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .dolce-experience .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

.dolce-experience .btn-get-started {
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 20px;
  padding: 12px 40px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  background: linear-gradient(90deg, #EFD5D0, #d07777, #EFD5D0);
  background-size: 200% 200%;
  border-radius: 50px;
  border: 1px solid #BA975F;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: gradient-move 3s infinite;
  letter-spacing: 1px;
}

.dolce-experience .btn-get-started:hover {
  transform: scale(1.05);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.dolce-experience .description {
  padding: 0 40px;
}

@media (max-width: 576px) {
  .dolce-experience .description {
    border: 1px solid #BA975F;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# Dolce Menu CSS
--------------------------------------------------------------*/
.dolce-menu {
  background-color: #f9f9f9;
  padding-bottom: 80px;
  padding-top: 80px;
}

.dolce-menu .selo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.dolce-menu .content p:last-child {
  margin-bottom: 0;
}

.dolce-menu .image-wrapper img {
  border-radius: 8px;
  margin-bottom: 40px;
  border: 1px solid #BA975F;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .dolce-menu .image-wrapper img {
    margin-bottom: 0;
    margin-top: 0;
  }
  .dolce-menu .image-wrapper {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .dolce-menu .image-wrapper {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .dolce-menu .image-wrapper .main-image {
    margin-left: 0;
  }
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.dolce-menu .btn-get-started {
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 20px;
  padding: 12px 40px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  background: linear-gradient(90deg, #ceebed, #87bbbe, #ceebed);
  background-size: 200% 200%;
  border-radius: 50px;
  border: 1px solid #BA975F;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: gradient-move 3s infinite;
  letter-spacing: 1px;
}

.dolce-menu .btn-get-started:hover {
  transform: scale(1.05);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.dolce-menu .features {
  margin-top: 40px;
}

.dolce-menu .features .icon-box {
  text-align: center;
  padding: 20px;
  background-color: #ceebed;
  border: 1px solid #BA975F;
  border-radius: 8px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.dolce-menu .features .icon-box:hover {
  background-color: #EFD5D0;
}

.dolce-menu .features .icon-box i {
  font-size: 20px;
  margin-bottom: 10px;
  color: #BA975F;
}

.dolce-menu .features .icon-box h3 {
  font-size: 18px;
  margin: 0;
  color: #444;
  font-weight: 500;
}


@media (max-width: 768px) {
  .dolce-menu .features .icon-box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .dolce-menu .features .icon-box {
    flex: 1 1 100%;
  }
}

.dolce-menu .description {
  padding: 0 40px;
}

@media (max-width: 576px) {
  .dolce-menu .description {
    border: 1px solid #BA975F;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
  }
}


/*--------------------------------------------------------------
# Cards Altezza CSS
--------------------------------------------------------------*/
.photos-altezza {
  padding-top: 60px;
  padding-bottom: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.photos-altezza .selo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: auto;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 150px;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.photos-altezza .section-title {
  align-items: center;
  text-align: center;
}

.photos-altezza .section-title h2 {
  border: 1px solid #B7852C;
  background: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0;
  color: #B7852C;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.photos-altezza .section-title h3 {
  text-align: center;
}

@media (max-width: 768px) {
  .photos-altezza .col-6 {
    width: 90%;
  }
  .photos-altezza .card {
    margin: 20px 0;
  }
}

.photos-altezza .image-center {
  margin-top: 80px;
}

.photos-altezza .card-body {
  background-color: #fff;
  align-items: center;
  justify-content: center;
  background: linear-gradient(30deg, #ffffff, #EFD5D0);
  background-size: 580px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: gradient-move 3s infinite;
  padding-bottom: 40px;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.photos-altezza .card {
  border-radius: 10px;
  overflow: hidden;
  max-width: 370px;
}

.photos-altezza .card-body img {
  border-radius: 10px;
}

@media (max-width: 576px) {

  .photos-altezza {
    padding-bottom: 40px;
  }
  .photos-altezza .card {
    margin-top: 60px;
  }
}


/*--------------------------------------------------------------
# Dolce Altezza CSS
--------------------------------------------------------------*/

.products-image {
  padding-bottom: 80px;
  padding-top: 80px;
}

.products-image .selo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.products-image .btn-get-started {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  background: linear-gradient(90deg, #d6dbb5, #a8ae7f, #d6dbb5);
  background-size: 200% 200%;
  border-radius: 50px;
  border: 1px solid #BA975F;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: gradient-move 3s infinite;
  letter-spacing: 1px;
}

.products-image .btn-get-started:hover {
  transform: scale(1.05);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.products-image .info {
  border: 1px solid #BA975F;
  padding: 60px;
  margin: 20px auto;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
}

.products-image .info .row {
  display: flex;
  justify-content: center;
}

.products-image .info .col-xl-4 {
  padding: 0 15px;
  text-align: center;
}

.products-image img {
  border-radius: 10px;
  width: 50%;
}


/*--------------------------------------------------------------
# Dolce Altezza CSS
--------------------------------------------------------------*/
.dolce-altezza {
  padding-bottom: 80px;
  padding-top: 80px;
}

.dolce-altezza .selo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.dolce-altezza .btn-get-started {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  background: linear-gradient(90deg, #d6dbb5, #a8ae7f, #d6dbb5);
  background-size: 200% 200%;
  border-radius: 50px;
  border: 1px solid #BA975F;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: gradient-move 3s infinite;
  letter-spacing: 1px;
}

.dolce-altezza .btn-get-started:hover {
  transform: scale(1.05);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.dolce-altezza .info {
  border: 1px solid #BA975F;
  padding: 60px;
  margin: 20px auto;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
}

.dolce-altezza .info .row {
  display: flex;
  justify-content: center;
}

.dolce-altezza .info .col-xl-4 {
  padding: 0 15px;
  text-align: center;
}

/*--------------------------------------------------------------
# Contact CSS
--------------------------------------------------------------*/
.contact {
  padding-bottom: 100px;
}

.contact .contact_info {
  margin-top: 20px;
}

.contact .contact_info .title-altezza h2 {
  font-size: 22px;
}

.contact .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #BA975F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, #A16C1E, transparent 95%);
  color: #B7852C;
}

.contact .icon-box:hover i {
  background: #EFD5D0;
}

.contact_info {
  border: 1px solid #BA975F;
  padding: 30px;
  margin:0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Instagram CSS
--------------------------------------------------------------*/
.instagram {
  padding-top: 50px;
  padding-bottom: 0;
  margin-bottom: 0;
  background-color: #f9f9f9;
  text-align: center;
}

.instagram .item img {
  transition: all ease-in-out 0.4s;
}

.instagram .item:hover img {
  transform: scale(1.1);
}

.instagram-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.instagram-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.instagram-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.instagram-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .instagram-photos {
    grid-template-columns: 1fr;
  }
}

.instagram .btn-get-started {
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 20px;
  padding: 12px 40px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  background: linear-gradient(90deg, #EFD5D0, #d07777, #EFD5D0);
  background-size: 200% 200%;
  border-radius: 50px;
  border: 1px solid #BA975F;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: gradient-move 3s infinite;
  letter-spacing: 1px;
}

.instagram .btn-get-started:hover {
  transform: scale(1.05);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*--------------------------------------------------------------
# Story CSS
--------------------------------------------------------------*/
.story {
  background-color: #f9f9f9;
  padding-top: 100px;
  padding-bottom: 100px;
}

.story .row.content {
  margin-bottom: 40px;
  align-items: center;
}

.story .history-card {
  padding: 50px 40px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  min-height: 300px; /* Define uma altura mínima */
  border: 1px solid #f0d5cf;
  margin-bottom: 20px;
  margin-top: 20px;
  word-wrap: break-word; /* Garante que o texto não ultrapasse o limite do card */
  overflow: hidden; /* Impede que qualquer conteúdo extra saia do card */
  display: flex; /* Para alinhar os itens */
  flex-direction: column; /* Organiza os elementos verticalmente */
  justify-content: center; /* Centraliza o conteúdo verticalmente */
}

.story .history-card h2 {
  font-family: "Great Vibes", cursive;
  font-size: 38px;
}

.story .content h2 {
  margin-bottom: 20px;
  color: #c19d56;
}

.story .history-card p {
  font-family: Cormorant, serif;
  font-weight: 100;
}


.story .history-card .icon-box {
  text-align: center;
  margin-bottom: 20px;
}

.story .history-card .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #BA975F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, #A16C1E, transparent 95%);
  color: #B7852C;
}

.story .history-card .icon-box:hover i {
  background: #EFD5D0;
}

/* Responsividade */
@media (max-width: 768px) {
  .story .row.content {
    flex-direction: column;
  }
}


/*--------------------------------------------------------------
# Cards Altezza CSS
--------------------------------------------------------------*/
.cards-altezza {
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.cards-altezza .selo {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: auto;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 150px;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.cards-altezza .section-title {
  align-items: center;
  text-align: center;
}

.cards-altezza .section-title h2 {
  border: 1px solid #B7852C;
  background: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0;
  color: #B7852C;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.cards-altezza .section-title h3 {
  text-align: center;
}

@media (max-width: 768px) {
  .cards-altezza .col-6 {
    width: 90%;
  }
  .cards-altezza .card {
    margin: 20px 0;
  }
}

.cards-altezza .image-center {
  margin-top: 80px;
}

.cards-altezza .card-body {
  background-color: #fff;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ffffff, #EFD5D0);
  background-size: 580px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: gradient-move 3s infinite;
  padding-bottom: 40px;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cards-altezza .card {
  border-radius: 10px;
  overflow: hidden;
  max-width: 370px;
}

.cards-altezza .card-body img {
  border-radius: 10px;
}


@media (max-width: 576px) {

  .cards-altezza {
    padding-bottom: 40px;
  }
  .cards-altezza .card {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Cards Dolce CSS
--------------------------------------------------------------*/
.cards-dolce {
  margin-top: -180px;
  padding-bottom: 60px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .cards-dolce .col-6 {
    width: 90%;
  }
  .cards-dolce .card {
    margin: 20px 0;
  }
}

.cards-dolce .image-center {
  margin-top: 80px;
}

.cards-dolce .card-body {
  background-color: #fff;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ffffff, #EFD5D0);
  background-size: 580px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: gradient-move 3s infinite;
  padding-bottom: 40px;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cards-dolce .card {
  border-radius: 10px;
  overflow: hidden;
  max-width: 370px;
}

.cards-dolce .card-body img {
  border-radius: 10px;
}


@media (max-width: 576px) {

  .cards-dolce {
    padding-bottom: 40px;
  }
  .cards-dolce .card {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# About CSS
--------------------------------------------------------------*/
.about {
  background-color: #EFD5D0;
  padding-top: 100px;
  padding-bottom: 160px;
  margin-bottom: -190px;
  color: #000;
}

.about h3 {
  color: #000;
}

.about img {
  border-radius: 10px;
  width: 50%;
}

.about .breadcrumbs {
  background-position: bottom;
}

.about .title-altezza {
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .about {
    padding: 60px 20px;
  }
}

/*--------------------------------------------------------------
# Maps CSS
--------------------------------------------------------------*/
.maps {
  margin: 0;
  padding: 0;
}

.maps iframe {
  display: block;
  width: 100%;
  height: 300px;
}

/*--------------------------------------------------------------
# Infos CSS
--------------------------------------------------------------*/
.infos {
  padding-top: 100px;
  padding-bottom: 100px;
}

.infos .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #BA975F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, #A16C1E, transparent 95%);
  color: #B7852C;
}

.infos .icon-box:hover i {
  background: #EFD5D0;
}

.infos .infos_thumb img {
  width: 250px;
  border-radius: 8px;
  margin-top: 40px;
  border: 1px solid #BA975F;
  box-shadow: var(--bs-box-shadow) !important;
}

.infos .infos_thumb .img_2 {
  margin-top: 100px;
  margin-left: 20px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .infos .infos_thumb .img_2 {
    margin-left: -40px;
  }
}

.infos .infos_thumb {
  /* -webkit-justify-content: flex-end; */
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

.infos_info {
  border: 1px solid #BA975F;
  padding: 60px 40px;
  margin: 0;
  box-shadow: var(--bs-box-shadow) !important;
  background-color: #fff;
  border-radius: 8px;
}

@media (max-width: 576px) {
  .infos {
    padding-bottom: 0;
  }
  .infos_info {
    margin-top: 60px;
  }
  .infos .infos_thumb img {
    display: none;
  }
}

/*--------------------------------------------------------------
# Footer CSS
--------------------------------------------------------------*/
.footer {
  color: #444444;
  background-color: #EFD5D0;
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #444444, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, #444444, transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #A16C1E;
  border-color: #A16C1E;
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}
