
/* =========================================================
   TOTALVET HOME / INDEX - CSS PARA BETHEME + BEBUILDER
   Cole em: Betheme > Theme Options > Custom CSS
   ou Aparência > Personalizar > CSS adicional
   ========================================================= */

:root {
  --tv-bordo: #7b1328;
  --tv-bordo-escuro: #4a0915;
  --tv-bordo-2: #5b0d1c;
  --tv-verde: #2e8b57;
  --tv-verde-escuro: #237246;
  --tv-texto: #2b1b1f;
  --tv-cinza: #f8f5f6;
  --tv-branco: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--tv-texto);
}

.tv-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.tv-header {
  background: #fff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 18px rgba(55,18,28,.05);
}

.tv-header-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tv-logo img {
  max-height: 42px;
  width: auto;
  display: block;
}

.tv-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.tv-menu a {
  font-size: 12px;
  font-weight: 900;
  color: #40131d;
  text-transform: uppercase;
  letter-spacing: .6px;
  text-decoration: none;
}

.tv-menu a:hover {
  color: var(--tv-bordo);
}

.tv-header-btn,
.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tv-header-btn {
  background: var(--tv-bordo);
  color: #fff !important;
}

.tv-header-btn:hover,
.tv-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 25px rgba(55,18,28,.18);
}

/* HERO */
.tv-hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--tv-bordo);
  background-size: cover;
  background-position: center;
}

.tv-hero-content {
  max-width: 610px;
  padding: 120px 0 140px;
}

.tv-pill {
  display: inline-block;
  background: rgba(255,255,255,.22);
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.tv-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
  font-weight: 950;
  margin: 0 0 20px;
  letter-spacing: -1.2px;
}

.tv-hero p {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1.55;
  max-width: 565px;
  margin: 0 0 28px;
}

.tv-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tv-btn-primary {
  background: #fff;
  color: var(--tv-bordo) !important;
}

.tv-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.75);
}

/* LOCATION BAR */
.tv-location-bar {
  background: var(--tv-bordo);
  color: #fff;
  padding: 24px 0;
}

.tv-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 720px;
  margin: 0 auto;
}

.tv-location-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tv-location-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  flex: 0 0 auto;
}

.tv-location-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.tv-location-item span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.25;
  margin-top: 4px;
}

/* SECTIONS */
.tv-section {
  padding: 92px 0;
}

.tv-section-soft {
  background: var(--tv-cinza);
}

.tv-label {
  display: block;
  color: var(--tv-verde);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tv-center {
  text-align: center;
}

.tv-section-title {
  color: var(--tv-bordo);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.6px;
  margin: 0 0 18px;
}

.tv-section-desc {
  color: #6a5d62;
  max-width: 630px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.65;
}

/* ABOUT */
.tv-about-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 72px;
}

.tv-about-text p {
  color: #4b3f43;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.tv-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.tv-stat {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(55,18,28,.08);
  border-top: 4px solid var(--tv-bordo);
}

.tv-stat strong {
  display: block;
  color: var(--tv-bordo);
  font-size: 29px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 9px;
}

.tv-stat span {
  color: #685b60;
  font-size: 13px;
  line-height: 1.35;
}

.tv-about-image {
  position: relative;
}

.tv-about-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(55,18,28,.12);
}

.tv-image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: var(--tv-verde);
  color: #fff;
  border-radius: 16px;
  padding: 13px 18px;
  box-shadow: 0 12px 25px rgba(35,114,70,.25);
}

.tv-image-badge strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.tv-image-badge span {
  display: block;
  font-size: 12px;
  opacity: .85;
  margin-top: 5px;
}

/* UNITS */
.tv-units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.tv-unit-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(55,18,28,.10);
  text-align: left;
}

.tv-unit-head {
  padding: 32px;
  color: #fff;
}

.tv-unit-sp .tv-unit-head {
  background: var(--tv-bordo);
}

.tv-unit-gua .tv-unit-head {
  background: var(--tv-verde);
}

.tv-unit-head span {
  display: inline-block;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .6px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 18px;
  color: #fff;
}

.tv-unit-head h3 {
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 8px;
}

.tv-unit-head p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.tv-unit-body {
  padding: 32px;
}

.tv-unit-body h4 {
  color: var(--tv-bordo);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px;
}

.tv-unit-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.tv-unit-body li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 10px;
  color: #3f3438;
  font-size: 15px;
  line-height: 1.25;
}

.tv-unit-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--tv-bordo);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 900;
}

.tv-unit-gua .tv-unit-body li::before {
  background: var(--tv-verde);
}

.tv-unit-btn {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff !important;
  background: var(--tv-bordo);
  border-radius: 9px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
}

.tv-unit-gua .tv-unit-btn {
  background: var(--tv-verde);
}

/* SPECIALTIES */
.tv-specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tv-specialty-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(55,18,28,.07);
  text-align: left;
  border: 1px solid rgba(123,19,40,.06);
}

.tv-specialty-card h3 {
  color: var(--tv-bordo);
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 10px;
}

.tv-specialty-card p {
  color: #6b5e63;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.tv-specialty-card a {
  color: var(--tv-verde);
  font-weight: 900;
  text-decoration: none;
  font-size: 13px;
}

/* DIFFERENTIALS */
.tv-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tv-diff-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 28px;
  box-shadow: 0 14px 35px rgba(55,18,28,.07);
  text-align: center;
}

.tv-icon {
  width: 52px;
  height: 52px;
  background: #f6e8ec;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 25px;
}

.tv-diff-card h3 {
  color: var(--tv-bordo);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 950;
  margin: 0 0 12px;
}

.tv-diff-card p {
  color: #6b5e63;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* CTA */
.tv-final-cta {
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.10), transparent 28%), linear-gradient(135deg, var(--tv-bordo), var(--tv-bordo-2));
  padding: 84px 0;
  text-align: center;
}

.tv-final-cta h2 {
  color: #fff;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 950;
  letter-spacing: -.5px;
  margin: 0 0 14px;
}

.tv-final-cta p {
  color: rgba(255,255,255,.78);
  margin: 0 0 30px;
  font-size: 16px;
}

/* FOOTER */
.tv-footer {
  background: var(--tv-bordo-escuro);
  color: rgba(255,255,255,.72);
  padding: 70px 0 30px;
}

.tv-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tv-footer-logo img {
  width: 72px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 18px;
  background: #fff;
}

.tv-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px;
}

.tv-footer p,
.tv-footer li {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}

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

.tv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 46px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.50);
  font-size: 12px;
}

/* MOBILE */
@media only screen and (max-width: 767px) {
  .tv-container {
    width: min(100% - 32px, 480px);
  }

  .tv-header {
    padding: 8px 0;
  }

  .tv-header-inner {
    gap: 12px;
  }

  .tv-logo img {
    max-height: 34px;
  }

  .tv-menu {
    display: none;
  }

  .tv-header-btn {
    min-height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .tv-hero {
    min-height: 630px;
    background-image: linear-gradient(180deg, rgba(123,19,40,.90) 0%, rgba(123,19,40,.76) 48%, rgba(123,19,40,.42) 100%), var(--tv-hero-image);
    background-position: center top;
  }

  .tv-hero-content {
    max-width: 100%;
    padding: 74px 0 78px;
  }

  .tv-pill {
    font-size: 10px;
    padding: 7px 14px;
  }

  .tv-hero h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -.8px;
  }

  .tv-hero p {
    font-size: 15px;
    max-width: 340px;
  }

  .tv-btns {
    display: block;
  }

  .tv-btn {
    width: fit-content;
    min-height: 40px;
    padding: 0 22px;
    margin-bottom: 11px;
  }

  .tv-location-bar {
    padding: 24px 0;
  }

  .tv-location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 280px;
  }

  .tv-section {
    padding: 62px 0;
  }

  .tv-section-title {
    font-size: 30px;
  }

  .tv-section-desc {
    margin-bottom: 34px;
    font-size: 14px;
  }

  .tv-about-grid,
  .tv-units-grid,
  .tv-specialties-grid,
  .tv-diff-grid,
  .tv-footer-grid {
    grid-template-columns: 1fr;
  }

  .tv-about-grid {
    gap: 36px;
  }

  .tv-about-image {
    order: -1;
  }

  .tv-about-text p {
    font-size: 14px;
  }

  .tv-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tv-stat {
    padding: 19px 12px;
  }

  .tv-stat strong {
    font-size: 24px;
  }

  .tv-stat span {
    font-size: 11px;
  }

  .tv-unit-head,
  .tv-unit-body {
    padding: 25px;
  }

  .tv-specialty-card,
  .tv-diff-card {
    padding: 28px 22px;
  }

  .tv-final-cta {
    padding: 62px 0;
  }

  .tv-final-cta h2 {
    font-size: 30px;
  }

  .tv-final-cta .tv-btn {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .tv-footer {
    padding: 54px 0 28px;
  }

  .tv-footer-grid {
    gap: 34px;
  }

  .tv-footer-bottom {
    display: block;
  }

  .tv-footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}


/* =========================================================
   ADAPTAÇÃO PARA BETHEME / BEBUILDER EXPORT NATIVO V3
   Este trecho ajusta o CSS original para a marcação gerada pelo BeBuilder.
   ========================================================= */

.tv-header .section_wrapper,
.tv-location-bar .section_wrapper,
.tv-final-cta .section_wrapper,
.tv-footer .section_wrapper,
.tv-hero .section_wrapper {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.tv-header .section_wrapper {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tv-header .mcb-wrap-inner,
.tv-menu .mcb-column-inner,
.tv-header-action .mcb-wrap-inner {
  display: flex;
  align-items: center;
}

.tv-menu .column_attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: 100%;
}

.tv-header-action .mcb-wrap-inner {
  justify-content: flex-end;
}

.tv-header-btn .button,
.tv-btn .button,
.tv-unit-btn .button {
  border-radius: 999px !important;
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding-left: 24px !important;
  padding-right: 24px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.tv-btn-outline .button {
  border: 1px solid rgba(255,255,255,.75) !important;
}

.tv-hero {
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center center !important;
}

.tv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(123,19,40,.88) 0%, rgba(123,19,40,.64) 38%, rgba(123,19,40,.20) 72%, rgba(255,255,255,.12) 100%);
  z-index: 1;
  pointer-events: none;
}

.tv-hero .section_wrapper,
.tv-hero .mcb-wrap,
.tv-hero .mcb-wrap-inner,
.tv-hero .mcb-item-column,
.tv-hero .mcb-column-inner {
  position: relative;
  z-index: 2;
}

.tv-location-bar .section_wrapper {
  max-width: 720px;
  display: flex !important;
  gap: 36px;
}

.tv-location-item .column_attr {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tv-section .section_wrapper {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.tv-stats > .mcb-wrap-inner {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.tv-stat > .mcb-wrap-inner {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(55,18,28,.08);
  border-top: 4px solid var(--tv-bordo);
}

.tv-about-image .image_frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(55,18,28,.12);
}

.tv-unit-card > .mcb-wrap-inner {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(55,18,28,.10);
}

.tv-unit-head .column_attr {
  padding: 32px;
  color: #fff;
}

.tv-unit-sp .tv-unit-head .column_attr { background: var(--tv-bordo); }
.tv-unit-gua .tv-unit-head .column_attr { background: var(--tv-verde); }

.tv-unit-body .column_attr {
  padding: 32px 32px 0;
}

.tv-unit-btn .button {
  width: calc(100% - 64px) !important;
  margin: 0 32px 32px !important;
  border-radius: 9px !important;
}

.tv-specialty-card > .mcb-wrap-inner,
.tv-diff-card > .mcb-wrap-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(55,18,28,.07);
  border: 1px solid rgba(123,19,40,.06);
  height: 100%;
}

.tv-specialty-card > .mcb-wrap-inner { padding: 28px; }
.tv-diff-card > .mcb-wrap-inner { padding: 34px 28px; text-align: center; }

.tv-final-cta {
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.10), transparent 28%), linear-gradient(135deg, var(--tv-bordo), var(--tv-bordo-2)) !important;
}

.tv-footer .section_wrapper {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0;
}

.tv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 46px;
  padding-top: 22px;
}

.tv-footer-bottom .column_attr {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .tv-header .section_wrapper,
  .tv-location-bar .section_wrapper,
  .tv-final-cta .section_wrapper,
  .tv-footer .section_wrapper,
  .tv-hero .section_wrapper,
  .tv-section .section_wrapper {
    width: min(100% - 32px, 480px);
  }

  .tv-menu { display: none !important; }

  .tv-hero::before {
    background: linear-gradient(180deg, rgba(123,19,40,.90) 0%, rgba(123,19,40,.76) 48%, rgba(123,19,40,.42) 100%);
  }

  .tv-location-bar .section_wrapper {
    display: block !important;
    max-width: 280px;
  }

  .tv-location-item .column_attr { margin-bottom: 20px; }

  .tv-stats > .mcb-wrap-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tv-footer-bottom .column_attr {
    display: block;
  }

  .tv-footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}
