﻿/**
* Template Name: Medicio
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* 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: #0B2A2A; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3fbbc0; /* 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: #3fbbc0; /* 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: #3fbbc0; /* 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: #f7fcfc;
  --surface-color: #ffffff;
}

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

/* Cor de fundo das imagens apoio */
.accent-background {
  --background-color: #f5f7f7;
  --default-color: #1bb5b5;
  --heading-color: #ffffff;
  --surface-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* ===============================
   HEADER DEFINITIVO BIOBYTE
================================= */

.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 0;
}


/*--------------------------------------------------------------
# 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: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.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: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/* HERO Principal */
/* HERO DEFINITIVO LIMPO */

/* ===== HERO COM GRADIENTE VERDE E ANIMAÇÃO ===== */

#hero-banner-section {
    background: linear-gradient(135deg, #0B2A2A 0%, #1E7A7A 70%, #2AA9A9 100%);
    position: relative;
    overflow: hidden;
}

#hero-banner-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.04) 0%, transparent 60%);
    animation: rotate 60s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

/* BADGE - ajuste para fundo escuro */
#hero-banner-section .badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #FFD966 !important;
    border-color: rgba(255, 217, 102, 0.3) !important;
    backdrop-filter: blur(5px);
}

/* MARCA */
.hero-brand {
    color: #FFD966;
    text-shadow: 0 6px 20px rgba(0,0,0,0.25);
    font-size: clamp(46px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* TÍTULO */
.hero-title {
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: clamp(36px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.highlight-word {
    color: #FFD966;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 10px;
    background: rgba(255, 217, 102, 0.3);
    border-radius: 6px;
    z-index: -1;
}

/* SUBTÍTULO */
.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 500;
    margin-bottom: 20px;
}

/* DESCRIÇÃO */
.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
}

/* PROVAS RÁPIDAS */
.hero-features .feature-icon {
    color: #FFD966;
    font-size: 1.2rem;
    margin-right: 10px;
}

.hero-features small {
    color: white;
    font-weight: 500;
}

.hero-features .d-flex {
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* RODAPÉ */
.hero-footnote {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* BOTÕES */
.btn-hero-primary {
	background: linear-gradient(135deg, #FFD966 0%, #F6C64F 100%);
    display: inline-block;
    background: #FFD966;
    color: #0B2A2A;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px -8px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
}

.btn-hero-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: #FFD966;
    color: #FFD966;
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 0;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
}
#hero-banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
    z-index: 0;
}

/*--------------------------------------------------------------
# Featured Services Section Icon
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}
.icon {
  display: flex;
  justify-content: center; /* Centraliza o ícone */
  align-items: center;
  margin-bottom: 10px;
}

.icon-img {
  width: 50px; /* Ajuste conforme o tamanho desejado */
  height: auto; /* Mantém a proporção */
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.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);
}
/*
.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
*/
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.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);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.features h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.features .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box h4 a:hover {
  color: var(--accent-color);
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  transition: 0.3s;
  position: relative;
}

.services .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  overflow: hidden;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 200px !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 0 !important; /* Remove qualquer arredondamento */
  margin: 0 auto;
  display: block;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.doctors .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.doctors .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.doctors .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.doctors .team-member .member-info {
  padding: 25px 15px;
}

.doctors .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.doctors .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.doctors .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  border-color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
*/
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
<!-- Imagens Apoio -->
--------------------------------------------------------------*/
.image-container {
  display: flex;
  justify-content: center;
  gap: 10px; /* Espaçamento entre imagens */
}

.image-container img {
  width: 15%; /* Ajusta o tamanho */
  max-width: 150px; /* Tamanho máximo */
  height: auto; /* Mantém proporção */
}
/*--------------------------------------------------------------
<!-- Imagens Apoio efeito -->
--------------------------------------------------------------*/
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.image-container img {
  animation: float 3s ease-in-out infinite alternate;
}

/* Adicionando atrasos diferentes para cada imagem */
.image-container img:nth-child(1) { animation-delay: 0s; }
.image-container img:nth-child(2) { animation-delay: 0.2s; }
.image-container img:nth-child(3) { animation-delay: 0.4s; }
.image-container img:nth-child(4) { animation-delay: 0.6s; }
.image-container img:nth-child(5) { animation-delay: 0.8s; }
.image-container img:nth-child(6) { animation-delay: 1s; }
/*--------------------------------------------------------------
<!-- texto laboratorio -->
--------------------------------------------------------------*/

.service-item p {
  text-align: center;
}
.service-item h4 {
  text-align: center;
}
.featured-services .service-item h4 {
  font-size: 1rem; /* Diminui o tamanho do título */
}

.featured-services .service-item p {
  font-size: 0.85rem; /* Reduz o tamanho do parágrafo */
  line-height: 1.6; /* Ajusta o espaçamento entre linhas para melhor leitura */
}
/*--------------------------------------------------------------
<!-- texto Sobre a Biobyte -->
--------------------------------------------------------------*/

.content p {
  text-align: justify;
}

/*--------------------------------------------------------------
<!-- Botão Inicio da Pagina -->
--------------------------------------------------------------*/
.btn-biobyte {
  background-color: #3FBBC0; /* mesmo tom do header */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-biobyte:hover {
  background-color: #3FBBC0; /* tom um pouco mais escuro */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(63, 187, 192, 0.35);
}
.section-title-compact {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-compact p {
  line-height: 1.55;
  margin-bottom: 0.6rem;
}



/* tension */
.tension-section h2 {
  color: #ffffff !important;
}

.tension-section .lead {
  color: rgba(255,255,255,0.85);
}
.tension-card h4 {
  color: #ffffff;
  font-weight: 600;
}

.about-section {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Linha superior elegante na cor da marca */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #1E7A7A;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.about-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.about-icon {
  width: 58px;
  height: 58px;
  background: #E6F3F3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1E7A7A;
  flex-shrink: 0;
}

/* Melhor leitura */
.about-item p {
  line-height: 1.7;
}

/* Responsivo */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 25px;
  }

  .about-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-icon {
    margin-bottom: 10px;
  }
}
.authority-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Linha superior na cor da marca */
.authority-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #1E7A7A;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.authority-card p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #4a4a4a;
}

/* Responsivo */
@media (max-width: 768px) {
  .authority-card {
    padding: 40px 25px !important;
  }
}
.cta-decisao h3 {
  color: #ffffff;
  font-weight: 700;
}
/* ANIMAÇÃO DO FLUXO LABORATORIAL */
    .flow-animation-container {
      background: linear-gradient(145deg, #f8faff 0%, #eef2f9 100%);
      border-radius: 30px;
      padding: 40px 30px;
      box-shadow: 0 20px 40px rgba(0,40,40,0.08);
      position: relative;
      overflow: hidden;
    }
    
    .flow-animation-container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(63,187,192,0.03) 0%, transparent 70%);
      animation: rotate 60s linear infinite;
    }
    
    .flow-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 15px;
      position: relative;
      z-index: 2;
    }
    
    .flow-item {
      background: white;
      border-radius: 20px;
      padding: 20px 15px;
      min-width: 140px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.03);
      border: 1px solid rgba(63,187,192,0.1);
      transition: all 0.3s;
      animation: float 3s ease-in-out infinite;
    }
    
    .flow-item:nth-child(2) { animation-delay: 0.2s; }
    .flow-item:nth-child(3) { animation-delay: 0.4s; }
    .flow-item:nth-child(4) { animation-delay: 0.6s; }
    .flow-item:nth-child(5) { animation-delay: 0.8s; }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
      100% { transform: translateY(0px); }
    }
    
    .flow-item i {
      font-size: 2.2rem;
      color: #3FBBC0;
      margin-bottom: 10px;
    }
    
    .flow-item span {
      display: block;
      font-weight: 600;
      color: #2f3e46;
      margin-bottom: 5px;
    }
    
    .flow-item small {
      color: #6c757d;
      font-size: 0.8rem;
    }
    
    .flow-connector {
      display: flex;
      align-items: center;
      color: #3FBBC0;
      font-size: 1.5rem;
      opacity: 0.5;
    }
    
    .pulse-dot {
      width: 8px;
      height: 8px;
      background: #3FBBC0;
      border-radius: 50%;
      margin: 0 5px;
      animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.5); opacity: 1; }
      100% { transform: scale(1); opacity: 0.5; }
    }
    
    .flow-stats {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #0B2A2A;
      line-height: 1;
    }
    
    .stat-label {
      font-size: 0.85rem;
      color: #6c757d;
    }
    
    @media (max-width: 768px) {
      .flow-grid {
        flex-direction: column;
      }
      .flow-connector {
        transform: rotate(90deg);
        margin: 5px 0;
      }
    }

    /* SEÇÃO DE TENSÃO (MOMENTO CONFRONTO) */
    .tension-section {
      background: #0B2A2A;
      color: white;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .tension-section::before {
      content: '?';
      font-size: 300px;
      color: rgba(255,255,255,0.03);
      position: absolute;
      bottom: -50px;
      right: 0;
      font-weight: 900;
    }

    .tension-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      border: 1px solid rgba(255,255,255,0.2);
      height: 100%;
    }

    /* SEÇÃO ANTI-OBJEÇÃO */
    .anti-objection {
      background: white;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
      margin: 40px 0;
      border: 1px solid #E6F3F3;
    }

    .objection-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px;
      border-bottom: 1px solid #E6F3F3;
    }

    .objection-item:last-child {
      border-bottom: none;
    }

    .objection-icon {
      width: 50px;
      height: 50px;
      background: #E6F3F3;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #1E7A7A;
      flex-shrink: 0;
    }

    /* BOTÃO PULSANTE */
    .btn-pulse {
      animation: btnPulse 2s infinite;
    }
    
    @keyframes btnPulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(63,187,192,0.6); }
      100% { transform: scale(1); }
    }
	.ethos-mockup {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  border: 8px solid #ffffff;
  background: #ffffff;
  transform: perspective(1000px) rotateY(-4deg);
  transition: all 0.4s ease;
}

.ethos-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.ethos-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}
:root {
      --primary-dark: #0B2A2A;
      --primary: #1E7A7A;
      --primary-light: #3FBBC0;
      --accent: #FFD966;
      --gray-bg: #F8FAFC;
      --text-dark: #1E293B;
      --text-muted: #64748B;
      --border-light: #E2E8F0;
      --card-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
      --hover-transform: translateY(-4px);
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    /* Header refinado */
    .header {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .topbar {
      background: var(--primary-dark);
      color: white;
      font-size: 0.85rem;
      padding: 6px 0;
    }

    .logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(15, 60, 60, 0.25));
}

    .logo-img:hover {
      transform: scale(1.05);
    }

    /* Navegação refinada */
    .navmenu ul li a {
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      padding: 20px 15px;
      color: var(--text-dark);
      position: relative;
    }

    /* Menu principal */
.navmenu ul li a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 12px 14px;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

/* Hover elegante */
.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: var(--primary);
}

    .navmenu ul li a:hover:after,
    .navmenu ul li a.active:after {
      transform: scaleX(1);
    }

    
    .btn-biobyte {
      background: var(--primary);
      color: white;
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      transition: all 0.3s;
      box-shadow: 0 10px 20px -8px var(--primary);
    }

    .btn-biobyte:hover {
      background: var(--primary-dark);
      transform: var(--hover-transform);
      box-shadow: 0 20px 30px -10px var(--primary-dark);
    }

    .btn-outline-secondary {
      background: transparent;
      color: var(--text-dark);
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 600;
      border: 2px solid var(--border-light);
      transition: all 0.3s;
    }

    .btn-outline-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: var(--hover-transform);
    }

    /* Cards refinados */
    .card-moderno {
      background: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--card-shadow);
      border: 1px solid var(--border-light);
      transition: all 0.4s;
      height: 100%;
    }

    .card-moderno:hover {
      transform: var(--hover-transform);
      box-shadow: 0 30px 50px -20px var(--primary);
      border-color: var(--primary-light);
    }

    .card-moderno i {
      color: var(--primary);
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    /* Authority card refinado */
    .authority-card {
      background: white;
      border-radius: 30px;
      padding: 50px;
      box-shadow: var(--card-shadow);
      border: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
    }

    .authority-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
    }

    /* Testimonial cards refinados */
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: all 0.4s;
  position: relative;

  /* ADICIONADO */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: var(--hover-transform);
  box-shadow: 0 30px 60px -15px var(--primary);
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 8rem;
  color: var(--primary-light);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(1);
  transition: all 0.3s;
}

.testimonial-card:hover .testimonial-logo {
  filter: grayscale(0);
}

    /* Flow animation refinado */
    .flow-animation-container {
      background: white;
      border-radius: 40px;
      padding: 50px 40px;
      box-shadow: var(--card-shadow);
      border: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
    }

    .flow-item {
      background: var(--gray-bg);
      border-radius: 30px;
      padding: 25px 20px;
      transition: all 0.4s;
      border: 1px solid transparent;
    }

    .flow-item:hover {
      background: white;
      border-color: var(--primary-light);
      transform: scale(1.05);
      box-shadow: 0 20px 30px -10px rgba(30, 122, 122, 0.2);
    }

    .flow-item i {
      font-size: 2.5rem;
      color: var(--primary);
    }

    /* Mockup refinado */
    .ethos-mockup {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
      border: 8px solid white;
      transform: perspective(1200px) rotateY(-5deg);
      transition: all 0.6s;
    }

    .ethos-mockup:hover {
      transform: perspective(1200px) rotateY(0deg) scale(1.02);
      box-shadow: 0 50px 100px -20px var(--primary);
    }

    /* Integration images refinado */
    .image-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
      margin: 40px 0;
    }

    .image-container img {
      width: 100px;
      height: auto;
      filter: brightness(0) invert(1);
      opacity: 0.8;
      transition: all 0.4s;
      animation: floatSoft 4s ease-in-out infinite;
    }

    .image-container img:hover {
      opacity: 1;
      transform: scale(1.1);
      filter: brightness(1) invert(0);
    }

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

    .image-container img:nth-child(1) { animation-delay: 0s; }
    .image-container img:nth-child(2) { animation-delay: 0.2s; }
    .image-container img:nth-child(3) { animation-delay: 0.4s; }
    .image-container img:nth-child(4) { animation-delay: 0.6s; }
    .image-container img:nth-child(5) { animation-delay: 0.8s; }
    .image-container img:nth-child(6) { animation-delay: 1s; }

    /* Section titles refinados */
    .section-title h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .section-title h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      border-radius: 4px;
    }

    /* Contact section refinado */
    .contact-section {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .contact-card {
      background: white;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
    }

    .contact-card input,
    .contact-card textarea {
      border: 2px solid var(--border-light);
      border-radius: 16px;
      padding: 14px;
      font-size: 1rem;
      transition: all 0.3s;
    }

    .contact-card input:focus,
    .contact-card textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(30, 122, 122, 0.1);
      outline: none;
    }

    /* Footer refinado */
    .footer {
      background: var(--primary-dark);
      color: white;
      position: relative;
    }

    .footer a {
      color: rgba(255,255,255,0.8);
      transition: all 0.3s;
      text-decoration: none;
    }

    .footer a:hover {
      color: var(--accent);
      transform: translateX(5px);
    }

    .footer h4 {
      color: var(--accent);
      font-weight: 600;
    }

    /* Animações gerais */
    [data-aos] {
      transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .pulse-dot {
      background: var(--primary-light);
      box-shadow: 0 0 15px var(--primary-light);
    }
	
	/*CSS DO PAINEL INTEGRADOR PAGINA HOME */

  .integrador-painel {
    background: #ffffff;
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
  }
  
  .integrador-painel:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(30, 122, 122, 0.3);
  }
  
  .painel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
  }
  
  .status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  
  .status-badge.ativo {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
  }
  
  .status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
  }
  
  .painel-body {
    padding: 24px;
  }
  
  .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .info-row:last-of-type {
    border-bottom: none;
  }
  
  .info-row.destaque {
    background: rgba(30, 122, 122, 0.04);
    margin: 0 -24px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(30, 122, 122, 0.1);
    border-top: 1px solid rgba(30, 122, 122, 0.1);
  }
  
  .info-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  
  .info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
  }
  
  .info-value.highlight {
    color: #1E7A7A;
    font-weight: 700;
  }
  
  .codigo-exame {
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: rgba(30, 122, 122, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }
  
  .activity-bar {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 16px;
    margin-top: 16px;
  }
  
  .activity-graph {
    display: flex;
    gap: 4px;
    height: 40px;
    align-items: flex-end;
  }
  
  .activity-line {
    flex: 1;
    background: linear-gradient(180deg, #1E7A7A 0%, #3FBBC0 100%);
    height: 100%;
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    transform-origin: bottom;
  }
  
  @keyframes pulseActivity {
    0%, 100% { height: 40px; opacity: 0.7; }
    50% { height: 60px; opacity: 1; }
  }
  
  .painel-footer {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .info-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .info-row.destaque {
      flex-direction: row;
      align-items: center;
    }
    
    .activity-line {
      animation: none;
      height: 40px;
    }
  }
  
/* ===== FAQ ===== */
    .faq-section {
      background: var(--gray-bg);
      padding: 80px 0;
    }

    .faq-item {
      background: white;
      border-radius: 20px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
      border: 1px solid var(--border-light);
      transition: all 0.3s;
      cursor: pointer;
    }

    .faq-item:hover {
      box-shadow: 0 20px 40px -15px var(--primary-light);
      transform: translateY(-2px);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text-dark);
    }

    .faq-question i {
      color: var(--primary);
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid var(--border-light);
      color: var(--text-muted);
      display: none;
    }

    .faq-item.active .faq-answer {
      display: block;
    }
	/*--------------------------------------------------------------
# Call To Action Section - Estilo refinado
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Efeito de brilho suave no fundo */
.call-to-action::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.call-to-action h3 {
  color: white !important;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.call-to-action p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Container das imagens */
.call-to-action .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 60px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilo das imagens dos laboratórios */
.call-to-action .image-container img {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1); /* Deixa as imagens brancas */
  opacity: 0.9;
  transition: all 0.4s ease;
  animation: floatSoft 4s ease-in-out infinite;
}

/* Animações individuais para cada imagem */
.call-to-action .image-container img:nth-child(1) { animation-delay: 0s; }
.call-to-action .image-container img:nth-child(2) { animation-delay: 0.2s; }
.call-to-action .image-container img:nth-child(3) { animation-delay: 0.4s; }
.call-to-action .image-container img:nth-child(4) { animation-delay: 0.6s; }
.call-to-action .image-container img:nth-child(5) { animation-delay: 0.8s; }
.call-to-action .image-container img:nth-child(6) { animation-delay: 1s; }

/* Efeito hover nas imagens */
.call-to-action .image-container img:hover {
  filter: brightness(1) invert(0); /* Volta às cores originais no hover */
  opacity: 1;
  transform: scale(1.15) translateY(-5px);
}

/* Texto pequeno no final */
.call-to-action .small {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Animação de flutuação */
@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }
  
  .call-to-action h3 {
    font-size: 1.8rem;
  }
  
  .call-to-action .image-container {
    gap: 20px;
    padding: 15px;
  }
  
  .call-to-action .image-container img {
    width: 70px;
  }
}

@media (max-width: 576px) {
  .call-to-action .image-container img {
    width: 50px;
  }
}
/* ===== EFEITO ESPELHO REFINADO (ALTO CONTRASTE) ===== */
.glass-card-premium {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
              inset 0 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho suave no canto */
.glass-card-premium::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, 
              rgba(30, 122, 122, 0.08) 0%, 
              transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Texto principal - escuro e legível */
.glass-card-premium h4 {
  color: #0B2A2A;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

/* Linha decorativa em tom escuro */
.glass-card-premium h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1E7A7A, #3FBBC0);
  border-radius: 4px;
}

/* Parágrafos - cinza escuro para ótima leitura */
.glass-card-premium p {
  color: #2C3E50;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Destaque em verde escuro */
.glass-card-premium .highlight {
  color: #1E7A7A;
  font-weight: 600;
  background: rgba(30, 122, 122, 0.1);
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(30, 122, 122, 0.2);
}

/* Separador elegante */
.glass-card-premium hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 122, 122, 0.3), transparent);
  margin: 30px 0;
}

/* Citação no final */
.glass-card-premium .quote-block {
  background: rgba(30, 122, 122, 0.05);
  padding: 20px;
  border-radius: 20px;
  border-left: 4px solid #1E7A7A;
}

.glass-card-premium .quote-block i {
  color: #1E7A7A;
  opacity: 0.3;
}

.glass-card-premium .quote-block p {
  margin-bottom: 0;
  font-style: italic;
  color: #34495E;
}

/* Responsividade */
@media (max-width: 768px) {
  .glass-card-premium {
    padding: 30px;
  }
  
  .glass-card-premium h4 {
    font-size: 1.6rem;
  }
  
  .glass-card-premium p {
    font-size: 1rem;
  }
}
.btn-nav-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: normal;
  box-shadow: none;
  transition: all 0.2s ease;
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
/* faixa onde está os telefones */
.header .topbar {
  background: #0F3C3C; /* verde escuro premium */  
}

/* ===== BLINDAGEM BOTÃO CONTATO ===== */

@media (min-width: 1200px) {

  .navmenu .btn-nav-cta {
    padding: 6px 16px !important;
    margin-left: 15px !important;
    display: inline-block !important;
  }

  /* Impede que a regra do last-child afete o botão */
  .navmenu li:last-child .btn-nav-cta {
    padding-right: 16px !important;
  }

  /* Remove qualquer herança de padding do template */
  .navmenu li .btn-nav-cta {
    padding: 6px 16px !important;
  }

}

/* ===== FIX LAYOUT NAV + CTA ===== */
@media (min-width: 1200px) {

  .navmenu {
    display: flex;
    align-items: center;
  }

  .navmenu ul {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .navmenu .btn-nav-cta {
    margin-left: 20px;
    white-space: nowrap;
  }

}
/* ===== REFINO ESPAÇAMENTO MENU ===== */
@media (min-width: 1200px) {

  .navmenu ul {
    gap: 28px; /* espaço entre os itens */
  }

  .navmenu ul li a {
    padding: 14px 0; /* remove padding lateral exagerado */
  }

  .navmenu .btn-nav-cta {
    margin-left: 32px; /* respiro antes do botão */
  }

}