/* ==========================================================================
   Phisioval System do Brasil - CSS Principal & Design System
   Fiel 100% à identidade visual oficial (Elementor Kit 206 / Header 288)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Roboto+Slab:wght@400;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,800;1,400&family=Seymour+One&display=swap");

:root {
  --primary: #6EC1E4;
  --primary-dark: #1F91C2;
  --primary-deep: #0A4F87;
  --secondary: #54595F;
  --accent: #028CFA;
  --accent-hover: #0A76CD;
  --green-wa: #25D366;
  --green-wa-dark: #128C7E;
  --danger: #ED1C24;
  --text-dark: #222222;
  --text-main: #54595F;
  --text-muted: #7A7A7A;
  --bg-body: #ffffff;
  --bg-light: #F8FAFD;
  --bg-gray: #F2F5F8;
  --border: #DADADA;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --radius: 5px;
  --radius-lg: 12px;
  --font-main: "Roboto", sans-serif;
  --font-heading: "Roboto", sans-serif;
  --font-slab: "Roboto Slab", serif;
  --font-nav: "Raleway", sans-serif;
  --font-brand: "Seymour One", sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1140px;
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-deep);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1.25rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TOPBAR OFICIAL (IDÊNTICA AO ANEXO)
   ========================================================================== */
.site-topbar {
  background-color: #ffffff;
  border-bottom: 1px solid #DADADA;
  padding: 10px 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-headset-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #54595F;
}

.topbar-phone-text {
  color: #54595F;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #000000;
  border-radius: 4px;
  color: #ffffff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icon-box:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* ==========================================================================
   HEADER & MENU (IDÊNTICO AO ANEXO)
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Branding Logo */
.site-branding {
  display: flex;
  flex-direction: column;
}

.brand-link {
  text-decoration: none;
  display: block;
}

.brand-title-text {
  font-family: "Seymour One", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: #1F91C2;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.brand-subtitle-text {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 300;
  color: #228DBA;
  line-height: 1;
  letter-spacing: -0.3px;
}

/* Nav Menu Desktop */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.nav-menu-item {
  position: relative;
}

.nav-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #54595F;
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.1px;
}

.nav-menu-link:hover,
.nav-menu-link.active {
  background-color: #6EC1E4;
  color: #FFFFFF;
}

.dropdown-caret {
  font-size: 11px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

/* Submenu Dropdown */
.sub-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  list-style: none;
  padding: 5px 0;
  display: none;
  z-index: 1010;
}

.nav-menu-item:hover .sub-dropdown-menu {
  display: block;
}

.sub-dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #54595F;
  text-decoration: none;
  transition: var(--transition);
}

.sub-dropdown-menu li a:hover {
  background-color: #6EC1E4;
  color: #ffffff;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.close-drawer-btn {
  display: none;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  height: 500px;
  overflow: hidden;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section picture,
.hero-section a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  image-rendering: auto;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
}

.hero-wave .shape-fill {
  fill: #ffffff;
}

/* ==========================================================================
   INFO STRIP / BADGES
   ========================================================================== */
.info-strip {
  background-color: var(--bg-gray);
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  font-weight: 700;
  color: var(--primary-deep);
  font-size: 1.05rem;
}

.info-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

/* ==========================================================================
   FEATURED PRODUCT SECTION (HOME)
   ========================================================================== */
.product-featured-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 45px;
  align-items: center;
}

.product-image-box {
  position: relative;
  text-align: center;
}

.product-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  margin: 0 auto;
}

.product-main-img:hover {
  transform: scale(1.02);
}

.product-info-box {
  padding: 10px 0;
}

.product-badge-tag {
  display: inline-block;
  background-color: rgba(2, 140, 250, 0.1);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-title {
  font-size: 1.4rem;
  color: var(--primary-deep);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-desc {
  font-size: 1.08rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.product-specs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.spec-pill {
  background: var(--bg-gray);
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-price-box {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-gray));
  border-left: 4px solid var(--primary-deep);
  padding: 18px 24px;
  border-radius: var(--radius);
  margin-bottom: 30px;
}

.price-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-deep);
  line-height: 1.1;
  margin: 4px 0;
}

.price-conditions {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(2, 140, 250, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 140, 250, 0.45);
}

.btn-secondary {
  background-color: var(--primary-deep);
}

.btn-secondary:hover {
  background-color: #062b4c;
}

/* ==========================================================================
   TESTIMONIALS SECTION (IDÊNTICO AO ANEXO)
   ========================================================================== */
.testimonials-section {
  padding: 60px 0 70px;
  background-color: #EAEAEA;
  position: relative;
}

.testimonial-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.divider-line {
  flex: 1;
  max-width: 320px;
  height: 2px;
  background-color: #6EC1E4;
}

.testimonial-title-text {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #6EC1E4;
  margin: 0 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonials-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 35px;
  align-items: center;
}

.testimonials-image-col {
  width: 100%;
}

.testimonials-side-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: block;
  object-fit: cover;
}

.testimonials-slider-col {
  width: 100%;
  position: relative;
}

.testimonial-carousel-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #666666;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #54595F;
  font-size: 15px;
  line-height: 1.2;
}

.testimonial-role {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #6EC1E4;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 3px;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  color: #c4cdd5;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
  z-index: 10;
}

.carousel-nav-btn:hover {
  color: #6EC1E4;
}

.carousel-nav-btn.prev { left: -5px; }
.carousel-nav-btn.next { right: -5px; }

.carousel-bullets {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bullet-dot.active {
  background: #000000;
  width: 8px;
}

/* ==========================================================================
   PÁGINAS INTERNAS & ARTIGOS
   ========================================================================== */
.page-header-banner {
  background: linear-gradient(135deg, var(--primary-deep), #0d60a1);
  color: #ffffff;
  padding: 45px 0;
  text-align: center;
}

.page-header-banner h1 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-header-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  background-color: var(--bg-gray);
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--text-muted);
  margin-right: 8px;
}

.page-content-area {
  padding: 50px 0;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #333333;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.article-body h3 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 12px;
}

.article-body ul, .article-body ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

.article-body li {
  margin-bottom: 8px;
}

.content-image-card {
  margin: 30px 0;
  text-align: center;
}

.content-image-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.callout-box {
  background-color: var(--bg-light);
  border: 1px solid #c8e1f2;
  border-left: 4px solid var(--primary-deep);
  padding: 24px;
  border-radius: var(--radius);
  margin: 30px 0;
}

.callout-box.alert {
  background-color: #fff8f8;
  border-color: #ffcccc;
  border-left-color: var(--danger);
}

/* Hub de Artigos / Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.article-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.article-card-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--bg-gray);
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-card:hover .article-card-thumb img {
  transform: scale(1.05);
}

.article-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.article-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-deep);
}

.article-card-title a {
  color: inherit;
}

.article-card-title a:hover {
  color: var(--accent);
}

.article-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-card-btn {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 140, 250, 0.15);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.alert-message {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-callout-bar {
  background-color: var(--primary-deep);
  color: #ffffff;
  text-align: center;
  padding: 16px 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  background-color: #1a2530;
  color: #e2e8f0;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 35px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-seal-img {
  width: 110px;
  margin-top: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-developer {
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-developer a {
  color: #6EC1E4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-developer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.btn-back-to-top {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-back-to-top:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   FLOATING BUTTONS: VOLTAR AO TOPO & WHATSAPP
   ========================================================================== */
.back-to-top-float {
  position: fixed;
  bottom: 96px;
  right: 31px;
  width: 48px;
  height: 48px;
  background-color: #1F91C2;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(31, 145, 194, 0.4);
  z-index: 9998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-float:hover {
  background-color: #177ba6;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 18px rgba(31, 145, 194, 0.55);
}

.back-to-top-float svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  transition: transform 0.2s ease;
}

.back-to-top-float:hover svg {
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--green-wa);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  background-color: var(--green-wa-dark);
  color: #ffffff;
  transform: scale(1.1);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   PÁGINA COMO USAR (MANUAL DE USO IDÊNTICO AO ANEXO)
   ========================================================================== */
.manual-uso-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.manual-main-header {
  text-align: center;
  margin-bottom: 45px;
}

.manual-section-title {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.manual-row {
  display: grid;
  align-items: center;
  gap: 35px;
  margin: 35px 0;
}

.manual-three-cols {
  grid-template-columns: 1fr 1.3fr 1fr;
}

.manual-two-cols {
  grid-template-columns: 1fr 1.2fr;
}

.manual-two-cols.reverse-desktop {
  grid-template-columns: 1.2fr 1fr;
}

.manual-img-col {
  width: 100%;
}

.manual-img-col.stacked {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.manual-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.manual-img:hover {
  transform: scale(1.02);
}

.manual-text-col {
  padding: 10px 0;
}

.manual-text-col.text-center {
  text-align: center;
}

.manual-fp-badge {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #7A7A7A;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.manual-item-title {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #54595F;
  margin-bottom: 4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.manual-item-subtitle {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6EC1E4;
  margin-bottom: 12px;
  text-transform: lowercase;
}

.manual-item-desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #54595F;
  margin-bottom: 0;
}

.manual-divider {
  border: 0;
  height: 1px;
  background-color: #ECECEC;
  margin: 40px 0;
}
.manual-hero-banner {
  width: 100%;
  height: 930px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.manual-top-img {
  width: 100%;
  height: 930px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ==========================================================================
   COOKIE CONSENT & TERMS OF USE BANNER (LGPD)
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f8fafc;
  padding: 16px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-consent-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: 1200px;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.cookie-icon {
  flex-shrink: 0;
  color: #6EC1E4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.cookie-text p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0;
}

.cookie-link {
  color: #6EC1E4;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: #ffffff;
}

.cookie-consent-actions {
  flex-shrink: 0;
}

.btn-cookie-accept {
  background-color: #1F91C2;
  color: #ffffff;
  border: none;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(31, 145, 194, 0.35);
  transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
  background-color: #177ba6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 145, 194, 0.5);
}

/* Modal de Termos */
.terms-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.terms-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.terms-modal-box {
  background: #ffffff;
  color: #334155;
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.terms-modal-overlay.active .terms-modal-box {
  transform: scale(1);
}

.terms-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.terms-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.terms-modal-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
}

.terms-modal-close:hover {
  color: #0f172a;
}

.terms-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}

.terms-modal-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 16px;
  margin-bottom: 6px;
}

.terms-modal-body h4:first-child {
  margin-top: 0;
}

.terms-modal-footer {
  padding: 15px 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  background-color: #f8fafc;
}

@media (max-width: 768px) {
  .cookie-consent-container {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 15px;
  }
  .cookie-consent-actions {
    display: flex;
  }
  .btn-cookie-accept {
    width: 100%;
    text-align: center;
  }
}