/* =========================================================
   DOCE CUIDADO • DESIGN SYSTEM
   Arquitetura CSS Base
   Stack: Bootstrap 5 + CSS Custom Properties
========================================================= */



html,
body {
  overflow-x: hidden;
}


:root {

  /* =========================================================
       PALETA PRINCIPAL
    ========================================================= */
  --dc-primary: #13506c;
  --dc-secondary: #3a9196;
  --dc-accent: #6ebfac;

  /* =========================================================
       VARIAÇÕES DE CORES
    ========================================================= */
  --dc-primary-light: #1b6a8f;
  --dc-primary-dark: #0d3b50;

  --dc-secondary-light: #4ea7ac;
  --dc-secondary-dark: #2c7276;

  --dc-accent-light: #8ad3c0;
  --dc-accent-dark: #55a48f;

  /* =========================================================
       CORES NEUTRAS
    ========================================================= */
  --dc-white: #ffffff;
  --dc-light: #f6fbfc;
  --dc-light-gray: #eef4f5;
  --dc-border: #dbe7ea;

  --dc-text: #31434d;
  --dc-text-light: #6c7c84;
  --dc-heading: #12384a;

  --dc-black: #0f1720;

  /* =========================================================
       TIPOGRAFIA
    ========================================================= */
  --dc-font-heading: 'Oswald', sans-serif;
  --dc-font-body: 'Poppins', sans-serif;

  
  /* =========================================================
       TAMANHOS
    ========================================================= */
  --dc-fs-xs: 0.75rem;
  --dc-fs-sm: 0.875rem;
  --dc-fs-base: 1rem;
  --dc-fs-lg: 1.125rem;
  --dc-fs-xl: 1.25rem;

  --dc-fs-h1: clamp(2.8rem, 6vw, 5rem);
  --dc-fs-h2: clamp(2.2rem, 4vw, 3.5rem);
  --dc-fs-h3: clamp(1.8rem, 3vw, 2.5rem);
  --dc-fs-h4: 1.5rem;

  /* =========================================================
       ESPAÇAMENTOS
    ========================================================= */
  --dc-section-padding: 6rem;
  --dc-section-padding-mobile: 4rem;

  --dc-radius-sm: 0.5rem;
  --dc-radius-md: 1rem;
  --dc-radius-lg: 1.5rem;
  --dc-radius-xl: 2rem;
  --dc-radius-pill: 999px;

  /* =========================================================
       SOMBRAS
    ========================================================= */
  --dc-shadow-sm: 0 4px 15px rgba(19, 80, 108, 0.08);
  --dc-shadow-md: 0 10px 30px rgba(19, 80, 108, 0.12);
  --dc-shadow-lg: 0 20px 50px rgba(19, 80, 108, 0.15);

  /* =========================================================
       TRANSIÇÕES
    ========================================================= */
  --dc-transition-fast: 0.25s ease;
  --dc-transition-base: 0.35s ease;
  --dc-transition-slow: 0.5s ease;

  /* =========================================================
       HEADER
    ========================================================= */
  --dc-header-height: 90px;
  --dc-topbar-height: 52px;

  /* =========================================================
       Z-INDEX PADRONIZADO
    ========================================================= */
  --dc-z-dropdown: 1000;
  --dc-z-sticky: 1020;
  --dc-z-fixed: 1030;
  --dc-z-offcanvas: 1045;
  --dc-z-modal: 1055;

}


/* =========================================================
   RESET BASE
========================================================= */



html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;

  font-family: var(--dc-font-body);
  font-size: var(--dc-fs-base);
  line-height: 1.7;

  color: var(--dc-text);
  background-color: var(--dc-white);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}


/* =========================================================
   TIPOGRAFIA GLOBAL
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;

  font-family: var(--dc-font-heading);
  
  line-height: 1.2;
  letter-spacing: 0.5px;

  color: var(--dc-heading);
}

h1 {
  font-size: var(--dc-fs-h1);
}

h2 {
  font-size: var(--dc-fs-h2);
}

h3 {
  font-size: var(--dc-fs-h3);
}

h4 {
  font-size: var(--dc-fs-h4);
}

p {
  margin-bottom: 1rem;

  color: var(--dc-text-light);
}

a {
  text-decoration: none;

  transition: var(--dc-transition-fast);
}

img {
  display: block;
  max-width: 100%;
}


/* =========================================================
   UTILITÁRIOS CUSTOM
========================================================= */

.dc-section {
  padding-block: var(--dc-section-padding);
}

.dc-section-title {
  margin-bottom: 1rem;
}

.dc-section-subtitle {
  max-width: 700px;

  margin-inline: auto;
}

.dc-bg-light {
  background-color: var(--dc-light);
}

.dc-shadow {
  box-shadow: var(--dc-shadow-md);
}

.dc-radius {
  border-radius: var(--dc-radius-lg);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  overflow: hidden;

  padding: 0.95rem 2rem;

  border: none;
  border-radius: var(--dc-radius-pill);

  font-weight: 600;
  letter-spacing: 0.02em;

  transition:
    transform var(--dc-transition-base),
    box-shadow var(--dc-transition-base),
    background var(--dc-transition-base);
}


/* =========================================================
   PLUS ICON
========================================================= */

.btn::after {
  content: '+';

  font-size: 1rem;
  font-weight: 700;

  transition:
    transform var(--dc-transition-base),
    opacity var(--dc-transition-base);
}


/* =========================================================
   PRIMARY
========================================================= */

.btn-primary {
  color: var(--dc-white);

  background:
    linear-gradient(135deg,
      var(--dc-primary),
      var(--dc-secondary));

  box-shadow:
    0 10px 30px rgba(19, 80, 108, 0.25);
}


/* HOVER */
.btn-primary:hover {
  transform: translateY(-4px);

  background:
    linear-gradient(135deg,
      var(--dc-primary-dark),
      var(--dc-secondary));

  box-shadow:
    0 18px 40px rgba(19, 80, 108, 0.35);
}


/* PLUS ANIMATION */
.btn:hover::after {
  transform: rotate(90deg) scale(1.15);
}


/* =========================================================
   OUTLINE
========================================================= */

.btn-outline-primary {
  border: 1px solid rgba(19, 80, 108, 0.15);

  color: var(--dc-primary);

  background:
    linear-gradient(135deg,
      rgba(19, 80, 108, 0.04),
      rgba(58, 145, 150, 0.06));

  backdrop-filter: blur(10px);
}


/* HOVER */
.btn-outline-primary:hover {
  color: var(--dc-white);

  transform: translateY(-4px);

  border-color: transparent;

  background:
    linear-gradient(135deg,
      var(--dc-primary),
      var(--dc-secondary));

  box-shadow:
    0 18px 40px rgba(19, 80, 108, 0.25);
}

/* =========================================================
   SWIPER CUSTOM BASE
========================================================= */

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  opacity: 1;

  background-color: rgba(19, 80, 108, 0.25);
}

.swiper-pagination-bullet-active {
  background-color: var(--dc-primary);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--dc-primary);
}


/* =========================================================
   AOS FIX
========================================================= */

[data-aos] {
  will-change: transform, opacity;
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 991.98px) {

  :root {
    --dc-section-padding: var(--dc-section-padding-mobile);
  }

}

/* =========================================================
   TOPBAR
========================================================= */

/* =========================================================
   TOPBAR
========================================================= */

.dc-topbar {
  font-family: var(--dc-font-heading);

  position: fixed;
  top: 0;
  left: 0;

  z-index: var(--dc-z-fixed);

  width: 100%;
  height: var(--dc-topbar-height);

  background-color: var(--dc-primary);

  transition:
    transform var(--dc-transition-base),
    opacity var(--dc-transition-base);
}


/* CONTAINER */
.dc-topbar .container,
.dc-topbar .row {
  height: 100%;
}


/* ALIGN */
.dc-topbar .row {
  align-items: center;
}

.dc-topbar .nav-link,
.dc-topbar-text {
  font-size: var(--dc-fs-xs);
 

  color: rgba(255, 255, 255, 0.85);
}

.dc-topbar .nav-link:hover {
  color: var(--dc-white);
}


/* =========================================================
   HEADER
========================================================= */
body {
  padding-top: calc(var(--dc-header-height) + var(--dc-topbar-height));
}


body.dc-hide-topbar .dc-header {
  top: 0;
}

.dc-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);

  box-shadow: var(--dc-shadow-sm);
}

body.dc-hide-topbar {
  padding-top: var(--dc-header-height);
}

.dc-header {
  position: fixed;
  top: var(--dc-topbar-height);
  left: 0;

  z-index: var(--dc-z-fixed);

  width: 100%;

  background-color: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(12px);

  transition:
    top var(--dc-transition-base),
    background-color var(--dc-transition-base),
    box-shadow var(--dc-transition-base);
}

.dc-header-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  min-height: var(--dc-header-height);
}

/* =========================================================
   MENU LINKS
========================================================= */

.dc-menu-link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  width: fit-content;

  padding-left: 0;

  font-family: var(--dc-font-heading);
  font-size: 1rem;
  
  letter-spacing: 0.5px;

  color: var(--dc-heading);

  transition:
    color var(--dc-transition-base),
    transform var(--dc-transition-base);
}


/* PLUS ICON */
.dc-menu-link::before {
  content: '+';

  font-size: 1rem;

  color: var(--dc-accent);

  transform: scale(0.6);

  opacity: 0;

  transition:
    transform var(--dc-transition-base),
    opacity var(--dc-transition-base);
}


/* LINE */
.dc-menu-link::after {
  content: '';

  position: absolute;
  bottom: -6px;
  left: 1.7rem;

  width: 0;
  height: 2px;

  border-radius: var(--dc-radius-pill);

  background-color: var(--dc-accent);

  transition: width var(--dc-transition-base);
}


/* HOVER */
.dc-menu-link:hover {
  transform: translateX(4px);

  color: var(--dc-primary);
}

.dc-menu-link:hover::before {
  transform: scale(1);

  opacity: 1;
}

.dc-menu-link:hover::after {
  width: calc(100% - 1.7rem);
}

/* =========================================================
   LOGO
========================================================= */



.dc-logo img {
  width: 120px;

  transition: transform var(--dc-transition-base);
}

.dc-logo:hover img {
  transform: scale(1.03);
}


/* =========================================================
   MENU BUTTON
========================================================= */

.dc-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  width: 52px;
  height: 52px;

  padding: 0;

  border: 0;
  border-radius: var(--dc-radius-pill);

  background-color: transparent;

  transition: var(--dc-transition-base);
}

.dc-menu-toggle:hover {
  background-color: rgba(19, 80, 108, 0.08);
}

.dc-menu-toggle span {
  width: 24px;
  height: 2px;

  margin-inline: auto;

  border-radius: var(--dc-radius-pill);

  background-color: var(--dc-primary);

  transition: var(--dc-transition-fast);
}


/* =========================================================
   SOCIAL
========================================================= */


.dc-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  width: 42px;
  height: 42px;

  padding: 0;

  border-radius: 50%;

  line-height: 1;

  color: var(--dc-white);

  background-color: var(--dc-accent);

  transition:
    background-color var(--dc-transition-base),
    color var(--dc-transition-base),
    transform var(--dc-transition-base);
}

.dc-social a:hover {
  transform: translateY(-3px);

  color: var(--dc-white);
  background-color: var(--dc-primary);
}

.dc-social i {
  font-size: 1rem;
}

/* =========================================================
   OFFCANVAS
========================================================= */
.offcanvas {
  max-width: 320px;

  border-right: 0;

  background-color: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(14px);

  box-shadow: var(--dc-shadow-lg);
}

.dc-menu-toggle.is-active span:nth-child(1) {
  transform:
    translateY(8px) rotate(45deg);
}

.dc-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.dc-menu-toggle.is-active span:nth-child(3) {
  transform:
    translateY(-8px) rotate(-45deg);
}

.dc-header {
  padding-block: 0.35rem;
}

.dc-header.is-scrolled {
  padding-block: 0.15rem;
}


.offcanvas .nav-link {
  position: relative;
  padding-block: 0.75rem;

  font-size: 1.1rem;
 

  color: var(--dc-heading);
}

.offcanvas .nav-link:hover {
  color: var(--dc-primary);
}


/* =========================================================
   SCROLL EFFECT
========================================================= */

.dc-hide-topbar .dc-topbar {
  transform: translateY(-100%);

  opacity: 0;
  visibility: hidden;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .dc-header-wrapper {
    grid-template-columns: 70px 1fr 70px;
  }

  .dc-logo img {
    width: 80px;
  }

  .dc-social a {
    width: 38px;
    height: 38px;
  }

}
/* =========================================================
   OFFCANVAS
========================================================= */

.offcanvas {

    display: flex;

    flex-direction: column;

    width: min(100%, 380px);

    border-right: 0;

    background-color:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);

    box-shadow: var(--dc-shadow-lg);
}


/* =========================================================
   OFFCANVAS BODY
========================================================= */

.offcanvas-body {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 1;
}


/* =========================================================
   MENU NAV
========================================================= */

.offcanvas .navbar-nav {

    align-items: center;

    justify-content: center;

    text-align: center;

    min-height: 100%;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.dc-section-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  margin-bottom: 1.25rem;

  font-family: var(--dc-font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
 
  line-height: 1.1;

  color: var(--dc-heading);

  letter-spacing: 0.5px;
}

.dc-section-heading span {
  color: var(--dc-accent);
}


/* =========================================================
   SEPARATOR
========================================================= */

.dc-separator {
  position: relative;

  width: 90px;
  height: 4px;

  border-radius: var(--dc-radius-pill);

  background-color: var(--dc-accent);

  overflow: hidden;
}

.dc-separator::before {
  content: '';

  position: absolute;
  top: 0;
  left: -40%;

  width: 40%;
  height: 100%;

  background-color: rgba(255, 255, 255, 0.45);

  animation: dcSeparatorMove 2.5s linear infinite;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes dcSeparatorMove {

  100% {
    left: 120%;
  }

}


/* =========================================================
   FOOTER
========================================================= */

.dc-footer-link,
.dc-footer-info {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  font-size: 14px;

  color: rgba(255, 255, 255, 0.72);

  transition:
    color var(--dc-transition-base),
    transform var(--dc-transition-base);
}

.dc-footer-info i,
.dc-footer-link i {
  flex-shrink: 0;

  font-size: 1rem;

  color: var(--dc-primary-light);
}


.dc-footer {
  position: relative;

  overflow: hidden;

  background-color: var(--dc-primary-dark);

  color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   TOP
========================================================= */

.dc-footer-top {
  padding-block: 5rem 3rem;
}


/* =========================================================
   LOGO
========================================================= */

.dc-footer-logo {
  width: 160px;
}


/* =========================================================
   TEXT
========================================================= */

.dc-footer-text {
  max-width: 320px;

  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

/* =========================================================
   FOOTER NAV LINKS
========================================================= */

.dc-footer-link {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  transition:
    color var(--dc-transition-base),
    transform var(--dc-transition-base);
}


/* PLUS */
.dc-footer-link::before {
  content: '+';

  opacity: 0;

  transform: translateX(-6px);

  color: var(--dc-accent);

  transition:
    opacity var(--dc-transition-base),
    transform var(--dc-transition-base);
}


/* HOVER */
.dc-footer-link:hover {
  transform: translateX(4px);

  color: var(--dc-white);
}

.dc-footer-link:hover::before {
  opacity: 1;

  transform: translateX(0);
}

/* =========================================================
   TITLES
========================================================= */

.dc-footer-title {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  margin-bottom: 1.75rem;

  font-size: 1.35rem;
  font-family: var(--dc-font-heading);


  color: var(--dc-white);
}

.dc-footer-title::before {
  content: '+';

  color: var(--dc-accent);
}

.footer-icon i{
  color: var(--dc-accent);
}

/* =========================================================
   LINKS
========================================================= */

.dc-footer-link,
.dc-footer-info {
  display: inline-flex;
  align-items: center;
  font-size: 14px;

  color: rgba(255, 255, 255, 0.72);

  transition:
    color var(--dc-transition-base),
    transform var(--dc-transition-base);
}

.dc-footer-link:hover {
  transform: translateX(4px);

  color: var(--dc-white);
}


/* =========================================================
   SOCIAL
========================================================= */

.dc-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  color: var(--dc-white);

  background-color: var(--dc-accent);

  transition:
    background-color var(--dc-transition-base),
    transform var(--dc-transition-base);
}

.dc-footer-social:hover {
  transform:
    translateY(-3px) scale(1.05);

  background-color: var(--dc-primary-dark);
}


/* =========================================================
   BOTTOM
========================================================= */

/* =========================================================
   BOTTOM
========================================================= */

.dc-footer-bottom {
  position: relative;

  padding-block: 1.5rem;

  background-color: rgba(0, 0, 0, 0.12);

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.dc-footer-copy {
  font-size: 12px;

  color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .dc-footer-top {
    padding-block: 4rem 2.5rem;
  }

  .dc-footer-logo {
    width: 135px;
  }

}
@media (max-width: 991.98px) {

  .dc-hero {
    height: 120dvh;
    min-height: 120dvh;
  }

  .dc-hero-content {
    padding-block: 4rem 2rem;
  }

  .dc-hero-title {
    font-size: 2rem;
    line-height: 1;
  }

  .dc-hero-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .dc-hero .row.g-4.mt-5 {
    margin-top: 2rem !important;
  }

}

@media (max-width: 991.98px) {

  .dc-hero-buttons {
    display: none !important;
  }

}
/* =========================================================
   CONTACT ICONS
========================================================= */

.dc-footer-info i,
.dc-footer-link i {
  color: var(--dc-accent);
}

.dc-footer-title::before,
.dc-footer-info i,
.dc-footer-link i {
  text-shadow: 0 0 10px rgba(109, 191, 170, 0.25);
}

.dc-footer::before {
  content: '';

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      rgba(109, 191, 170, 0.45),
      transparent);
}

/* =========================================================
   HERO
========================================================= */

.dc-hero {
  position: relative;

  height: 85vh;

  overflow: hidden;
}


/* =========================================================
   SWIPER
========================================================= */

.dc-hero-slider,
.dc-hero-slider .swiper-wrapper,
.dc-hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.dc-hero-bg {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.05);

  animation: dcHeroZoom 12s linear infinite;
}


/* =========================================================
   OVERLAY
========================================================= */

.dc-hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(7, 22, 32, 0.88) 0%,
      rgba(7, 22, 32, 0.70) 40%,
      rgba(7, 22, 32, 0.40) 100%
    );
}


/* =========================================================
   CONTENT
========================================================= */

.dc-hero-content {
  position: absolute;
  inset: 0;

  z-index: 3;

  display: flex;
  align-items: center;
}


/* CONTAINER */
.dc-hero-content .container {
  position: relative;

  z-index: 4;
}


/* =========================================================
   ROW
========================================================= */

.dc-hero-row {
  min-height: 85vh;
}


/* =========================================================
   TITLE
========================================================= */

.dc-hero-title {
  margin-bottom: 1.5rem;

  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;

  color: var(--dc-white);
}


/* =========================================================
   TEXT
========================================================= */

.dc-hero-text {
  max-width: 620px;

  margin-bottom: 2rem;

  font-size: 1.05rem;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   BADGE
========================================================= */

.dc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  margin-bottom: 1.5rem;

  padding:
    0.75rem 1.2rem;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: var(--dc-radius-pill);

  backdrop-filter: blur(12px);

  background:
    rgba(255, 255, 255, 0.08);

  color: var(--dc-white);
}


/* =========================================================
   INFO
========================================================= */

.dc-hero-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  color: rgba(255, 255, 255, 0.85);
}

.dc-hero-info i {
  color: var(--dc-accent);
}


/* =========================================================
   PAGINATION
========================================================= */

.dc-hero .swiper-pagination {
  bottom: 40px !important;

  z-index: 5;
}

.dc-hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  opacity: 1;

  background-color:
    rgba(255, 255, 255, 0.35);

  transition:
    all var(--dc-transition-base);
}

.dc-hero .swiper-pagination-bullet-active {
  width: 28px;

  border-radius: 999px;

  background-color: var(--dc-accent);
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes dcHeroZoom {

  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }

}


@media (max-width: 991.98px) {

  .dc-hero {
    height: 100vh;
    min-height: 100vh;
  }

  .dc-hero-row {
    min-height: 100vh;
  }

  .dc-hero-bg {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .dc-hero-content {
    padding-block: 6rem 3rem; /* ajusta o texto sem quebrar o fullscreen */
  }
}
/* =========================================================
   SERVICES
========================================================= */

.dc-service-card {
  position: relative;

  overflow: hidden;

  border-radius: var(--dc-radius-2xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-sm);

  transition:
    transform var(--dc-transition-base),
    box-shadow var(--dc-transition-base);
}

.dc-service-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--dc-shadow-lg);
}


/* IMAGE */
.dc-service-image {
  overflow: hidden;

  aspect-ratio: 16 / 10;
}

.dc-service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.dc-service-card:hover .dc-service-image img {
  transform: scale(1.08);
}


/* CONTENT */
.dc-service-content {
  position: relative;

  padding: 2rem;
}


/* ICON */
.dc-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;

  margin-bottom: 1.5rem;

  border-radius: 50%;

  font-size: 1.4rem;

  color: var(--dc-accent);

  background-color: rgba(109, 191, 170, 0.12);
}


/* TITLE */
.dc-service-title {
  margin-bottom: 1rem;

  line-height: 1.2;
}

.dc-service-title span {
  display: block;

  color: var(--dc-accent);
}


/* =========================================================
   FEATURES
========================================================= */

.dc-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 1rem 1.25rem;

  border-radius: var(--dc-radius-xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-sm);
}

.dc-feature-item i {
  font-size: 1.2rem;

  color: var(--dc-accent);
}


/* =========================================================
   COUNTERS
========================================================= */

.dc-counter-card {
  padding: 2rem;

  border-radius: var(--dc-radius-2xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-sm);

  transition:
    transform var(--dc-transition-base),
    box-shadow var(--dc-transition-base);
}

.dc-counter-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--dc-shadow-md);
}

.dc-counter-number {
  margin-bottom: 0.5rem;

  font-size: clamp(2.2rem, 4vw, 3.5rem);

  color: var(--dc-primary);
}


/* =========================================================
   CTA
========================================================= */

.dc-cta-section {
  position: relative;

  overflow: hidden;

  padding-block: 6rem;

  background:
    linear-gradient(135deg,
      var(--dc-primary),
      #0d6a72);
}

.dc-cta-title {
  margin-bottom: 1.5rem;

  font-size: clamp(2.4rem, 5vw, 4rem);

  color: var(--dc-white);
}

.dc-cta-text {
  max-width: 650px;

  margin-inline: auto;
  margin-bottom: 2rem;

  color: rgba(255, 255, 255, 0.82);
}

/* =========================================================
   QUALITY SECTION
========================================================= */

.dc-quality-image-wrapper {
  position: relative;

  display: flex;
  justify-content: center;
}


/* SHAPE */
.dc-quality-shape {
  position: absolute;
  top: -40px;
  right: -40px;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(109, 191, 170, 0.18),
      transparent 70%);

  z-index: 1;
}


/* IMAGE */
.dc-quality-image {
  position: relative;
  z-index: 2;

  border-radius: var(--dc-radius-2xl);

  box-shadow: var(--dc-shadow-lg);

  object-fit: cover;
}


/* =========================================================
   QUALITY CARD
========================================================= */

.dc-quality-card {
  position: relative;

  padding: 2rem;

  overflow: hidden;

  border-radius: var(--dc-radius-2xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-sm);

  transition:
    transform var(--dc-transition-base),
    box-shadow var(--dc-transition-base);
}

.dc-quality-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--dc-shadow-lg);
}


/* ICON */
.dc-quality-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  margin-bottom: 1.5rem;

  border-radius: 50%;

  font-size: 1.5rem;

  color: var(--dc-accent);

  background-color: rgba(109, 191, 170, 0.12);

  transition:
    transform var(--dc-transition-base),
    background-color var(--dc-transition-base);
}

.dc-quality-card:hover .dc-quality-icon {
  transform: scale(1.08);

  background-color: rgba(109, 191, 170, 0.18);
}


/* TITLE */
.dc-quality-title {
  margin-bottom: 1rem;

  font-size: 1.6rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .dc-quality-image-wrapper {
    margin-top: 2rem;
  }

}

/* =========================================================
   PAGE HERO
========================================================= */

.dc-page-hero {
  position: relative;

  overflow: hidden;

  padding-block:
    12rem 7rem;

  background:
    linear-gradient(135deg,
      rgba(19, 80, 108, 0.96),
      rgba(58, 145, 150, 0.92));
}


/* TITLE */
.dc-page-title {
  margin-bottom: 1rem;

  font-size: clamp(3rem, 6vw, 5rem);

  color: var(--dc-white);
}

.dc-page-subtitle {
  display: inline-block;

  margin-bottom: 1rem;

  font-family: var(--dc-font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--dc-accent);
}

.dc-page-text {
  max-width: 650px;

  margin-inline: auto;

  color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   VALUE CARDS
========================================================= */

.dc-value-card {
  position: relative;

  padding: 3rem 2rem;

  overflow: hidden;

  border-radius: var(--dc-radius-2xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-sm);

  transition:
    transform var(--dc-transition-base),
    box-shadow var(--dc-transition-base);
}

.dc-value-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--dc-shadow-lg);
}


/* ICON */
.dc-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  margin-bottom: 1.5rem;

  border-radius: 50%;

  font-size: 1.5rem;

  color: var(--dc-accent);

  background-color: rgba(109, 191, 170, 0.12);
}


/* TITLE */
.dc-value-title {
  margin-bottom: 1rem;

  font-size: 2rem;
}

/* =========================================================
   CONTACT INFO
========================================================= */

.dc-contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 1.25rem;

  border-radius: var(--dc-radius-xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-sm);
}


/* ICON */
.dc-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  width: 60px;
  height: 60px;

  border-radius: 50%;

  font-size: 1.2rem;

  color: var(--dc-accent);

  background-color: rgba(109, 191, 170, 0.12);
}


/* TEXT */
.dc-contact-info small {
  display: block;

  margin-bottom: 0.35rem;

  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: var(--dc-text-muted);
}

.dc-contact-info a,
.dc-contact-info span {


  color: var(--dc-heading);
}


/* =========================================================
   FORM
========================================================= */

.dc-contact-form-wrapper {
  padding: 3rem;

  border-radius: var(--dc-radius-2xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-lg);
}


/* INPUT */
.dc-contact-form .form-control {
  border: 1px solid rgba(19, 80, 108, 0.12);

  border-radius: var(--dc-radius-lg);

  background-color: #f8fbfc;

  transition:
    border-color var(--dc-transition-base),
    box-shadow var(--dc-transition-base);
}

.dc-contact-form .form-control:focus {
  border-color: var(--dc-accent);

  box-shadow: 0 0 0 0.2rem rgba(109, 191, 170, 0.18);
}


/* =========================================================
   CTA
========================================================= */

.dc-contact-cta {
  padding-bottom: 6rem;
}

.dc-contact-cta-box {
  padding:
    4rem 2rem;

  border-radius: var(--dc-radius-2xl);

  background:
    linear-gradient(135deg,
      var(--dc-primary),
      #0d6a72);

  box-shadow: var(--dc-shadow-lg);
}


/* ICON */
.dc-contact-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 90px;
  height: 90px;

  margin-bottom: 2rem;

  border-radius: 50%;

  font-size: 2rem;

  color: var(--dc-white);

  background-color: rgba(255, 255, 255, 0.12);
}


/* TITLE */
.dc-contact-cta-title {
  max-width: 700px;

  margin-inline: auto;
  margin-bottom: 2rem;

  font-size: clamp(2rem, 5vw, 3.5rem);

  color: var(--dc-white);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .dc-contact-form-wrapper {
    padding: 2rem;
  }

}

/* =========================================================
   SERVICE CARD
========================================================= */

.dc-service-card {
  overflow: hidden;

  border-radius: var(--dc-radius-2xl);

  background-color: var(--dc-white);

  box-shadow: var(--dc-shadow-sm);

  transition:
    transform var(--dc-transition-base),
    box-shadow var(--dc-transition-base);
}

.dc-service-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--dc-shadow-lg);
}


/* IMAGE */
.dc-service-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 16 / 11;
}

.dc-service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.dc-service-card:hover .dc-service-image img {
  transform: scale(1.08);
}


/* CONTENT */
.dc-service-content {
  position: relative;

  padding: 2rem;
}


/* ICON */
.dc-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;

  margin-bottom: 1.5rem;

  border-radius: 50%;

  font-size: 1.4rem;

  color: var(--dc-primary);

  background-color: rgba(19, 80, 108, 0.08);
}


/* TITLE */
.dc-service-title {
  margin-bottom: 1rem;

  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

.dc-service-title span {
  display: block;

  color: var(--dc-accent);
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.dc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}


/* ICON */
.dc-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  width: 54px;
  height: 54px;

  border-radius: 50%;

  font-size: 1.1rem;

  color: var(--dc-accent);

  background-color: rgba(109, 191, 170, 0.12);
}


/* TITLE */
.dc-feature-item h3 {
  margin-bottom: 0.35rem;

  font-size: 1.1rem;
}

.dc-feature-item p {
  margin-bottom: 0;

  font-size: 0.95rem;
}

/* =========================================================
   CONTACT FORM
========================================================= */

.dc-contact-textarea {
  min-height: 180px !important;

  resize: none;
}


/* =========================================================
   HERO BADGE
========================================================= */

.dc-hero-badge {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  overflow: hidden;

  margin-bottom: 1.5rem;
  padding:
    0.85rem 1.4rem;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: var(--dc-radius-pill);

  backdrop-filter: blur(14px);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.05)
    );

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12);

  color: var(--dc-white);

  animation:
    dcBadgeFloat 4s ease-in-out infinite;
}


/* =========================================================
   ICON
========================================================= */

.dc-hero-badge i {
  color: var(--dc-accent);

  animation:
    dcBadgePulse 1.8s ease infinite;
}


/* =========================================================
   SHINE EFFECT
========================================================= */

.dc-hero-badge::before {
  content: '';

  position: absolute;
  top: 0;
  left: -120%;

  width: 80px;
  height: 100%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.25),
      transparent
    );

  transform: skewX(-25deg);

  animation:
    dcBadgeShine 5s linear infinite;
}


/* =========================================================
   FLOAT
========================================================= */

@keyframes dcBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

}


/* =========================================================
   PULSE
========================================================= */

@keyframes dcBadgePulse {

  0%,
  100% {
    transform: scale(1);

    opacity: 1;
  }

  50% {
    transform: scale(1.15);

    opacity: 0.8;
  }

}


/* =========================================================
   SHINE
========================================================= */

@keyframes dcBadgeShine {

  0% {
    left: -120%;
  }

  100% {
    left: 140%;
  }

}

/* =========================================================
   TOPBAR
========================================================= */

.dc-topbar {
  position: fixed;
  top: 0;
  left: 0;

  z-index: calc(var(--dc-z-fixed) + 1);

  width: 100%;
  height: var(--dc-topbar-height);

  display: flex;
  align-items: center;

  background-color: var(--dc-primary);

  color: var(--dc-white);

  transition:
    transform var(--dc-transition-base),
    opacity var(--dc-transition-base);
}

.dc-topbar .nav-link,
.dc-topbar-text {
  font-size: 0.8rem;

  letter-spacing: 0.6px;

  color: var(--dc-white);
}

.dc-topbar .nav-link {
  transition: opacity var(--dc-transition-fast);
}

.dc-topbar .nav-link:hover {
  opacity: 0.8;
}


/* =========================================================
   CNPJ MOBILE
========================================================= */

.dc-topbar-cnpj {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

  .dc-topbar {
    height: 38px;
  }

  .dc-topbar-text {
    font-size: 0.72rem;

    text-align: center;
  }

}

/* =========================================================
   HERO BUTTONS
========================================================= */

@media (max-width: 991.98px) {

  .dc-hero-actions {
    display: none !important;
  }

}