

/* ============================== */
/* VARIÁVEIS GLOBAIS */
/* ============================== */
: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: "Ubuntu",  sans-serif;
}

:root
{
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #5f687b;
  --accent-color: #40C1AC;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* ============================== */
/* CORES DO MENU DE NAVEGAÇÃO */
/* REMOVIDO O MENU POR SOLICITAÇÃO (LUÍS) */
/* ============================== */
:root
{
  --nav-color: #626466;
  --nav-hover-color: #40C1AC;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #626466;
  --nav-dropdown-hover-color: #40C1AC;
}

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

.accent-background
{
  --background-color: #40C1AC;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #14eb83;
  --contrast-color: #ffffff;
}

:root
{
  scroll-behavior: smooth;
}

/* ============================== */
/* ESTILIZAÇÃO GERAL E CLASSES COMPARTILHADAS */
/* ============================== */
body
{
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

/* ============================== */
/* LINKS */
/* ============================== */
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;
}

/* ============================== */
/* TÍTULOS */
/* ============================== */
h1,
h2,
h3,
h4,
h5,
h6
{
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* ============================== */
/* CABEÇALHO GLOBAL */
/* ============================== */
.header
{
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}


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


.header .logo img
{
  max-height: 50px;
  margin-right: 8px;
}


.header .logo h1
{
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}


.header .btn-getstarted,
.header .btn-getstarted:focus
{
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}


.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover
{
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


@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);
}

/* ============================== */
/* RODAPÉ GLOBAL */
/* ============================== */
.footer
{
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top
{
  padding-top: 50px;
}


.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, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}


.footer .social-links a:hover {

  color: var(--accent-color);
  border-color: var(--accent-color);
}


.footer h4
{
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}


.footer .footer-links
{
  margin-bottom: 30px;
}


.footer .footer-links ul
{
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer .footer-links ul i
{
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}


.footer .footer-links ul li
{
  padding: 10px 0;
  display: flex;
  align-items: center;
}


.footer .footer-links ul li:first-child
{
  padding-top: 0;
}


.footer .footer-links ul a
{
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}


.footer .footer-links ul a:hover
{
  color: var(--accent-color);
}


.footer .footer-about a
{
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}


.footer .footer-contact p
{
  margin-bottom: 5px;
}


.footer .copyright
{
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


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


.footer .credits
{
  margin-top: 6px;
  font-size: 13px;
}

/* ============================== */
/* PRÉ-CARREGADOR */
/* ============================== */
#preloader
{
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before
{
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader
{
  0% {
    transform: rotate(0deg);
  }


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

}

/* ============================== */
/* BOTÃO DE VOLTAR AO TOPO */
/* ============================== */
.scroll-top
{
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i
{
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover
{
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

@media screen and (max-width: 768px)
{
  [data-aos-delay]
  {
    transition-delay: 0 !important;
  }

}

/* ============================== */
/* ÁREA DE TÍTULO DA PÁGINA E BREADCRUMBS */
/* ============================== */
.page-title
{
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1
{
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol
{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li
{
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before
{
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* ============================== */
/* SESSÕES GLOBAIS */
/* ============================== */
section,
.section
{
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px)
{

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

}

/* ============================== */
/* TÍTULO DAS SEÇÕES */
/* ============================== */
.section-title
{
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2
{
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span
{
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p
{
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px)
{
  .section-title h2
  {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span
  {
    font-size: 38px;
  }

}

/* ============================== */
/* SESSÃO HERO (PRINCIPAL) */
/* ============================== */
.hero
{
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background-image: url('../img/header.png');
  background-size: cover;
  background-position: bottom;
  height: 100.1vh;
}

.hero h1
{
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p
{
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started
{
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: none;
}

.hero .btn-get-started:hover
{
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .animated
{
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px)
{
  .hero h1
  {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p
  {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video
  {
    font-size: 13px;
  }
}

@keyframes up-down
{
  0%
  {
    transform: translateY(10px);
  }

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

/* ============================== */
/* FORM DA SESSÃO HERO */
/* ============================== */

input.form-control:focus,
select.form-select:focus
{
    border-color: #5BCAB8;
    box-shadow: none;
    outline: none;
}

#form-fixed.fixed
{
    position: fixed;
    top: 100px;
    right: 40px;
    width: 300px;
    z-index: 9999;
    transition: all 0.3s ease;
}

#form-fixed.fixed h5
{
    font-size: 1rem;
}

#form-toggle-bar
{
	justify-content: center;
}

#toggleFormBtn
{
	display: none;
}

@media (max-width: 950px)
{
  #form-fixed.fixed
	{
    top: auto;
    bottom: 87px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 8px;
    font-size: 13px;
  }

  /* Barra do toggle */
  #form-toggle-bar
	{
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
		text-align: center;
		justify-content: space-between;
  }

	#toggleFormBtn
	{
		display: block;
	}

  /* Estado colapsado */
  #form-fixed.minimized form
	{
    display: none;
  }
	#form-toggle-bar .btn
	{
    background: transparent;
    border: none;
    font-size: 18px;
  }

  .collapse-label
	{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }

  #form-fixed.fixed .form-row
	{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
  }

  #form-fixed.fixed .form-row > div
	{
    flex: 1 1 48%;
    margin-bottom: 0 !important;
  }

  #form-fixed.fixed .form-control,
  #form-fixed.fixed .form-select
	{
    padding: 6px 8px;
    font-size: 13px;
    border-radius: 6px;
    min-height: 32px;
  }

  #form-fixed.fixed .btn-get-started
	{
    margin-top: 6px;
    padding: 8px 12px;
    font-size: 14px;
    width: 100%;
  }

  #form-fixed.fixed select
	{
    min-height: 32px;
  }

  #form-fixed.fixed input::placeholder
	{
    font-size: 12px;
  }
}


.select2-results__option
{
  text-align: start !important;
}

/* ============================== */
/* SESSÃO SOBRE */
/* ============================== */
.about .content h3
{
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul
{
  list-style: none;
  padding: 0;
}

.about .content ul li
{
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i
{
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about .pulsating-play-btn
{
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}


/* ============================== */
/* INDICADORES (ÍCONES EM CAIXAS) */
/* ============================== */
.icon-box
{
    transition: transform 0.3s;
    position: relative;
}

.icon-box:hover
{
    transform: translateY(-5px);
}

.icon-box .icon
{
    width: 75px;
    height: 75px;
    background: #34367E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.icon-box .icon img
{
    width: 47%;
}

.icon-box h5
{
    font-weight: 700;
    font-size: 1.1rem;
    color: #34367E;
    margin-top: 40px;
    margin-bottom: 15px;
}

.icon-box p
{
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    margin-bottom: 15px;
}

.gallery-color-icon
{
    color: #40C1AC;
}


.paragraph-indicators ul
{
    column-count: 2;
    column-gap: 2rem;
    list-style: none !important;
    padding-left: 0;
    margin: 0;
}

.paragraph-indicators li
{
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
    marker: none;
		font-size: .9rem;
}

.paragraph-indicators i
{
    color: #40C1AC;
}

/* ============================== */
/* SESSÃO AÇÃO */
/* ============================== */

.call-to-action
{
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  background-image: url(../img/action.svg);
  background-repeat: no-repeat;
  background-position: calc(40px) center;
  background-size: contain;
}


.call-to-action img
{
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.call-to-action:before
{
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}


.call-to-action .container
{
  position: relative;
  z-index: 3;
}


.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}


.call-to-action p
{
  color: var(--default-color);
}


/* ============================== */
/* SESSÃO GALERIA DE IMAGENS */
/* ============================== */

.portfolio .portfolio-filters
{
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li
{
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active
{
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child
{
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child
{
  margin-right: 0;
}

.filter-btn
{
  text-decoration: none;
  color: #34367E;
}

.filter-btn.active
{
  color: #40C1AC;
}

.img-wrapper
{
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.img-wrapper img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform: scale(1);
}

.img-wrapper:hover img,
.img-wrapper:focus-within img
{
  filter: grayscale(0%);
  transform: scale(1.15);
}

.img-wrapper:hover img
{
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


@media (max-width: 575px)
{
  .portfolio .portfolio-filters li
  {
    font-size: 14px;
    margin: 0 5px;
  }
}

.animated:hover,
.animated:focus-within
{
    animation-play-state: paused !important;
}

/* ============================== */
/* WHATSAPP */
/* ============================== */
.whatsapp-float
{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover
{
  transform: scale(1.1);
}

.whatsapp-float img
{
  width: 40px;
  height: 40px;
}

/* ============================== */
/* CONFIGURAÇÕES GERAIS */
/* ============================== */


.btn-outline-primary
{
	color: var(--contrast-color);
	background: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px 12px 28px;
	transition: 0.5s;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	border: none;
}

.btn-outline-primary:hover
{
	color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


.fs-10
{
	font-size: 10px !important;
}

.fs-11
{
	font-size: 11px;
}

.fs-12
{
	font-size: 12px;
}

.fs-13
{
	font-size: 13px;
}

.pointer
{
	cursor: pointer;
}