/* Custom CSS for F8 Fuels */

/* ---------------------------------------------- /*
 * Header
/* ---------------------------------------------- */

.lang-selector {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.lang-selector a.lang-flag {
    text-decoration: none;
    opacity: 0.5;
    transition: opacity .2s;
    line-height: 1;
}

.lang-selector a.lang-flag svg {
    width: 28px;
    height: auto;
    display: block;
    border-radius: 3px;
    border: 1px solid transparent;
}

.lang-selector a.lang-flag:hover {
    opacity: 1;
}

.lang-selector a.lang-flag.active {
    opacity: 1;
    pointer-events: none;
}

.lang-selector a.lang-flag.active svg {
    border-color: #aaa;
}

.lang-selector .lang-separator {
    color: #ccc;
    margin: 0 8px;
}

/* Portfolio Modern Effects */
.portfolio-animate-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.2s forwards;
}
.portfolio-animate-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.5s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.portfolio-separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #34b78f 0%, #63A827 100%);
  margin: 24px auto 32px auto;
  border-radius: 2px;
  animation: separatorGrow 1s 0.7s cubic-bezier(.4,2,.6,1) forwards;
  opacity: 0;
}
@keyframes separatorGrow {
  to {
    width: 120px;
    opacity: 1;
  }
}
.works-filter button {
  border: 1.5px solid #34b78f;
  background: #fff;
  color: #222;
  font-weight: 600;
  margin: 0 6px 12px 6px;
  border-radius: 24px;
  padding: 8px 22px;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 2px 8px rgba(52,183,143,0.07);
}
.works-filter button:hover, .works-filter button[aria-pressed="true"] {
  background: linear-gradient(90deg, #34b78f 0%, #63A827 100%);
  color: #fff;
  border-color: #63A827;
  box-shadow: 0 4px 16px rgba(52,183,143,0.13);
}
.works-grid .work-item {
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s;
}
.works-grid .work-item:hover {
  transform: scale(1.045) translateY(-8px);
  box-shadow: 0 8px 32px rgba(52,183,143,0.13);
  z-index: 2;
}
.works-grid .work-img img {
  transition: filter 0.4s, opacity 0.4s;
}
.works-grid .work-item:hover .work-img img {
  filter: brightness(0.92) contrast(1.08);
  opacity: 0.93;
}
.works-grid .work-item .work-img:after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(7,29,73,0.7) 0%, rgba(52,183,143,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.4,2,.6,1);
  z-index: 1;
  pointer-events: none;
}
.works-grid .work-item:hover .work-img:after {
  opacity: 1;
}
.works-grid .work-img {
  position: relative;
}
.works-grid .work-img img {
  position: relative;
  z-index: 0;
}
.works-grid .work-intro {
  position: relative;
  z-index: 2;
}
.works-grid .work-title, .works-grid .work-descr {
  color: #151515;
  transition: color 0.3s;
}
.works-grid .work-item:hover .work-title,
.works-grid .work-item:hover .work-descr {
  color: #fff;
}
@media (max-width: 900px) {
  .works-grid .work-item { width: 50%; }
}
@media (max-width: 600px) {
  .works-grid .work-item { width: 100%; }
  .portfolio-separator { margin-bottom: 18px; }
}

/* Fundo gradiente para a seção do portfólio */
#works.page-section {
  background: linear-gradient(135deg, #071d49 0%, #34b78f 100%);
  padding-bottom: 0;
}

/* Remover linha preta acima dos filtros */
.works-filter {
  border-top: none !important;
}

/* Ajustar contraste dos botões de filtro para fundo escuro */
.works-filter button {
  background: rgba(255,255,255,0.97);
  color: #071d49;
  border: 1.5px solid #34b78f;
}
.works-filter button:hover, .works-filter button[aria-pressed="true"] {
  background: linear-gradient(90deg, #34b78f 0%, #63A827 100%);
  color: #fff;
  border-color: #63A827;
}

/* Ajustar cor do texto do título e subtítulo para fundo escuro */
#works .section-heading, #works .portfolio-animate-title {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
#works .portfolio-animate-subtitle, #works .section-text {
  color: #eafaf6 !important;
}

/* Separador decorativo mais visível no fundo escuro */
#works .portfolio-separator {
  background: linear-gradient(90deg, #fff 0%, #34b78f 100%);
  opacity: 0.85;
}

/* Contact Section Modern */
.contact-section {
  background: linear-gradient(135deg, #071d49 0%, #34b78f 100%);
  padding: 60px 0 40px 0;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
.contact-info-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(7,29,73,0.10);
  padding: 36px 32px;
  max-width: 420px;
  min-width: 320px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-title {
  color: #071d49;
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-subtitle {
  color: #34b78f;
  font-size: 1.1em;
  margin-bottom: 24px;
}
.contact-details {
  margin-bottom: 28px;
  width: 100%;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #222;
  font-size: 1em;
  margin-bottom: 12px;
}
.contact-detail i {
  color: #34b78f;
  font-size: 1.3em;
  margin-top: 2px;
}
.btn-contact {
  background: linear-gradient(90deg, #34b78f 0%, #63A827 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1em;
  text-decoration: none;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(52,183,143,0.13);
}
.btn-contact:hover {
  background: #071d49;
  color: #fff;
}
.contact-map {
  flex: 1 1 320px;
  min-width: 320px;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(7,29,73,0.10);
  height: 340px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 900px) {
  .contact-container { flex-direction: column; align-items: stretch; }
  .contact-map, .contact-info-box { max-width: 100%; }
}

/* Sobre Nós Moderno */
.about-section {
  background: #fff;
}
.about-separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #34b78f 0%, #63A827 100%);
  margin: 0 auto 24px auto;
  border-radius: 2px;
  opacity: 0;
  animation: separatorGrow 1s 0.4s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes separatorGrow {
  to {
    width: 120px;
    opacity: 1;
  }
}
.about-highlight {
  color: #34b78f;
  font-weight: bold;
  background: linear-gradient(90deg, #34b78f 0%, #63A827 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-animate-title, .about-animate-subtitle, .about-animate-text, .about-animate-btn {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}
.about-animate-title { animation-delay: 0.1s; }
.about-animate-subtitle { animation-delay: 0.3s; }
.about-animate-text { animation-delay: 0.5s; }
.about-animate-btn { animation-delay: 0.7s; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 600px) {
  .about-section .container { padding: 36px 8px 24px 8px; }
  .about-animate-subtitle { font-size: 1.1em; }
  .about-separator { margin-bottom: 16px; }
}

/* Fundo gradiente animado para Sobre Nós */
.about-bg-animated {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  background: linear-gradient(120deg, #071d49, #34b78f, #63A827, #fff);
  background-size: 400% 400%;
  animation: aboutGradientMove 12s ease-in-out infinite;
  opacity: 0.18;
  pointer-events: none;
}
@keyframes aboutGradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Microinteração no separador */
.about-separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #34b78f 0%, #63A827 100%);
  margin: 0 auto 24px auto;
  border-radius: 2px;
  opacity: 0;
  animation: separatorGrow 1s 0.4s cubic-bezier(.4,2,.6,1) forwards;
  transition: box-shadow 0.3s;
}
.about-separator:hover {
  box-shadow: 0 0 16px #34b78f99;
}
@keyframes separatorGrow {
  to {
    width: 120px;
    opacity: 1;
  }
}

/* Ícone institucional animado (folha) */
.about-animated-icon svg .about-leaf {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: leafDraw 1.2s 0.2s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes leafDraw {
  to { stroke-dashoffset: 0; }
}

/* Responsividade para colunas */
@media (max-width: 900px) {
  .about-section .row { flex-direction: column !important; }
  .about-illustration-col { margin-top: 32px; }
}
@media (max-width: 600px) {
  .about-section .container { padding: 36px 8px 24px 8px; }
  .about-animate-subtitle { font-size: 1.1em; }
  .about-separator { margin-bottom: 16px; }
  .about-illustration-col svg { width: 90vw !important; height: auto !important; }
}

.about-modern-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px 60px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(52,183,143,0.07);
  position: relative;
}

.about-modern-line {
  width: 60px;
  height: 4px;
  background: #34b78f;
  margin: 0 auto 24px auto;
  border-radius: 2px;
}

.about-modern-title {
  color: #34b78f;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-modern-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #222;
  line-height: 1.2;
}

.about-modern-text {
  font-size: 1.6rem !important;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.contacts-gradient-animated {
  background: linear-gradient(120deg, #e6f7f3, #34b78f, #fff, #e6f7f3);
  background-size: 400% 400%;
  animation: gradientBGmove 12s ease-in-out infinite;
}
@keyframes gradientBGmove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.map-gradient-animated {
  background: linear-gradient(120deg, #e6f7f3, #34b78f, #fff, #e6f7f3);
  background-size: 400% 400%;
  animation: gradientBGmove 12s ease-in-out infinite;
}

.section-title.f8-gradient-border {
  border: 2px solid #34b78f;
  background: none;
  color: #34b78f !important;
  font-style: italic;
  border-radius: 15px;
}

.contact-icon i {
  font-size: 2em !important;
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 10px;
  transition: background-position 0.7s cubic-bezier(.4,2,.6,1);
  background-size: 200% 200%;
  background-position: 0% 50%;
}
.contact-icon i:hover {
  background-position: 100% 50%;
}
.contact-text a, .contact-text {
  font-size: 1.1em;
  color: #071d49;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.partnerships-section-title {
  font-size: 2.3em;
  font-weight: 700;
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s 0.1s both;
}
.partnerships-separator {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  margin: 0 auto 36px auto;
  border-radius: 2px;
  opacity: 0.9;
  animation: separatorGrow 1s 0.3s cubic-bezier(.4,2,.6,1) both;
}
.partnerships-logos-row {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
}
.partnerships-logo-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(52,183,143,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  min-width: 120px;
  min-height: 90px;
  transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s;
  opacity: 0;
  animation: fadeInUp 0.8s both;
}
.partnerships-logo-box img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.1) drop-shadow(0 2px 8px #34b78f22);
  transition: filter 0.3s, transform 0.3s;
}
.partnerships-logo-box:hover {
  transform: scale(1.08) translateY(-6px);
  box-shadow: 0 8px 32px 0 rgba(52,183,143,0.18), 0 1.5px 0 0 #34b78f;
  z-index: 2;
}
.partnerships-logo-box:hover img {
  filter: grayscale(0) brightness(1.15) drop-shadow(0 4px 16px #34b78f44);
  transform: scale(1.08);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes separatorGrow {
  from { width: 0; opacity: 0; }
  to { width: 90px; opacity: 0.9; }
}

.btn-spacia.btn-large.btn-full {
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  color: #fff !important;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(52,183,143,0.10);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-spacia.btn-large.btn-full:hover, .btn-spacia.btn-large.btn-full:focus {
  background: linear-gradient(90deg, #071d49 0%, #34b78f 100%);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(52,183,143,0.18);
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
  border: 2px solid #34b78f !important;
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input[type='text']:focus,
.contact-form input[type='email']:focus,
.contact-form textarea:focus {
  border: 2px solid #34b78f !important;
  box-shadow: 0 0 0 2px #34b78f33;
  outline: none;
}

.phone-title {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: none;
  position: relative;
}
.phone-title .phone-icon i {
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 4px;
}
.phone-title .phone-icon,
.phone-title span[data-translate-key="contactCallUs"] {
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: background-position 1.2s cubic-bezier(.4,2,.6,1);
}
.phone.in-view .phone-title .phone-icon,
.phone.in-view .phone-title span[data-translate-key="contactCallUs"] {
  background-position: 100% 50%;
}
.phone {
  border: 3px solid #34b78f;
  border-radius: 15px;
  transition: border 0.5s, box-shadow 0.5s;
  position: relative;
  background: #fff;
}
.phone.in-view {
  border: 3px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #34b78f, #071d49, #34b78f, #071d49, #34b78f);
  background-size: 100% 100%, 400% 400%;
  background-position: 0 0, 0 0;
  animation: border-gradient-move 2s linear infinite;
  box-shadow: 0 4px 24px 0 rgba(52,183,143,0.10);
}
@keyframes border-gradient-move {
  0% {
    background-position: 0 0, 0% 50%;
  }
  100% {
    background-position: 0 0, 100% 50%;
  }
}

.products-section-bg {
  background: linear-gradient(120deg, #34b78f 0%, #071d49 100%);
  background-size: 200% 200%;
  animation: productsBGmove 12s ease-in-out infinite;
  padding: 60px 0 40px 0;
}
@keyframes productsBGmove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
.products-section-title {
  color: #fff !important;
  font-size: 2em;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 40px;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
}
.products-features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 24px;
  margin-bottom: 0;
}
.products-feature-box {
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(7,29,73,0.10);
  padding: 32px 18px 28px 18px;
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s;
  opacity: 0;
  animation: fadeInUp 0.8s both;
}
.products-feature-box:hover {
  transform: scale(1.07) translateY(-8px);
  box-shadow: 0 8px 32px 0 rgba(52,183,143,0.18), 0 1.5px 0 0 #34b78f;
  z-index: 2;
}
.products-feature-icon {
  color: #fff !important;
  font-size: 3.2em;
  margin-bottom: 18px;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  text-fill-color: initial !important;
  filter: drop-shadow(0 2px 8px #34b78f22);
  transition: filter 0.3s, text-shadow 0.3s;
}
.products-feature-box:hover .products-feature-icon {
  filter: drop-shadow(0 4px 16px #34b78f44) brightness(1.15);
  text-shadow: 0 0 16px #34b78f99;
}
.products-feature-lines {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}
.products-feature-line {
  display: inline-block;
  height: 3px;
  width: 32px;
  border-radius: 2px;
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  opacity: 0.8;
  transition: background 0.4s;
}
.products-feature-box:hover .products-feature-line {
  background: linear-gradient(90deg, #071d49 0%, #34b78f 100%);
  opacity: 1;
}
.products-feature-title {
  color: #fff;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  .products-features-row { flex-direction: column; gap: 24px 0; }
  .products-feature-box { max-width: 100%; min-width: 0; }
}

.modal-unfolding {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 30, 30, 0.65);
  animation: modalFadeIn 0.3s;
}
.modal-unfolding-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
}
.modal-unfolding-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(7,29,73,0.18);
  min-width: 320px;
  max-width: 90vw;
  min-height: 180px;
  padding: 36px 32px 28px 32px;
  animation: modalUnfolding 0.5s cubic-bezier(.7,-0.2,.3,1.2);
  overflow-y: auto;
}
.modal-unfolding-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2em;
  color: #071d49;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.modal-unfolding-close:hover {
  color: #34b78f;
}
.modal-unfolding-body {
  text-align: center;
}
#modal-title {
  font-size: 1.5em;
  color: #071d49;
  margin-bottom: 12px;
  font-weight: 700;
}
#modal-desc {
  color: #222;
  font-size: 1.1em;
}
@keyframes modalUnfolding {
  0% {
    transform: scaleY(0.2) scaleX(0.7);
    opacity: 0;
  }
  60% {
    transform: scaleY(1.1) scaleX(1.05);
    opacity: 1;
  }
  100% {
    transform: scaleY(1) scaleX(1);
    opacity: 1;
  }
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sobre Nós – Border Reveal */
.sobre-nos-anim {
  position: relative;
  overflow: hidden;
  animation: border-reveal 1.2s cubic-bezier(.4,2,.6,1) both;
}
@keyframes border-reveal {
  0% {
    box-shadow: 0 0 0 0 #34b78f;
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.95);
  }
  60% {
    box-shadow: 0 0 0 8px #34b78f33;
    border-radius: 20px;
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 0 #34b78f00;
    border-radius: 15px;
    opacity: 1;
    transform: scale(1);
  }
}

/* Produtos – Gradient Slide */
.produtos-anim {
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  background-size: 200% 100%;
  animation: gradient-slide 1.2s cubic-bezier(.4,2,.6,1) both;
}
@keyframes gradient-slide {
  0% { background-position: 100% 0; opacity: 0; }
  60% { background-position: 0 0; opacity: 1; }
  100% { background-position: 0 0; opacity: 1; }
}

/* Parcerias – Shadow Glow */
.parcerias-anim {
  animation: shadow-glow 1.2s cubic-bezier(.4,2,.6,1) both;
}
@keyframes shadow-glow {
  0% { box-shadow: 0 0 0 0 #071d49; opacity: 0; }
  60% { box-shadow: 0 8px 32px 0 #34b78f55; opacity: 1; }
  100% { box-shadow: 0 4px 16px 0 #071d4922; opacity: 1; }
}

/* Equipe – Scale & Fade */
.equipe-anim {
  animation: equipe-scale-fade 1.2s cubic-bezier(.4,2,.6,1) both;
}
@keyframes equipe-scale-fade {
  0% { transform: scale(0.8) translateY(40px); opacity: 0; }
  60% { transform: scale(1.05) translateY(-8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Contato – Clip-path Reveal */
.contato-anim {
  animation: contato-clip-reveal 1.2s cubic-bezier(.4,2,.6,1) both;
  clip-path: inset(0 0 100% 0);
}
@keyframes contato-clip-reveal {
  0% { clip-path: inset(0 0 100% 0); opacity: 0; }
  60% { clip-path: inset(0 0 0 0); opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

#about-us {
  position: relative;
  z-index: 1;
  background: #fff;
  overflow: hidden;
}
#about-us::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="1600" height="800" viewBox="0 0 1600 800" fill="none" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="g1" x1="0" y1="0" x2="1" y2="1"><stop offset="0%25" stop-color="%2334b78f"/><stop offset="100%25" stop-color="%23071d49"/></linearGradient></defs><path d="M800 0Q1300 0 1600 400L1600 0Z" fill="url(%23g1)"/></svg>') no-repeat right top/cover;
  opacity: 1;
  pointer-events: none;
}
#about-us .container, #about-us .about-modern-wrapper {
  position: relative;
  z-index: 1;
}

.phone-number {
  font-size: 1.1em !important;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 10px 0 6px 0;
}

.phone-number .fa-whatsapp {
  animation: whatsapp-pulse 1.2s infinite cubic-bezier(.4,2,.6,1);
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 #34b78f); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 8px #34b78f88); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 #34b78f); }
}

.phone-number .whatsapp-fizzy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(.4,2,.6,1);
  border-radius: 32px;
  padding: 8px 18px;
  background: #fff;
  border: 2px solid #34b78f;
  box-shadow: 0 2px 12px 0 #34b78f22;
}
.phone-number .whatsapp-fizzy:active {
  transform: scale(0.96);
}
.phone-number .whatsapp-fizzy .fizzy-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  width: 9px; height: 9px;
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%);
  z-index: 2;
  transition: opacity 0.2s;
}
.phone-number .whatsapp-fizzy.fizzy-animate .fizzy-particle {
  animation: fizzy-pop 0.7s cubic-bezier(.4,2,.6,1) forwards;
  opacity: 1;
}
@keyframes fizzy-pop {
  0% { opacity: 1; transform: scale(0.7) translate(0,0); }
  60% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.5) translate(var(--tx), var(--ty)); }
}
.phone-number .fa-whatsapp {
  animation: whatsapp-pulse 1.2s infinite cubic-bezier(.4,2,.6,1);
  color: #34b78f !important;
  filter: drop-shadow(0 0 4px #34b78f88);
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 #34b78f); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 8px #34b78f88); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 #34b78f); }
}
.phone-number .whatsapp-fizzy:hover {
  box-shadow: 0 4px 24px 0 #34b78f55;
  border-color: #071d49;
  background: #f6fffc;
}

/* FIZZY BUTTON FORCE FIX */
.whatsapp-fizzy {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  cursor: pointer !important;
  border-radius: 32px !important;
  padding: 12px 28px !important;
  background: #fff !important;
  border: 2px solid #34b78f !important;
  box-shadow: 0 2px 16px 0 #34b78f33 !important;
  min-width: 220px !important;
  min-height: 56px !important;
  font-family: inherit !important;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s !important;
}
.whatsapp-fizzy:active {
  transform: scale(0.96) !important;
}
.whatsapp-fizzy .fa-whatsapp {
  font-size: 2em !important;
  color: #34b78f !important;
  animation: whatsapp-pulse 1.2s infinite cubic-bezier(.4,2,.6,1) !important;
  filter: drop-shadow(0 0 4px #34b78f88) !important;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 #34b78f); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 8px #34b78f88); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 #34b78f); }
}
.whatsapp-fizzy .fizzy-particle {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  opacity: 0 !important;
  width: 12px !important;
  height: 12px !important;
  background: linear-gradient(90deg, #34b78f 0%, #071d49 100%) !important;
  z-index: 2 !important;
  transition: opacity 0.2s !important;
}
.whatsapp-fizzy.fizzy-animate .fizzy-particle {
  animation: fizzy-pop 0.7s cubic-bezier(.4,2,.6,1) forwards !important;
  opacity: 1 !important;
}
@keyframes fizzy-pop {
  0% { opacity: 1; transform: scale(0.7) translate(0,0); }
  60% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.7) translate(var(--tx), var(--ty)); }
}
.whatsapp-fizzy:hover {
  box-shadow: 0 4px 32px 0 #34b78f55 !important;
  border-color: #071d49 !important;
  background: #f6fffc !important;
}

/* Multiple Background Animation para área de contato */
#contact-bg-animated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.contact-section-animated {
  position: relative;
  overflow: hidden;
}
.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(2px);
  animation: move-shape 12s linear infinite alternate;
}
.bg-shape1 {
  width: 420px; height: 420px;
  left: -120px; top: -120px;
  background: radial-gradient(circle at 60% 40%, #34b78f 0%, #071d49 100%);
  animation-delay: 0s;
}
.bg-shape2 {
  width: 320px; height: 320px;
  right: -80px; top: 40px;
  background: radial-gradient(circle at 40% 60%, #071d49 0%, #34b78f 100%);
  animation-delay: 2s;
}
.bg-shape3 {
  width: 220px; height: 220px;
  left: 40%; bottom: -100px;
  background: linear-gradient(135deg, #34b78f 0%, #071d49 100%);
  animation-delay: 4s;
}
@keyframes move-shape {
  0% { transform: scale(1) translateY(0) translateX(0); }
  100% { transform: scale(1.12) translateY(-30px) translateX(30px); }
}
@media (max-width: 700px) {
  .bg-shape1, .bg-shape2, .bg-shape3 {
    width: 160px !important;
    height: 160px !important;
    left: auto !important;
    right: auto !important;
    top: 10px !important;
    bottom: auto !important;
  }
  .bg-shape3 { left: 20% !important; }
}

/* --- Remover esferas/blobs e adicionar diagonais animadas --- */
.f8-bg-anim, .f8-bg-anim-sphere, .f8-bg-anim-blob, .sun, .sun2, .sun3, .blob1, .blob2 {
  display: none !important;
}

.f8-bg-anim-diagonal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.f8-diagonal-shape {
  position: absolute;
  width: 120vw;
  height: 40vh;
  left: -10vw;
  background: linear-gradient(100deg, #34b78f 0%, #071d49 100%);
  opacity: 0.13;
  transform: skewY(-8deg);
  animation: diagonal-move1 18s ease-in-out infinite alternate;
}
.f8-diagonal-shape2 {
  top: 18vh;
  height: 32vh;
  background: linear-gradient(100deg, #071d49 0%, #34b78f 100%);
  opacity: 0.10;
  transform: skewY(-5deg);
  animation: diagonal-move2 22s ease-in-out infinite alternate;
}
.f8-diagonal-shape3 {
  top: 32vh;
  height: 22vh;
  background: linear-gradient(100deg, #34b78f 0%, #071d49 100%);
  opacity: 0.08;
  transform: skewY(-3deg);
  animation: diagonal-move3 26s ease-in-out infinite alternate;
}

@keyframes diagonal-move1 {
  0% { left: -10vw; }
  100% { left: -2vw; }
}
@keyframes diagonal-move2 {
  0% { left: -8vw; }
  100% { left: 0vw; }
}
@keyframes diagonal-move3 {
  0% { left: -12vw; }
  100% { left: -4vw; }
}

@media (max-width: 700px) {
  .f8-diagonal-shape, .f8-diagonal-shape2, .f8-diagonal-shape3 {
    height: 18vh !important;
    top: auto !important;
  }
} 