/* =============================================
   Matech Solution — Modern Stylesheet
   ============================================= */

@font-face {
  font-family: 'kodakku';
  src: url('../kodakku.ttf') format('truetype');
}

/* ---- Variables ---- */
:root {
  --primary: #E8735A;
  --primary-dark: #d45c42;
  --teal: #1BB8C5;
  --teal-dark: #0d8a96;
  --teal-light: #e4f7f9;
  --dark: #0a1628;
  --dark-2: #1a2942;
  --text: #374151;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Jost', sans-serif;
  color: var(--dark);
}

h1, .h1, h2, .h2, .fw-bold { font-weight: 700 !important; }
h3, .h3, h4, .h4, .fw-medium { font-weight: 600 !important; }
h5, .h5, h6, .h6, .fw-semi-bold { font-weight: 500 !important; }

/* ---- Spinner ---- */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: none;
  background: var(--primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--primary);
}

/* ---- Buttons ---- */
.btn { transition: var(--transition); font-weight: 500; }

.btn-primary,
.btn-outline-primary:hover {
  background: var(--primary);
  border: none;
  box-shadow: 0 0 0 1.5px var(--teal);
  padding: 11px 32px;
  border-radius: 50px !important;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(232,115,90,0.25);
  transition: var(--transition);
}
.btn-primary:hover,
.btn-dark:hover,
.btn-white.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,90,0.38);
}

.text_button { font-size: 16px; font-weight: 500; }

.btn-square  { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }
.btn-square, .btn-sm-square, .btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/* ---- Topbar ---- */
.bg_top {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal)) !important;
  color: #fff !important;
}
.bg-dark {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal)) !important;
  color: #fff !important;
}

/* ---- Navbar ---- */
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.with-conic-gradient {
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--teal)) 1;
}

.navbar .navbar-brand,
.navbar a.btn { height: 56px; }

.navbar img { width: 100px !important; }

.navbar .navbar-nav .nav-link {
  margin-right: 28px;
  padding: 28px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
}

.navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after { width: 100%; }

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active { color: var(--teal); }

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.nav-item { font-size: 16px !important; }

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link { margin-right: 0; padding: 12px 0; }
  .navbar .navbar-nav .nav-link::after { display: none; }
  .navbar .navbar-nav { border-top: 1px solid var(--border); }
  .navbar img { width: 90px !important; }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}

/* ---- Hero ---- */
#header-carousel .carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-caption {
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.78) 0%,
    rgba(31,157,171,0.42) 100%
  );
  z-index: 1;
}

.slide_text {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.slide_text3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.carousel-control-prev,
.carousel-control-next { width: 10%; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--teal);
  border: 10px solid var(--teal);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item { position: relative; min-height: 500px; }
  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .slide_text  { font-size: 26px !important; }
  .slide_text3 { font-size: 22px !important; }
}

/* ---- Top Feature ---- */
.top-feature {
  background: var(--white);
  padding: 56px 0;
}

@media (min-width: 992px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 2;
    padding-bottom: 0;
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.feature-card .icon-wrap {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), #c3eaef);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon-wrap i { font-size: 22px; color: var(--teal); }
.feature-card h4 { color: var(--dark); margin-bottom: 4px; font-size: 17px; }
.feature-card span { color: var(--text-light); font-size: 14px; line-height: 1.5; }

/* ---- About ---- */
#about { padding: 96px 0; }

.title_about {
  color: var(--teal) !important;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}

.text_about {
  text-align: justify;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 400 !important;
}

#about h1 { color: var(--teal); }
#about h4 { color: var(--teal); }

#about .img-about-us {
  background: url('../img/socios.png') center / cover no-repeat;
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
}

#about .img-about-us::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px; height: 120px;
  background: var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.22;
}

/* ---- Facts / Stats ---- */
.facts {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 65%, #2ab8c8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.facts::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -8%;
  width: 55%;
  height: 220%;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.facts .stat-item {
  text-align: center;
  padding: 20px;
}

.facts .stat-item h1 {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.facts .stat-item span {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ---- Services ---- */
.project_ { padding: 96px 0; background: var(--bg-light); }

.text_h1 {
  color: var(--teal);
  font-size: 2.4rem;
  font-weight: 700 !important;
}

.service-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--dark);
  text-align: center;
  min-height: 340px;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-item .service-img {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  overflow: hidden;
  z-index: 0;
}

.service-item .service-img img {
  position: absolute;
  width: 100%; height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.08);
  transition: var(--transition);
  z-index: 0;
  filter: brightness(0.38);
}

.service-item:hover .service-img img {
  transform: scale(1.0);
  filter: brightness(0.28);
}

.service-item .service-text {
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-item:hover .service-text { background: transparent; }

.service-item .service-text h4,
.service-item ._text_service {
  color: #fff;
  font-weight: 500 !important;
  font-size: 17px;
  transition: var(--transition);
}

.service-item:hover .service-text h4 {
  color: #fff;
  font-weight: 400 !important;
}

.service-item:hover .service-text p { color: rgba(255,255,255,0.85); }

.service-item:hover a { color: #fff; }
.service-item:hover h1 { color: #fff; font-weight: 300; }

.service-item .service-text .btn-square {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: 50% !important;
  transition: var(--transition);
}

.service-item:hover .service-text .btn-square {
  background: var(--teal);
}

.service-item .service-text i.fa { color: #fff; }

._text_service { font-weight: 500 !important; }

/* ---- Why Choose Us ---- */
.feature_ { padding: 96px 0; }

.feature_ h1 { color: var(--teal); }

.text_feature {
  text-align: justify;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 400 !important;
}

.text_whyh2 { color: var(--primary); font-size: 22px; }

.img-why1 {
  background: url('../img/portrait-young-woman-working-her-laptop-startup-company.jpg') center / cover no-repeat;
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.service-item1 {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 100%;
}

.service-text1 {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255,255,255,0.7) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-md) !important;
  transition: var(--transition) !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  padding: 20px 24px !important;
  width: 100%;
}

.service-text1:hover {
  background: rgba(255,255,255,0.98) !important;
}

.why_2 { width: 100%; padding: 0; }

.text_whyy {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 4px;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.text_whyy:hover { color: var(--teal) !important; }

.color_p_why {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.color_p_why:hover { color: var(--primary-dark) !important; }

@media (max-width: 496px) {
  .text_whyy { font-size: 22px !important; }
}

/* ---- FAQ ---- */
.faq { padding: 96px 0; background: var(--bg-light); }

.faq .faq-list { padding: 0 60px; }
.faq .faq-list ul { padding: 0; list-style: none; }
.faq .faq-list li + li { margin-top: 14px; }

.faq .faq-list li {
  padding: 22px 26px;
  background: var(--white) !important;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.faq .faq-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 22px;
  position: absolute;
  right: 0; left: 20px;
  color: var(--primary);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 18px;
  position: absolute;
  right: 0; top: 0;
  color: var(--teal);
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 14px 0 0;
  text-align: justify;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 15px;
}

.faq .faq-list .icon-show { display: none; }

.faq .faq-list a.collapsed { color: var(--text); transition: .3s; }
.faq .faq-list a.collapsed:hover { color: var(--teal); }
.faq .faq-list a.collapsed .icon-show { display: inline-block; }
.faq .faq-list a.collapsed .icon-close { display: none; }

.fa-circle-question { color: var(--primary) !important; }
.color_faq { color: var(--text-light); font-size: 15px !important; }

@media (max-width: 1200px) { .faq .faq-list { padding: 0; } }

/* ---- Learn More Button ---- */
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.learn-more { width: 13rem; height: auto; }

button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem; height: 3rem;
  background: var(--primary);
  border-radius: 1.625rem;
}

button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0; bottom: 0;
  margin: auto;
  background: #fff;
}

button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem; height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem; right: 0.0625rem;
  width: 0.625rem; height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .circle { width: 100%; }
button:hover .circle .icon.arrow { background: #fff; transform: translate(1rem, 0); }
button:hover .button-text { color: #fff; }

/* ---- Clients ---- */
.background-clients { background: var(--white); padding: 80px 0 0; }

.img-gray { filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.img-gray:hover { filter: grayscale(0%); opacity: 1; }

.zoom img { max-width: 100%; transition: all 0.4s ease; }
.zoom .img-gray:hover { transform: scale(1.08); }

.text_logo_ {
  color: var(--text);
  text-align: center;
  font-weight: 400 !important;
  font-size: 1.15rem;
  line-height: 1.9;
  border-top: 1px solid var(--border);
  padding: 48px 24px 0 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* ---- Contact ---- */
.contact { padding: 96px 0; background: var(--bg-light); }

.contact .info {
  border-radius: var(--radius);
  border: none;
  border-top: 4px solid var(--teal);
  padding: 36px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
}

.contact .info i {
  font-size: 18px;
  color: #fff;
  float: left;
  width: 44px; height: 44px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: var(--transition);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact .info p {
  padding: 0 0 20px 60px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i { background: var(--teal-dark); }

.contact .php-email-form {
  background: var(--white);
  border-radius: var(--radius);
  border: none;
  border-top: 4px solid var(--primary);
  padding: 36px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.contact .php-email-form .form-group { padding-bottom: 8px; margin-bottom: 4px; }

.contact .php-email-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm) !important;
  box-shadow: none;
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg-light);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31,157,171,0.12);
}

.contact .php-email-form input { height: 48px; }
.contact .php-email-form textarea { padding: 14px 16px; }

.contact .php-email-form .validate { display: none; color: red; margin: 0 0 15px 0; font-weight: 400; font-size: 13px; }
.contact .php-email-form .error-message { display: none; color: #fff; background: #ed3c0d; text-align: left; padding: 15px; font-weight: 600; border-radius: var(--radius-sm); }
.contact .php-email-form .sent-message { display: none; color: #fff; background: #18d26e; text-align: center; padding: 15px; font-weight: 600; border-radius: var(--radius-sm); }
.contact .php-email-form .loading { display: none; background: #fff; text-align: center; padding: 15px; }
.contact .php-email-form .loading:before { content: ""; display: inline-block; border-radius: 50%; width: 24px; height: 24px; margin: 0 10px -6px 0; border: 3px solid #18d26e; border-top-color: #eee; animation: animate-loading 1s linear infinite; }

.contact .php-email-form button[type=submit] {
  background: var(--primary);
  border: none;
  box-shadow: 0 0 0 1.5px var(--teal);
  padding: 12px 40px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px !important;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232,115,90,0.25);
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,90,0.38);
}

.button1 {
  display: inline-block;
  background: var(--primary);
  border: none;
  box-shadow: 0 0 0 1.5px var(--teal);
  padding: 12px 40px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px !important;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232,115,90,0.25);
  cursor: pointer;
}

.button1:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,90,0.38);
}

.text_contact { font-weight: 700 !important; }

.maps__ {
  border-radius: var(--radius-sm);
  margin-top: 24px;
  width: 100%;
  border: 0;
}

@media (max-width: 600px) { .maps__ { width: 100% !important; } }

@keyframes animate-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- Cookies ---- */
.box-cookies-size { justify-content: center; display: flex; }

.box-cookies.hide { display: none !important; }

.box-cookies {
  position: fixed;
  background: rgba(10,22,40,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  width: 96%;
  max-width: 900px;
  z-index: 999998;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 4px 8px;
}

.box-cookies .msg-cookies {
  padding: 16px 20px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  margin-bottom: 0;
}

.box-cookies .btn-cookies {
  flex-shrink: 0;
  background: var(--primary);
  border: none;
  box-shadow: 0 0 0 1.5px var(--teal);
  padding: 8px 22px;
  color: #fff;
  font-weight: 600;
  border-radius: 50px !important;
  margin-right: 16px;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.box-cookies .btn-cookies:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,115,90,0.35);
  color: #fff;
}

.color-cookies { color: var(--teal); font-weight: 600; text-decoration: underline; }
.color-cookies:hover { color: var(--primary); }

@media (max-width: 600px) {
  .box-cookies { flex-direction: column; padding: 20px 16px; gap: 12px; }
  .box-cookies .btn-cookies { margin-right: 0; width: 100%; text-align: center; }
}

/* ---- Footer ---- */
.section-footer {
  background: #f0f9fa;
  border-top: 3px solid var(--teal);
  padding: 72px 0 0;
}

.section-footer ul { line-height: 2.4; padding: 0; list-style: none; }

.itens-footer {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}
.itens-footer:hover { color: var(--teal); }

.footer-icon-color { color: var(--teal); }

.nav-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  margin-top: 24px;
}

.copyright-footer { padding: 0; }
.copyright-footer p { color: var(--text-light); font-size: 13px; margin: 0; }
.copyright-footer a { color: var(--text); }
.copyright-footer a:hover { color: var(--teal); }
.credits { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.credits a { color: var(--text-light); }
.credits a:hover { color: var(--teal); }
.text-dark { color: var(--text) !important; }

/* ---- Page header (inner pages) ---- */
.page-header {
  background: linear-gradient(
      135deg,
      rgba(10,22,40,0.85),
      rgba(31,157,171,0.55)
    ),
    url('../img/empresarios-que-trabalham-com-ipad-de-alto-angulo.jpg') center / cover no-repeat;
  padding: 80px 0;
}

.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { font-size: 16px; color: rgba(255,255,255,0.85); }

.bg_about_pag {
  background: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.72)),
    url('../img/5594016.jpg') center / cover no-repeat;
}

/* ---- Misc ---- */
.text-primary { color: var(--primary) !important; }
.link_faq { color: var(--primary); }
.link_faq:hover { color: var(--teal-dark); }
.title_cookies { color: var(--primary); }
.text_colorh1 { color: var(--teal); }
.text_colorp { text-align: justify; font-weight: 400 !important; font-size: 18px; }

/* ---- SVG loading spinner in form ---- */
svg { width: 2.25em; transform-origin: center; animation: rotate4 2s linear infinite; }
circle { fill: none; stroke: hsl(0,0%,100%); stroke-width: 2; stroke-dasharray: 1, 200; stroke-dashoffset: 0; stroke-linecap: round; animation: dash4 1.5s ease-in-out infinite; }

@keyframes rotate4 { 100% { transform: rotate(360deg); } }
@keyframes dash4 {
  0%   { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 90, 200; stroke-dashoffset: -35px; }
  100% { stroke-dashoffset: -125px; }
}
