body {
  margin: 0px;
  font-family: 'Montserrat', sans-serif;
}

:root {
  /* Brand Colors */
  --color-blue-ocean: #138ce5;
  --color-black-olive: #060806;
  --color-mustard-yellow: #eba330;
  --color-red-tomato: #710304;

  /* Neutrals */
  --color-white: #ffffff;
  --color-black: #111911;
}

::selection {
  background-color:var(--color-black-olive);
  color:var(--color-white);
}
/* ============================= */
/* CHROME, EDGE, SAFARI (WebKit) */
/* ============================= */

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /* fundo da barra */
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-black-olive); /* cor do scroll */
  border-radius: 20px;
  border: 6px solid #f0f0f0; /* espaço interno */
}

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

/* ============== */
/* FIREFOX        */
/* ============== */

* {
    scrollbar-color: #ffffff #000000;
}
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-blue-ocean);
  color: var(--color-white);
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(0) scale(1.05);
  background: #111;
}

/* Botão visível */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/*HEADER DIV TOP*/
header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.top-div-tbbb{
  position: relative;
  display: flex;
  color: #91908e;
  padding: 20px 200px;
  font-size: 14px;
  background: var(--color-black-olive);
  justify-content: space-between;
}
.top-div-tbbb-left span{
  color: var(--color-blue-ocean);
  font-weight: 800;
}

.top-div-tbbb::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #fefc05, #3af203, #3af203);
}
.top-btn-book i{
  background-color: var(--color-white);
  color: var(--color-blue-ocean);
  padding: 5px 7px ;
  border-radius: 50px;
  margin-right: 5px;
}
.top-btn-contact i{
  background-color: var(--color-white);
  color: var(--color-red-tomato);
  padding: 5px 7px ;
  border-radius: 50px;
  margin-right: 5px;
}
.top-btn-book{
  margin-right: 10px;

  padding: 0px; transition: 0.2s;
}

.top-btn-book,.top-btn-contact{
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  cursor: default !important;
  }
.top-btn-contact{

  padding: 0px; transition: 0.2s;
}
/* NAVBAR */
.nav-tbbb{
  box-shadow: 0px 0px 10px #000;
  background-color: #0d8df2; /* azul fiel da imagem */
  width: 100%;
}

.nav-container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo img{
  height: 50px;
}

/* MENU */
.nav-menu{
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a{
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active{
  opacity: 0.75;
}

/* RIGHT SIDE */
.nav-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d8df2;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s;
}

.nav-social:hover{
  background-color: #e6e6e6;
}
.nav-menu a.active{
  opacity: 0.8;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 4px;
}

/* BRAND TEXT */
.nav-brand{
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  margin-left: 10px;
  white-space: nowrap;
}
/* NAVBAR SCROLL */
.nav-tbbb{
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-tbbb.scrolled{
  background-color: #0874c7; /* azul mais escuro */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* MOBILE MENU BUTTON */
.nav-mobile-btn{
  display: none;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
}

/* OVERLAY */
.mobile-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 2000;
}

.mobile-menu-overlay.active{
  opacity: 1;
  pointer-events: auto;
}

/* MENU BOX */
.mobile-menu-box {
    background-color: #0d8df2;
    padding: 40px;
    border-radius: 12px;
    width: 70%;
    margin: 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* CLOSE */
.mobile-menu-close{
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* LINKS */
.mobile-menu{
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.mobile-menu li{
  margin: 18px 0;
}

.mobile-menu a{
  color: #fff;
  font-size: 16px;
  font-weight: 800; padding: 10px 12px; /* aumenta alvo */
  text-decoration: none;
  letter-spacing: 1px;
}.li-nav{
 
  margin: 10px;
}
.li-nav i{
  font-size: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
.li-btn a{
  font-weight: 100;
  background-color: var(--color-red-tomato);
  padding: 10px 20px;
}
.li-btn i{
  background-color: white;
  color: var(--color-red-tomato);
  padding: 5px 6px;
  border-radius: 50px;
}




/*HEADER FIM DIV TOP*/


/* FOOTER */
footer {
    list-style: none;
    margin: 0px;
    background-color: #eaf4fb;
}
footer ul {
    list-style: none;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}
footer .logo-footer {
  display: flex;
  padding: 5px;
  justify-content: center;
}

footer .logo-footer img {
  width: 500px;
  margin-bottom: 50px;
}

footer .blue-div-footer {
  position: relative;
  color: var(--color-white);
  background-image: url("../images/pizza-img\ \(1\).webp");
  background-size: cover;
  background-position: center;
 border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-attachment: fixed;
}

footer .blue-div-footer::before {
    content: "";
    position: absolute;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    inset: 0;
    background-color: #111911;
    z-index: 1;
}

footer .blue-div-links {
  position: relative;
  z-index: 2;
}


.black-div-footer {
    justify-content: space-between;
    color: var(--color-white);
    padding: 20px 300px;
}

.align-text{
    display: flex;
    gap: 50px; width: 100%;
    justify-content: center;
}
.socials-black-div-footer{
    align-content: center;
}
.blue-div-links-contact{
    width: 60%;
}
.blue-div-links-menu{
    width: 50%;
}
.blue-div-links-about {
  width: 100%;
}
.yellow-div-footer{
    width: 100%;
    align-content: center;
    text-align: center;
    
    background-color: var(--color-blue-ocean);
}
footer .align{
    display: flex;
    justify-content: center;
    gap: 600px;
    padding: 0px 250px;
}
.blue-div-links {
  display: flex;
  justify-content: center;
 padding: 20px 300px;

  gap: 50px;
}.blue-div-footer a{
   
  
}
.google-img img{
    width: 200px;
}
.blue-div-links i {
  background-color: var(--color-mustard-yellow);
  padding: 6px 10px;
  border-radius: 50%;
}
.blue-div-links-about a{
    color: var(--color-mustard-yellow);
    text-decoration: none;
    transition: 0.2s;
}
.blue-div-links-about a:hover{
  text-decoration: underline;
    transition: 0.2s;
}
.blue-div-links-menu a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.2s;
     margin-bottom: 5px; 
}
.blue-div-links-menu a:hover{
   color: var(--color-mustard-yellow);
   transition: 0.2s;
}
.socials-black-div-footer i{
    background-color: var(--color-blue-ocean);
  padding: 6px 8px;
  border-radius: 50%;
  margin-right: 5px;
}
.footer-menu a.active {
  font-weight: 800;
  text-decoration: underline;
}
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.blue-div-links-menu a.active {
 
  color: var(--color-mustard-yellow);

  font-weight: 800;
}
.black-div-footer a{
    color: var(--color-white);
    text-decoration: none;
    transition: 0.2s;
}
.black-div-footer a:hover{
    text-decoration: underline;
     transition: 0.2s;
}

.yellow-div-footer a{
    color: var(--color-black-olive);
    text-decoration: none;
    transition: 0.2s; font-weight: 900;
}
.yellow-div-footer a:hover{
  
     transition: 0.2s;
    color: var(--color-white);
}
.black-div-footer {
  background-color: var(--color-black-olive);
  display: flex;
}


/*FIM DO FOOTER*/


/*FORMULARIO DA BOTTOM*/
.form-bottom {
  background: #eaf4fb;
  padding: 80px 300px;
  display: flex;
  justify-content: center;
}

.form-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
 height: fit-content;
}
.form-bottom a{
  color: var(--color-blue-ocean);
}

.form-box {
  background: #ffffff;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative; align-items: start; /* <- isso faz o form ficar na altura do conteúdo */
}

.form-box::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #fefc05,
    #3af203,
    #3af203
  );
}

.form-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.form-box h2 span {
  color: #1e90ff;
}

.form-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-box .row:nth-child(2),
.form-box .row:nth-child(3),
.form-box .row:nth-child(4) {
  grid-template-columns: 1fr;
}
.form-box textarea {
  width: 95%;
  min-height: 100px;
     font-family: 'Montserrat', sans-serif;
  padding: 12px 14px;
  border: none;
  background: #f3f3f3;
  font-size: 14px;
  border-radius: 3px;
  resize: vertical;
}



.form-box input,
.form-box select {
  padding: 12px 14px;
border-top: none;
border-right: none;
border-left: none;
    border-bottom: 1px solid transparent;
  background: #f3f3f3;
   font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border-radius: 0px;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--color-blue-ocean);
  background: #ededed;

}


.form-box button {
  margin-top: 20px;
  width: 140px;
   font-family: 'Montserrat', sans-serif;
  padding: 12px;
  background: #1e90ff;
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.form-box button:hover {
  background: #1677d8;
}

.image-box {
  overflow: hidden;
}

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


/*FIM FORMULARIO DA BOTTOM*/

/* PIZZA CARDS */
.pizza-cards {
  padding: 60px 300px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

/* OVERLAY INICIAL */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* TÍTULO ANTES DO HOVER */
.card-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* CONTEÚDO DO HOVER */
.hover-content {
  position: absolute;
  inset: 0;
  background: #d9d9d9;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hover-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #555;
}

.hover-content p {
  font-size: 14px;

  color: #666;

}


.hover-content .btn {
  padding: 10px 22px;
  background: var(--color-blue-ocean);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;

}
.hover-content .btn:hover {
  background: #1677d8;
  transition: background 0.3s;
}
/* HOVER */
.card:hover .overlay {
  opacity: 0;
}

.card:hover .card-title {
  opacity: 0;
}

.card:hover .hover-content {
  opacity: 1;
}

.busicon img {
  width: 100px;
  transition: transform 0.4s ease;
}

.card:hover .busicon img {
  transform: rotate(-8deg) scale(1.1);
}

/* HOVER (DESKTOP) + ACTIVE (MOBILE) */
.card:hover .overlay,
.card.active .overlay {
  opacity: 0;
}

.card:hover .card-title,
.card.active .card-title {
  opacity: 0;
}

.card:hover .hover-content,
.card.active .hover-content {
  opacity: 1;
}

.card:hover .busicon img,
.card.active .busicon img {
  transform: rotate(-8deg) scale(1.1);
}


/*/ FIM PIZZA CARDS */


/*SOCIAL SECTION*/
/*SOCIAL SECTION*/
.social-hero {
  position: relative;
  min-height: 420px;
  background: url("../images/social-img.webp") center / cover no-repeat;
  padding: 20px 300px;
  overflow: hidden;

  /* PARALLAX */
  background-attachment: fixed;
}


/* overlay escuro */
.social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* conteúdo */
.social-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

.social-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* ícones sociais */
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.social-icons a {
  color: var(--color-white);
  text-decoration: none;
}

.social-icons i {
  background-color: var(--color-blue-ocean);
  padding: 6px 8px;
  border-radius: 50%;
  margin-right: 5px;
  transition: background-color 0.3s;
}
.social-icons a:hover i {
  background-color: var(--color-mustard-yellow);
  transition: background-color 0.3s;
}

.social-handle {
  color: #fff;
  font-size: 16px;
  margin-left: 10px;
}

/* galeria de pizzas */
.pizza-gallery {
  display: flex;
  gap: 16px;
}

.pizza-card {
  width: 300px;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
}

.pizza-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transition: transform 0.4s ease;
}

/* hover scale */
.pizza-card:hover img {
  transform: scale(1.1);
}



/*FIM SOCIAL SECTION*/


/*about section*/
.about-slider {
  background: #eef6fb;
  padding: 80px 300px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* SLIDER */
.slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-icon img{
  width: 100px;
}
.slides {
  position: relative;
  height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.dot.active {
  background: #1e88e5;
  opacity: 1;
}

/* TEXTO */
.about-text {
  position: relative;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.text-box {
  position: absolute;
  z-index: 10 !important;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.text-box.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.text-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}
.btn-div-about{
  position: relative;
  z-index: 999 !important;
}
.about-slider .btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 26px;
  background: #1e88e5;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  z-index: 999 !important;
  border-radius: 4px;
    transition: background 0.3s;
}
.about-slider .btn:hover {
  background: #1677d8;
  transition: background 0.3s;
}
.line{
  border-left: 2px solid var(--color-blue-ocean);
  padding-left: 10px;
}
/*fim about section*/


/*HERO DIV*/

.hero {
    position: relative;
  display: flex;
    overflow: hidden;
    color: #fff;
    background-color: #eaf4fb;
    padding: 0px 300px 100px 300px;
}
/* Content */
.hero-content {
    position: relative;
    z-index: 2;
 width: 900px;
    
}
.hero-content h1 {
  font-size: 62px;
  color: var(--color-black);
  font-weight: bold;
}

.hero-content h1 span {
  color: var(--color-blue-ocean);
}

.hero-content h2 {
  font-size: 36px;
   color: var(--color-black);
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
   color: #555;
  margin-bottom: 16px;

}

/*HERO CONTENT - SVG THE LITTLE TBBB*/
.hero-content-little-big-blue-bus{

  display: flex;
  justify-content: center;
 

  align-items: center;}
.hero-content-little-big-blue-bus img{
  width: 900px;
}
/* Buttons */
.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
 
}
.hero-buttons i{

 border-radius: 50px;
  font-size: 0px;  transition: 0.2s;
}
.btn-blue:hover i{   padding: 6px 8px;
  color: var(--color-blue-ocean);
  background-color: var(--color-white);
  font-size: 14px;
  transition: 0.2s;
}
.btn-red:hover i{   padding: 6px 8px;
  color: var(--color-white);

  font-size: 14px;
  transition: 0.2s;
}

.btn {
    padding: 14px 16px;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 0.5px;
    justify-content: center;
    text-align: center;
}
* 

.btn-blue {
  background: var(--color-blue-ocean);
  transition: background 0.3s;
}
.btn-blue:hover {
  background: #1677d8;
  transition: background 0.3s;
}

.btn-red {
  background: var(--color-red-tomato);
  transition: background 0.3s;
}
.btn-red:hover {
  background: #590303;
  transition: background 0.3s;
}

.quote-box {
    position: absolute;
    bottom: 140px;
    right: 0;
    background: #fff;
    box-shadow: 0px 5px 10px #939aa040;
    color: var(--color-black-olive);
    width: 260px;
    padding: 0px 0px 20px 0px;
    border-radius: 16px 0 0 16px;
    z-index: 3;
    transform: translateX(100%);
    animation: slideIn 1s ease-out forwards;
}
@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}
.quote-logo {
    font-size: 14px;
    padding: 0px 20px 0px 20px;
    font-weight: bold;
    background-color: var(--color-black-olive);
    border-top-left-radius: 10px;
    margin-bottom: 10px;
}
.quote-logo img{
  width: 100%;
}
.quote-logo span {
  color: #1e90ff;
}

.quote-box h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.quote-box p {
  font-size: 15px;
  color: #555;
}

.quote-arrow {
  position: relative;
 
 
  background: #1e90ff;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
    margin-left: -30px;
    transition: 0.2s;
}
.quote-box:hover .quote-arrow{
  margin-left: -20px;
      transition: 0.2s;
      font-size: 22px;
      background: var(--color-red-tomato);
}.quote-box span{
  transition: 0.2s;
 
}
.quote-box:hover span{
  transition: 0.2s;
  color: var(--color-blue-ocean);
}
.line-box {
    border-left: 2px solid var(--color-blue-ocean);
    padding-left: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}
/*HERO DIV*/

/*PHOTO GALLERY*/
.gallery-section{

  margin: 40px auto;
  padding: 20px 200px;

}

.gallery-grid{
  display: grid;
  padding-top: 5px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo{
  width: 100%;
  height: fit-content;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
  position: relative;
}

.photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-mosaic {
    width: 100%;
    height: fit-content;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #eee;
   margin-top: 0px;
    position: relative;
}

.photo-mosaic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.div-title-gallery {
 width: 100%;
  margin: 30px auto;

}

.title-gallery {
  font-size: 50px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.title-gallery span {
  color: #1e90ff;
}

/* Linha degradê (verde → transparente) */
.line-gradient {
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, #a6ff00, rgba(166, 255, 0, 0));
  margin-bottom: 10px;
  border-radius: 2px;
}

.subtitle-gallery {
  font-size: 15px;
  color: #444;
 
  line-height: 1.3;
}
.subtitle-gallery a{
  color: var(--color-mustard-yellow);
}
/* ZOOM interno ao passar o mouse */
.photo img,
.photo-mosaic img{
  transition: transform 0.5s ease;
}

.photo:hover img,
.photo-mosaic:hover img{
  transform: scale(1.12);
}

/*PHOTO GALEERY*/


/*CONTACT HEADER*/
/* ====== CONTACT CTA (parallax) ====== */
.cta-parallax {

  background-size: cover;
  background-position: center;
  background-repeat: round;

  /* Efeito parallax (desktop) */
  background-attachment: fixed;
margin-top: 150px;
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Camada escura por cima da foto */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.671);
  z-index: 1;
}

/* Conteúdo central */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 40px 20px;
  color: #fff;
}
.cta-content img{
  margin-bottom: 30px;
  width: 300px;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
}
.cta-content span{
  color: var(--color-blue-ocean);
}

/* Linha azul abaixo do título */
.cta-underline {
  display: block;
  width: 110px;
  height: 3px;
  margin: 14px auto 22px;
  background: #1e88e5; /* azul parecido com a imagem */
  border-radius: 99px;
  opacity: 0.95;
}

.cta-content p {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.cta-strong {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-strong strong {
  font-weight: 800;
}

/* Botão */
.cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 26px;
  background: #1e88e5;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px; /* bem “retinho” como na imagem */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
  background: #1677d8;
  transform: translateY(-1px);
}



/*CONTACT HEADER*/


/*GOOGLE SECTION*/
/* =============== GOOGLE SECTION =============== */
.google-section {
  width: 100%;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* TOP BAR */
.google-section__top {
  background: #0f8fe6;
  color: #fff;
}

.google-section__top-inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 26px 300px;
    align-items: center;
    gap: 20px;
}
.top-left p {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.15;
  font-size: 18px;
}

.top-mid {
  display: grid;
  gap: 12px;
  justify-content: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 14px;
}

.dot {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 999px;
  display: inline-block;
}

.top-right {
  display: grid;
  justify-content: end;
  justify-items: end;
  gap: 10px;
}

.social-title {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

.social-dots {
  display: flex;
  gap: 10px;
}
.google-section i{
  background-color: var(--color-white);
  color: #0874c7;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
.google-section a:hover i{
  background-color: #0874c7;
  color: var(--color-white);
  transition: background-color 0.3s, color 0.3s;
}

/* MAIN */
.google-section__main {
  background: #fff;
}

.google-section__grid {
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 520px;
}
/* LEFT IMAGE */
.google-section__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.google-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CARD */
.google-section__card {
  background: #fff;
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* IMAGEM GOOGLE + STARS */
.google-badge img {
  width: 220px; /* ajuste se precisar */
  height: auto;
  display: block;
}

/* TITULO */
.google-section__card h3 {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #111;
}

/* TEXTO */
.google-section__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.rating-link {
  color: #1e88e5;
  text-decoration: none;
  font-weight: 800;
}

.rating-link:hover {
  text-decoration: underline;
}

/* BOTAO */
.google-btn {
  margin-top: 10px;
  align-self: flex-start;
  background: #1e88e5;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.google-btn:hover {
  background: #1677d8;
  transform: translateY(-1px);
}


/*FIM GOOGLE SECTION*/


/*MENU CARDS*/
 /* LINK ÚNICO */
    .menu-link{
      display:block;
      text-decoration:none;
      color:inherit;
      cursor: default;
      background-color: var(--color-black);
      padding:50px 0;
    }

    .container{
    padding: 30px 300px;
      margin:0 auto;
    }

    .title{
      font-size:26px;
      font-weight:800;
      margin-bottom:20px;
      color:#fff;
    }

    .title span{
      color:#1a73ff;
    }

    .cards{
      display:flex;
      gap:18px;
      width: 100%;
      justify-content:center;
      align-items:stretch;
      margin-bottom:25px;
      flex-wrap:wrap;
    }

    .cards .card{
      width:240px;
      border-radius:14px;
      cursor: pointer;
      overflow:hidden;
      height: 250px;
      background:#fff;
      box-shadow: 0px 10px 25px rgba(0,0,0,0.5);
        transition:0.2s;
    }

    .cards .card img{
      width:100%;
      height:125px;
      object-fit:cover;
      display:block;
    }

    .card-content{
      padding:12px 14px;
      position:relative;
    }

    .card-content h3{
      font-size:12px;
      font-weight:900;
      letter-spacing:0.6px;
      margin-bottom:4px;
      color:#111;
    }

    .card-content p{
      font-size:11px;
      color:#777;
      line-height:1.3;
      max-width:170px;
    }

    .arrow{
      position:absolute;
      right:12px;
      top:50%;
      transform:translateY(-50%);
      width:28px;
      height:28px;
      color: var(--color-white);
      border-radius:50%;
      background:#1a73ff;
      display:flex;
      justify-content:center;
      align-items:center;
    }

 

    .btn-area{
      display:flex;
      justify-content:center;
    }

    .menu-link .btn{
      background:#1a73ff;
      color:#fff;
      cursor: pointer;
      padding:12px 20px;
      font-size:11px;
      font-weight:800;
      text-transform:uppercase;
      border-radius:2px;
      letter-spacing:0.6px;
         transition: 0.2s;
    }

    /* hover no bloco inteiro */
    .menu-link .btn:hover{
      background:#0f5fe0;
      transition: 0.2s;
    }

     .card:hover{
      transform:translateY(-2px);
      transition:0.2s;
    }
/*FIM MENU CARDS*/

/*ABOUT*/
/* Obrigatório: todas as sections com width 100% e padding 40px 300px */

/* =========================
   SECTION 1 (texto + grid imagens)
========================= */
.about-div-section-1 {
  background: #fff; 

}
.about-div-section-1-grid {
    display: block;
 
    gap: 40px;
    justify-content: space-between;
    align-items: start;
    padding: 30px 300px;
}

.about-div-section-1-text h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.about-div-title-muted {
  color: #111;
}

.about-div-title-highlight {
  color: #1e73ff;
}

.about-div-section-1-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 380px;
  margin-bottom: 14px;
}

.about-div-section-1-images img {
 
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
#pizza-names{
  display: flex;
  justify-content: center;
  align-items: center !important;
  align-content: center;
  padding: 30px 200px;
}

.about-div-section-1-top-row {
  display: flex;

  gap: 12px;
  margin-bottom: 12px;
}

.about-div-section-1-top-row img {
  height: 260px;
}
.about-div-section-1-text b{
  color: var(--color-blue-ocean);
}
.about-div-section-4-top-row img {
  height: 280px;
  width: 220px;
}
.about-div-section-1-bottom-row img {
  height: 220px;
}

/* =========================
   SECTION 2 (fundo escuro com imagem e texto)
========================= */
.about-div-section-2 {
  position: relative;

  background-image: url("../images/gallery-images/gallery-images (2).webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* PARALLAX */
  background-attachment: fixed;
}


.about-div-section-2-overlay {

  height: 100%;
    display: FLEX;
 
    gap: 40px;
    justify-content: space-between;
    align-items: start;
    padding: 100px 300px;

  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
}

.about-div-section-2-content {
  max-width: 520px;
}

.about-div-section-2-content h2 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about-div-section-2-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #f1f1f1;
  margin-bottom: 12px;
}

/* =========================
   SECTION 3 (fundo azul + texto + imagem)
========================= */
.about-div-section-3 {
  background: var(--color-blue-ocean);
  color: #fff;
    display: FLEX;

    gap: 40px;
    justify-content: space-between;
    align-items: start;
    padding: 100px 300px;
}
.about-div-section-3 .line{
  border-left: 2px solid #fff;
  padding-left: 10px;
}

.about-div-section-3-grid {
  display: flex;

  gap: 40px;
  align-items: center;
}

.about-div-section-3-text h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about-div-section-3-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #eaf2ff;
  margin-bottom: 12px;
  max-width: 520px;
}

.about-div-section-3-image img {
    height: 360px;
    object-fit: cover;
    border-radius: 2px;
    width: 100%;
}

/*FIM ABOUT*/


/*TITLE SERVICES*/

.services-title-section {
  width: 100%;
  height: 100vh;
  font-size: 0; /* remove espaçamento inline-block */
}

/* COLUNA ESQUERDA */
.services-title-left {
  width: 50%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}

.services-title-text-wrap {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* TÍTULOS E TEXTO */
.services-title-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}
.services-title-text-wrap img{
  width: 200px;
  margin-top: 100px;
}

.services-title-highlight {
  color: #1e90ff;
}

.services-title-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.services-title-subtitle {
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000;
}

/* LISTA */
.services-title-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.services-title-list li {
  color: #1e90ff;
  font-weight: 600;
  margin-bottom: 6px; 
   transition: 0.2s;
}
.services-title-list a{
  text-decoration: none;

}
.services-title-list a:hover li{

  transition: 0.2s;
  color: var(--color-mustard-yellow);
}
/* BOTÕES */
.services-title-buttons a {
  display: inline-block;
  padding: 14px 28px;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 700;  
  color: #fff;
  text-decoration: none;
}



/* COLUNA DIREITA */
.services-title-right {
  width: 50%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}

/* IMAGEM SEM MARGEM / PADDING */
.services-title-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

/*FIM TITTLE SERVICES*/

/*SECTION 1 SERVICES*/
.section-wedding {
  width: 100%;
 display: flex;
 justify-content: center;
  background-color: #eaf2ff;
}

.section-wedding-wrapper {
 width: 100%; padding: 100px 200px;
  margin: 0 auto;
 display: flex;
 height: 600px;
}

/* ÁREA DA IMAGEM */
.section-wedding-image-area {
  width: 65%;
  display: inline-block;
  vertical-align: middle;
}
.section-wedding .btn{
  text-transform: uppercase;
}
.section-wedding-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px;
}

/* CONTEÚDO */
.section-wedding-content {
  width: 55%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 80px;
  font-size: 16px;
}

.section-wedding-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

.section-wedding-highlight {
  color: #008cff;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-wedding-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 520px;
}



/*FIM SECTION 1 SERVICES*/

/*SECTION 2*/
/* SECTION 2 SERVICES */
.section2 {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--color-blue-ocean); /* fundo azul */
}

.section2-wrapper {
  width: 100%;
  padding: 100px 200px;
  margin: 0 auto;
  display: flex;
  height: 600px;
}

/* ÁREA DA IMAGEM */
.section2-image-area {
  width: 65%;
  display: inline-block;
  vertical-align: middle;
}

.section2-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px;
}

.section2 .btn {
  text-transform: uppercase;
}

/* CONTEÚDO */
.section2-content {
  width: 55%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 80px;
  font-size: 16px;
}

.section2-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.section2-highlight {
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 20px;
}

.section2-text {
  color: #f1f1f1;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 520px;
}

.section2-line {
  border-left: 2px solid var(--color-white);
  padding-left: 20px;
}

/* FIM SECTION 2 SERVICES */

/*FIM SECTION 2*/
.privacy{

 margin-top: 100px;
  padding: 100px 300px;
}

/* GALLERY FULLSCREEN */

/* Overlay */
.gallery-fullscreen-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* Overlay ativo */
.gallery-fullscreen-overlay.gallery-fullscreen-active {
  opacity: 1;
  visibility: visible;
}

.gallery-fullscreen-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80vw;
  max-height: 80vh;
}

/* Imagem */
.gallery-fullscreen-image {
  max-width: 60%;
  max-height: 60%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: zoom-out; /* dica visual de que fecha */
}

/* Cursor de zoom nas imagens da galeria */
.gallery-section img {
  cursor: zoom-in;
}

/* FIM GALLERY FULLSCREEN */
/* RESPONSIVE */
@media (max-width: 1400px){
 
  .nav-menu,
  .nav-right{
    display: none;
  }

  .nav-mobile-btn{
    display: block;
  }


}
@media (max-width: 1700px) {
  .about-div-section-1-grid {
    display: block;
    padding: 30px 40px;
}}
/* RESPONSIVO */
@media (max-width: 1400px) {
  .section-wedding-wrapper {
  
    padding: 30px 40px;
display: grid;
    height: fit-content;
}
.section-wedding-content {
    width: 100%;
    display: grid;
    vertical-align: middle;
    padding-left: 0px;
    font-size: 16px;
}.section-wedding-title {
    font-size: 22px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0px;
    color: #000;
}.section-wedding-image-area {
    width: 100%;
    display: flex;
    vertical-align: middle;
}


 .section2-wrapper {
  
    padding: 30px 40px;
display: grid;
    height: fit-content;
}
.section2-content {
    width: 100%;
    display: grid;
    vertical-align: middle;
    padding-left: 0px;
    font-size: 16px;
}.section2-title {
    font-size: 22px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 0px;
  
}.section2-image-area {
    width: 100%;
    display: flex;
    vertical-align: middle;
}
  .services-title-section {
    width: 80%;
    height: fit-content;
    font-size: 0;
    padding: 200px 30px 30px;
    display: grid;
}.btn {
   
    font-size:10px;
 
}.btn-red:hover i {
    padding: 6px 8px;
    color: var(--color-white);
    font-size: 14px;
    transition: 0.2s;
    display: none;
}
.btn-blue:hover i {
    padding: 6px 8px;
    color: var(--color-white);
    font-size: 14px;
    transition: 0.2s;
    display: none;
}
.services-title-right{
  display: none;
}.services-title-text-wrap {
    max-width: none;
    margin: 0 auto;
    width: 100%;
    position: relative;
    top: 0%;
    transform: none;
}
.services-title-left {
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
}
  .privacy {
    margin-top: 100px;
    padding: 100px 30px;
}
.social-handle{
  display: none;
}
  .about-div-section-1-grid {
    display: inline;
    gap: 40px;
    justify-content: space-between;
    align-items: start;
    padding: 30px 30px;
}.about-div-section-1-top-row {
   
    display: none;

}.about-div-section-2{
  padding: 0px !important;
}
.about-div-section-2-overlay {
 
    padding: 100px 30px;
  
}    .about-div-section-3-grid {
        display: flow !important;
    }.about-div-section-3 {
    background: var(--color-blue-ocean);
    color: #fff;
    display: flow;
    gap: 40px;
    justify-content: space-between;
    align-items: start;
    padding: 100px 300px;
}.about-div-section-3-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}

  .about-div-section {
    padding: 30px 24px;
  }

  .about-div-section-1-grid,
  .about-div-section-3-grid {
    grid-template-columns: 1fr;
  }

  .about-div-section-1-text p,
  .about-div-section-3-text p {
    max-width: 100%;
  }
  .container {
    padding: 30px 30px;
    margin: 0 auto;
}
.card{
  width: 100%;
}
.contact-item{
  text-align: left;
  font-size: 10px;
}
  .google-section__top-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 40px;
        display: grid;
    }

  .top-right {
    justify-content: center;
    justify-items: center;
  }

    .google-section__grid {
        height: fit-content;
        grid-template-columns: 1fr;
    }
  .google-section__image {
    min-height: 260px;
  }

  .google-section__card {
    padding: 34px 22px;
    align-items: center;
    text-align: center;
  }

  .google-btn {
    align-self: center;
  }

  .google-badge img {
    width: 200px;
  }
  .form-container {
    grid-template-columns: 1fr;
  }
  .services-title-text-wrap img {
    width: 200px;
    margin-top: 10px;
}

 .cta-parallax {
    background-attachment: scroll;
    min-height: 300px;
  }
  .image-box {
    height: 300px;
  }

.form-box {
        padding: 40px 20px;
    }
  .form-box::after {
    display: none;
  }
  
  .social-content {
    padding: 30px;
    max-width: 100%;
  }

  .social-content h2 {
    font-size: 28px;
  }

  .pizza-gallery {
    flex-direction: column;
  }

  .pizza-card {
    width: 100%;
    height: 160px;
  } 
  .cards-grid {
    grid-template-columns: 1fr;
  } .form-box input, .form-box select {
    padding: 12px 14px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid transparent;
    background: #f3f3f3;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    border-radius: 0px;
}footer {
    font-size: 13px;
    list-style: none;
    margin: 0px;
    background-color: #eaf4fb;
}
  .pizza-cards {
    padding: 60px 40px;
  }

    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }.social-icons {
    display: inline;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}
.form-box .row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
  .form-bottom {
    background: #eaf4fb;
    padding: 80px 30px;
    display: flex;
    justify-content: center;
}.social-hero {
    position: relative;
    min-height: 220px;
    background: url(../images/social-img.webp) center / cover no-repeat;
    padding: 20px 30px;
    overflow: hidden;
}.blue-div-links {
    display: grid;
    justify-content: center;
    padding: 20px 30px;
    gap: 0px;
}
#pizza-names {
    display: inline;
    justify-content: center;
    align-items: center !important;
    align-content: center;
    padding: 30px 20px;
}
.black-div-footer {
    justify-content: space-between;
    color: var(--color-white);
    padding: 20px 30px;
    display: grid;
}.blue-div-links-contact {
    width: 100%;
}
.blue-div-links-contact p{
  padding-top: 10px;
}.align-text p{
  padding-top: 10px;
}.form-box textarea {
    width: 90%;
    min-height: 100px;
    font-family: 'Montserrat', sans-serif;
    padding: 12px 14px;
    border: none;
    background: #f3f3f3;
    font-size: 10px;
    border-radius: 3px;
    resize: vertical;
}
.blue-div-links i {
    background-color: var(--color-mustard-yellow);
    padding: 6px 8px;
    border-radius: 50%;
    margin-right: 10px;
}
.align-text {
    display: inline;
    gap: 50px;
    font-size: 10px;
    width: 100%;
    justify-content: center;
}footer .align {
    display: inline;
    justify-content: center;
    gap: 60px;
    padding: 0px 2px;
}footer .logo-footer img {
    width: 300px;
    margin-bottom: 50px;
}    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

      .gallery-section {
        margin: 100px auto;
        padding: 20px 20px;
    }
    .about-div-section-4-top-row img {
    height: 100%;
    width: 100%;
}
.top-div-tbbb {
    position: relative;
    display: grid;
    color: #91908e;
    padding: 20px 30px;
    font-size: 10px;
    gap: 0px;
    background: var(--color-black-olive);
    justify-content: space-between;
}.top-btn-book,.top-btn-contact{
    font-size: 10px;
    padding-bottom: 0px;
    padding-top: 15px;
    padding-left: 0px;
    padding-right: 0px;
   
    width: 100%;
    background-color: transparent;
}
.top-div-tbbb-right{
  display: grid;
}
    .form-box h2 span {
        font-size: 28px;
        color: #1e90ff;
    }
.title-gallery {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}.gallery-grid {
    display: grid;
    padding-top: 5px;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}.photo-mosaic {
  
    margin-top: 0px;
  height: 100%;
}
.hero {
   
    padding: 20px;
}

.bus-align{
  display: none;
}.hero-content h1 {
    font-size: 32px;
    color: var(--color-black);
    font-weight: bold;
}
.hero-content h2 {
    font-size: 26px;
    color: var(--color-black);
    margin-bottom: 24px;
}.hero-content p {
    font-size: 11px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}
.quote-box{
  display: none;
}
.about-slider {
    background: #eef6fb;
    padding: 80px 30px;
}.about-wrapper {
    display: inline;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}.slides {
    position: relative;
    height: 220px;
}.text-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 14px;
}
.about-icon{
  display: none;
}
    .nav-container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 10px 30px;
        display: flex;
        align-items: inherit;
        justify-content: end;
    }
.nav-logo{
  display: none;
}
}


/*fim responsivo*/