/**
* Template Name: Multi
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "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";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0b2341;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ed502e;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ed502e;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ed502e;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f9fd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  height: 100%;
  /* Altura igual a 100% da altura da tela (full screen) */
  background-image: url('../img/bg.jpg');
  /* Imagem de fundo */
  background-size: cover;
  /* A imagem cobre completamente o container, mantendo a proporção */
  background-position: center;
  /* A imagem fica centralizada */
  background-repeat: no-repeat;
  /* Garante que a imagem não se repita */
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

p {
  line-height: 1.8;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background: #ffffff;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 5px solid #FE6603;
}


.header .logo img {
  max-width: 250px;
  max-height: 70px;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: linear-gradient(45deg, #FE6603, #C75002);
  color: white;
  font-weight: bold;
  padding: 8px 25px;
  font-size: 17px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: solid 1px #FE6603;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  margin-left: 60px;
  margin-top: 5px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  border: solid 1px transparent;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: white;
  color: #FE6603;
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}



@media (max-width: 1330px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    display: inline-block;
    margin-left: 5px;
  }
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 25px 10px 15px 10px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    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: var(--nav-dropdown-color);
  }

  .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: var(--nav-dropdown-hover-color);
  }

  .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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    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: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .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, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  max-width: 100%;
  /* Largura total da tela */
  height: 100vh;
  /* Altura igual a 100% da altura da tela (full screen) */
  background-image: url('../img/hero.jpg');
  /* Imagem de fundo */
  background-size: cover;
  /* A imagem cobre completamente o container, mantendo a proporção */
  background-position: center;
  /* A imagem fica centralizada */
  background-repeat: no-repeat;
  /* Garante que a imagem não se repita */
  zoom: 1.1;
}

/* Media Query para telas muito grandes (ex: desktops widescreen) */
@media (min-width: 1200px) {
  .hero {
    height: 100vh;
    /* Altura fixa para telas grandes */
  }
}

/* Media Query para telas grandes, como desktops (ex: 1024px e acima) */
@media (max-width: 1200px) {
  .hero {
    height: 60vh;
    /* A altura do banner pode ser ajustada para 80% da altura da tela */
  }
}

/* Media Query para tablets (ex: 768px até 1024px) */
@media (max-width: 1024px) {
  .hero {
    height: 60vh;
    /* A altura do banner diminui em telas de tablets */
  }
}

/* Media Query para celulares grandes (ex: 576px até 768px) */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    /* A altura do banner diminui em dispositivos menores */
  }
}

/* Media Query para celulares pequenos (ex: até 576px) */
@media (max-width: 576px) {
  .hero {
    height: 40vh;
    /* A altura do banner diminui ainda mais em celulares pequenos */
  }
}

/* Media Query para telas extremamente pequenas ou dispositivos com orientação retrato */
@media (max-width: 375px) {
  .hero {
    height: 35vh;
    /* A altura pode ser ainda menor */
  }
}


/*--------------------------------------------------------------
# Plans Section
--------------------------------------------------------------*/

.plans {
  padding: 40px 0px 0px 0px;
}

.plans h2 {
  color: white;
  font-size: 44px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.738);
  /* Efeito de 'lift' */

}

.plans .col-lg-3 {
  margin-bottom: 40px;

}

.plans .col-md-6 {
  margin-bottom: 40px;
}

.plan-card {
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.71);
  /* Sombra para efeito de flutuação */
  transition: all 0.3s ease;
  /* Adiciona uma animação suave */
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  /* Coloca os elementos em coluna */
  justify-content: space-between;
  /* Distribui o espaço igualmente */
  height: 100%;
  /* Garante altura uniforme */
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: white;
  transition: all 0.3s ease;
  /* Adiciona uma animação suave */
}

.plan-header {
  font-size: 54px;
  font-weight: bold;
  color: white;
  background: radial-gradient(circle at top left, #ff9900, #ff6600, #cc3300, #ff6600, #ff9900);
  padding: 15px 0;
  margin: -20px -20px 15px -20px;
  border-radius: 20px 20px 0 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */
}

.plan-price {
  font-size: 1.5rem;
  color: #007bff;
  font-weight: bold;
  background-color: #f8f9fa;
  /* Fundo leve */
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  /* Garante espaçamento apenas ao redor do texto */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Efeito lifted */
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-price:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  /* Mais destacado ao passar o mouse */
}

.plan-description {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  text-align: left;
  /* Alinha o texto */
  padding: 10px;
  position: relative;
  /* Para o ícone */
  min-height: 300px;
  margin-bottom: 10px;
}

.plan-description:before {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 18px;
}


.btn-plan {
  background: linear-gradient(45deg, #007bff, #0056b3);
  /* Gradiente chamativo */
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Efeito lifted */
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

.btn-plan:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: white;
  color: #007bff;
  border-color: #007bff;
}



@media (max-width: 1119px) {
  .plan-description {
    min-height: auto;
  }

}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  padding: 20px 0px 20px 0px;
}

.about h2 {
  color: white;
  font-size: 44px;
  margin-bottom: 40px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */
  text-align: left;

}

.about-container {
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.71);
  /* Sombra para efeito de flutuação */
  transition: all 0.3s ease;
  /* Adiciona uma animação suave */
  overflow: hidden;
  /* Garante que a imagem não saia do container */
  width: 100%;
  height: auto;
  background-color: white;
}

.about img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  /* A imagem preenche completamen te o container, distorcendo-a se necessário */
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;

}

.about .content {
  padding: 0;
}


.about .carousel-item {
  transition: transform 0.8s ease-in-out;
  /* Transição suave */
}


.about-text {
  padding: 40px 10px;
}

.about p {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  text-align: left;
  padding: 20px 0px;
  margin: 0;

}


.about-btn {
  background: linear-gradient(45deg, #FE6603, #C75002);
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: solid 1px #FE6603;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  margin-top: 40px;
}

.about-btn:hover {
  transform: scale(1.1);
  border: solid 1px transparent;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: white;
  color: #FE6603;
}

/* Responsividade */
@media (max-width: 1200px) {

  .about img {
    /* A imagem preenche completamente o container, distorcendo-a se necessário */
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

  }
}




/*--------------------------------------------------------------
# Vantagens Section
--------------------------------------------------------------*/

.vantagens {
  padding: 0px 0px 20px 0px;
}

.vantagens h2 {
  color: white;
  padding: 40px 0;
  font-size: 44px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */

}

.vantagens-lista {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.vantagem {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.71);
  /* Sombra para efeito de flutuação */
  transition: all 0.3s ease;
  /* Adiciona uma animação suave */
}

.vantagem i {
  font-size: 3rem;
  color: #FE6603;
  margin-bottom: 1rem;
}


.vantagem h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.vantagem p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  text-align: left;
  position: relative;
  /* Para o ícone */
}


/* Responsividade */
@media (max-width: 768px) {
  .vantagens-lista {
    grid-template-columns: 1fr;
  }

}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq {
  padding: 20px 0px;
}


.faq h2 {
  color: white;
  padding: 40px 0;
  font-size: 44px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */

}


/* Estilo das perguntas */
.faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 20px;

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.71);
  /* Sombra para efeito de flutuação */
  transition: all 0.3s ease;
  /* Adiciona uma animação suave */
}


.faq-question {
  padding: 1.5rem;
  font-size: 20px;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 20px;

}


.faq-question i {
  font-size: 20px;
  margin-right: 10px;
  color: #FE6603;
}

.faq-answer {
  display: none;
  padding: 1rem;
  font-size: 20px;
  color: #555;
  border-radius: 20px;
}

.faq-answer.visible {
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  padding: 60px 0px;

}


.cta-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: white;
  color: white;
  border-radius: 10px;
  overflow: hidden;
  /* Garante que bordas arredondadas sejam aplicadas corretamente */
  height: 450px;
  /* Ajuste de altura fixa */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.71);
  /* Sombra para efeito de flutuação */
  transition: all 0.3s ease;
  /* Adiciona uma animação suave */
}

.cta-image {
  flex: 0 0 40%;
  /* Imagem ocupa 40% da largura */
  max-width: 40%;
  height: 100%;
  /* Garante que ocupe toda a altura do container */
  background-image: url('../img/cta.jpg');
  background-size: cover;
  /* Faz a imagem preencher o espaço sem distorcer */
  background-position: center;
  /* Centraliza a imagem */
}

.cta-text {
  padding: 20px 20px;
}

.cta-text h2 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #555;
}

.cta-text p {
  font-size: 20px;
  color: #555;
}

.btn-support {
  background: linear-gradient(45deg, #FE6603, #C75002);
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: solid 1px #FE6603;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

.btn-support:hover {

  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: white;
  color: #FE6603;
  border: transparent;
}

.cta i {
  font-size: 25px;
  margin-right: 10px;
}

.btn-support b {
  font-size: 20px;
}

@media (min-width: 1068px) {
  .cta-section {
    height: 400px;
  }

}


@media (max-width: 997px) {
  .cta-section {
    flex-direction: column;
    /* Empilha imagem e texto */
    height: auto;
    /* Permite altura dinâmica em telas pequenas */
  }

  .cta-image {
    flex: 0 0 auto;
    max-width: 100%;
    height: 400px;
    /* Ajusta a altura da imagem para dispositivos menores */
  }

  .cta-text {
    padding: 20px;
    text-align: left;
    /* Centraliza texto e botão */
  }

  .cta-text .btn-support {
    align-self: left;
    /* Botão centralizado em telas menores */
  }
}


@media (max-width: 576px) {
  .cta-image {
    height: 250px;
    /* Ajusta a altura da imagem para dispositivos menores */
  }
}



/*--------------------------------------------------------------
# Reviews Section
--------------------------------------------------------------*/
.reviews {
  padding: 20px 0px;
}

.reviews h2 {
  color: white;
  padding: 20px 0px 40px 0px;
  font-size: 44px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
}

.googleImg {
  width: 300px;
  margin-top: -40px;
  margin-bottom: 20px;
}

.reviews h3 {
  color: white;
  margin-bottom: 40px;
  font-size: 28px;
}

.reviews b {
  color: #ff7e28;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
}


.reviews .carousel-indicators button {
  background-color: #FE6603;
}

.reviews .carousel-control-prev-icon,
.reviews .carousel-control-next-icon {
  width: 40px;
  height: 40px;
}

.reviews .carousel-control-prev,
.reviews .carousel-control-next {
  width: 5%;
  /* Ajuste da largura do botão */
}

.reviews .carousel-control-prev {
  left: -50px;
  /* Distância da seta à esquerda */
}

.reviews .carousel-control-next {
  right: -50px;
  /* Distância da seta à direita */
}

.reviews .carousel-item {
  transition: transform 0.8s ease-in-out;
  /* Transição suave */
}

.review-btn {
  margin-top: 60px;
  background: linear-gradient(45deg, #FE6603, #C75002);
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: solid 1px #FE6603;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;

}


.review-btn:hover {
  scale: 1.1;
  border: solid 1px transparent;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: white;
  color: #FE6603;
}



.reviews img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 20px;
}


/*--------------------------------------------------------------
# Parceiros Section
--------------------------------------------------------------*/

.parceiros {
  padding: 20px 0px;
}

.parceiros h2 {
  color: white;
  font-size: 44px;
  padding: 40px 0px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
}


#parceiros img {
  margin-top: 10px;
  transition: transform 0.3s ease-in-out;
  max-height: 130px;
  border-radius: 80px;
  margin-bottom: 20px;
}

.imagem-ajustada {
  border-radius: 80px;
  height: 130px;
  width: 130px;
}


/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location {
  padding: 0px 0px;
}

.location h2 {
  color: white;
  padding: 40px 0;
  font-size: 44px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */

}


/* Mapa */
.mapa-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;

}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.71);
  /* Sombra para efeito de flutuação */
  transition: all 0.3s ease;
  /* Adiciona uma animação suave */
}

/* Responsividade */
@media (max-width: 768px) {
  .mapa-container {
    height: 500px;
  }

}


@media (max-width: 576px) {
  .mapa-container {
    height: 500px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 20px 0px;
}

.googleForm {
  background-color: white;
  min-height: 500px;
}

.contact h4 {
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 30px;
}

.contact-section {
  padding: 20px 10px;
}

.contact-section h3 {
  font-size: 32px;
  font-weight: bold;
  color: #FE6603;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */
}

.contact-item,
.social-icons a {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact span {
  font-size: 18px;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */

}

.contact-item i,
.social-icons i {
  font-size: 24px;
  margin-right: 15px;
  color: #FE6603;
}

.contact-item a,
.social-icons a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */
}

.contact-item a:hover,
.social-icons a:hover {
  color: #FE6603;
}

.contact-item i:hover,
.social-icons i:hover {
  transform: scale(1.1);
  color: #C75002;
}


.contact-form input,
.contact-form textarea {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.contact-form button {
  background: linear-gradient(45deg, #FE6603, #C75002);
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  font-size: 18px;
  border: 2px solid transparent;
  border-radius: 30px;
  transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
  background: white;
  color: #FE6603;
  border-color: #FE6603;
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.rodape {
  text-align: center;
  background: radial-gradient(circle at top left, #ff9900, #ff6600, #cc3300, #ff6600, #ff9900);
}

.rodape p {
  font-size: 17px;
  margin: 0;
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.34);
  /* Efeito de 'lift' */

}



/*--------------------------------------------------------------
# Whats App Button
--------------------------------------------------------------*/
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  z-index: 9999;
  /* Garante que o botão fique acima de outros elementos */
}

.whatsapp-button:hover {
  background-color: #1ce0ca;
  /* Cor de fundo ao passar o mouse */
}

.whatsapp-button i {
  font-size: 2.5rem;
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 10px;
    right: 10px;
  }
}