/* ================= CSS OTIMIZADO - APENAS ESTILOS UTILIZADOS NA PÁGINA PRINCIPAL ================= */

/* ================= VARIABLES ================= */
:root {
  --color-primary: #E04700;
  --color-secondary: #1F1F25;
  --color-body: #5D666F;
  --color-heading-1: #1C2539;
  --color-title: #141416;
  --color-white: #fff;
  --color-border: #DDD8F9;
  --transition: .3s;
  --radius: 10px;
  --font-primary: "Red Hat Display", serif;
  --font-secondary: "DM Sans", serif;
  --font-size-b1: 16px;
  --font-size-b2: 15px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

/* ================= RESET & BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  font-family: "DM Sans", serif;
  color: var(--color-body);
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
  margin: 0;
  background: #fff;
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Red Hat Display", serif;
  line-height: 1.3;
  color: var(--color-heading-1);
}

h1 { font-size: var(--h1); font-weight: 700; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  color: var(--color-body);
  margin-bottom: 20px;
}

p:last-child { margin-bottom: 0; }

@media (max-width: 992px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
}

/* ================= UTILITIES ================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }

.offset-lg-1 { margin-left: 8.333%; }

@media (max-width: 992px) {
  .col-lg-6, .col-lg-4, .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-lg-1 { margin-left: 0; }
}

/* ================= HEADER ================= */
.header-one {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top-area-wrapper {
  background: #19352D;
  padding: 8px 0;
  color: #fff;
  font-size: 13px;
}

.header-top-one-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top-one-wrapper .right a {
  color: #f2833a;
  text-decoration: none;
}

.header-top-one-wrapper .left {
  display: flex;
  gap: 20px;
}

.header-top-one-wrapper .left a {
  color: #fff;
  text-decoration: none;
}

.header-main {
  padding: 15px 0;
  background: #fff;
}

.header-main-one-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.thumbnail img {
  max-height: 50px;
  width: auto;
}

.main-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-area ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-area ul li a {
  text-decoration: none;
  color: #19352D;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-area ul li a:hover {
  color: #f2833a;
}

@media (max-width: 992px) {
  .nav-area { display: none; }
}

@media (max-width: 768px) {
  .header-top-one-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .header-top-one-wrapper .left {
    justify-content: center;
  }
}

/* ================= BUTTONS ================= */
.rts-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.rts-btn.btn-primary {
  background: #f2833a;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rts-btn.btn-primary::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #F2F2F2;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.8s;
}

.rts-btn.btn-primary:hover {
  background: #F2F2F2;
  color: #20282D;
}

.rts-btn.btn-primary:hover::before {
  top: -40%;
}

.rts-btn.btn-border {
  background: transparent;
  border: 2px solid #f2833a;
  color: #f2833a;
}

.rts-btn.btn-border:hover {
  background: #f2833a;
  color: #fff;
}

.rts-btn.btn-white {
  background: #fff;
  color: #f2833a;
  border: 1px solid #f2833a;
}

.rts-btn.btn-white:hover {
  background: #f2833a;
  color: #fff;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn img {
  width: 28px;
}

/* ================= BANNER ================= */
.rts-banner-area {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.banner-accountent-content .pre-title {
  display: inline-block;
  background: rgba(242,131,58,0.1);
  padding: 6px 16px;
  border-radius: 30px;
  color: #f2833a;
  font-size: 13px;
  margin-bottom: 20px;
}

.banner-accountent-content .title {
  font-size: 48px;
  font-weight: 700;
  color: #19352D;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-accountent-content .disc {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.button-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.thumbnail-banner-area-accountent img {
  width: 100%;
  border-radius: 12px;
  height: auto;
}

@media (max-width: 992px) {
  .rts-banner-area { padding: 60px 0; }
  .banner-accountent-content .title { font-size: 36px; }
}

@media (max-width: 768px) {
  .banner-accountent-content .title { font-size: 32px; }
}

/* ================= SERVICE AREA ================= */
.rts-service-area {
  padding: 80px 0;
}

.title-style-five {
  text-align: center;
  margin-bottom: 50px;
}

.title-style-five .pre {
  display: inline-block;
  background: rgba(242,131,58,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  color: #f2833a;
  font-size: 13px;
  margin-bottom: 12px;
}

.title-style-five .title {
  font-size: 36px;
  font-weight: 700;
  color: #19352D;
}

.title-style-five p {
  margin-top: 15px;
  color: #666;
}

.service-single-main-wrapper-five {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  text-align: center;
  height: 100%;
}

.service-single-main-wrapper-five:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-single-main-wrapper-five .icon img {
  width: 70px;
  margin-bottom: 20px;
}

.service-single-main-wrapper-five .inner-content .title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #19352D;
}

.service-single-main-wrapper-five .inner-content .disc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .rts-service-area { padding: 60px 0; }
  .title-style-five .title { font-size: 32px; }
  .service-single-main-wrapper-five { margin-bottom: 30px; }
}

/* ================= WHY CHOOSE US ================= */
.why-chooseus-area {
  padding-bottom: 80px;
}

.thumbnail-accountent-why-choose {
  position: relative;
}

.thumbnail-accountent-why-choose img {
  width: 100%;
  border-radius: 12px;
}

.counter-about-area {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #f2833a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.counter-about-area .title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.counter-about-area span {
  font-size: 14px;
}

.single-feature-service-wrapper-8 {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.single-feature-service-wrapper-8 .icon img {
  width: 50px;
}

.single-feature-service-wrapper-8 .inner-wrapper .title {
  font-size: 20px;
  color: #19352D;
  margin-bottom: 10px;
}

.single-feature-service-wrapper-8 .inner-wrapper .disc {
  color: #666;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-chooseus-area { padding-bottom: 60px; }
}

/* ================= SOFTWARE À MEDIDA ================= */
.contactform-accountentarea {
  padding: 80px 0;
}

.appoinment-area-accountent {
  background: #fff;
  border-radius: 10px;
}

.easy-contact-left-funfacts-8 {
  background: #20282D;
  padding: 50px;
  border-radius: 12px;
  height: 100%;
}

.easy-contact-left-funfacts-8 .pre {
  text-transform: uppercase;
  font-size: 14px;
  color: #B3B7C1;
  display: block;
  margin-bottom: 15px;
}

.easy-contact-left-funfacts-8 .title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
}

.signle-contact {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.signle-contact .icon i {
  font-size: 28px;
  color: #f2833a;
}

.signle-contact .main-contact span {
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.signle-contact .main-contact .disc {
  color: #B3B7C1;
  font-size: 14px;
  line-height: 1.5;
}

.thumbnail img {
  border-radius: 12px;
}

.heading__subtitle {
  display: block;
  font-size: 14px;
  color: #f2833a;
  margin-bottom: 10px;
}

.heading__title {
  font-size: 24px;
  color: #19352D;
  margin-bottom: 15px;
}

.heading__desc {
  color: #666;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contactform-accountentarea { padding: 60px 0; }
  .easy-contact-left-funfacts-8 { padding: 30px; }
  .easy-contact-left-funfacts-8 .title { font-size: 28px; }
}

/* ================= BLOG ================= */
.rts-blog-area {
  padding: 80px 0;
}

.rts-blog-h-2-wrapper {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
}

.rts-blog-h-2-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.rts-blog-h-2-wrapper .thumbnail {
  display: block;
  overflow: hidden;
}

.rts-blog-h-2-wrapper .thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.rts-blog-h-2-wrapper:hover .thumbnail img {
  transform: scale(1.05);
}

.rts-blog-h-2-wrapper .body {
  padding: 25px;
}

.rts-blog-h-2-wrapper .body span {
  color: #f2833a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rts-blog-h-2-wrapper .body .title {
  font-size: 18px;
  font-weight: 700;
  color: #19352D;
  margin: 12px 0 10px;
  line-height: 1.4;
  transition: color 0.3s;
}

.rts-blog-h-2-wrapper .body .title:hover {
  color: #f2833a;
}

.rts-blog-h-2-wrapper .body p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.rts-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #f2833a;
  transition: all 0.3s;
}

.rts-read-more i {
  transition: transform 0.3s;
}

.rts-read-more:hover {
  color: #19352D;
}

.rts-read-more:hover i {
  transform: translateX(5px);
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #f2833a;
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .rts-blog-area { padding: 60px 0; }
  .rts-blog-h-2-wrapper .thumbnail img { height: 200px; }
  .rts-blog-h-2-wrapper .body { padding: 20px; }
}

/* ================= CTA NEWSLETTER ================= */
.rts-cts-area-start {
  padding: 80px 0;
  background: linear-gradient(135deg, #19352D 0%, #1e4a3a 100%);
}

.cta-style-10-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-style-10-wrapper .left-side span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-style-10-wrapper .left-side .title {
  font-size: 28px;
  color: #fff;
  margin-top: 10px;
}

.cta-style-10-wrapper .right-side {
  flex-shrink: 0;
}

.cta-style-10-wrapper .right-side form {
  display: flex;
  gap: 10px;
}

.cta-style-10-wrapper .right-side input {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  width: 300px;
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.cta-style-10-wrapper .right-side input::placeholder {
  color: rgba(255,255,255,0.7);
}

.cta-style-10-wrapper .right-side button {
  padding: 12px 24px;
  border-radius: 8px;
}

.cta-style-10-wrapper .right-side small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .rts-cts-area-start { padding: 60px 0; }
  .cta-style-10-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .cta-style-10-wrapper .right-side form {
    flex-direction: column;
  }
  .cta-style-10-wrapper .right-side input {
    width: 100%;
  }
}

/* ================= FOOTER ================= */
.footer-8-area-bg {
  background: #19352D;
  color: #fff;
  padding-top: 60px;
}

.footer-logo-area-left-8 .logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo-area-left-8 .disc {
  color: #B3B7C1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-area-wrapper-two {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-area-wrapper-two li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s;
}

.social-area-wrapper-two li a:hover {
  background: #f2833a;
  transform: translateY(-3px);
}

.footer-one-single-wized .wized-title .title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.quick-link-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links li {
  margin-bottom: 12px;
}

.links li a {
  color: #B3B7C1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.links li a:hover {
  color: #f2833a;
}

.links li a i {
  margin-right: 8px;
  font-size: 12px;
}

.signle-footer-contact-8 {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.signle-footer-contact-8 .icon i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #f2833a;
}

.signle-footer-contact-8 .inner-content h5 {
  font-size: 13px;
  color: #B3B7C1;
  margin-bottom: 5px;
}

.signle-footer-contact-8 .inner-content a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.signle-footer-contact-8 .inner-content a:hover {
  color: #f2833a;
}

.copyright-area-main-wrapper {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
}

.copyright-8-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-8-wrapper p {
  font-size: 13px;
  color: #B3B7C1;
  margin: 0;
}

.copyright-8-wrapper ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.copyright-8-wrapper ul li a {
  color: #B3B7C1;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.copyright-8-wrapper ul li a:hover {
  color: #f2833a;
}

@media (max-width: 768px) {
  .footer-8-area-bg { padding-top: 40px; }
  .quick-link-inner { gap: 20px; }
  .copyright-8-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= SIDEBAR MENU ================= */
.side-bar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: right 0.4s ease-in-out;
  overflow-y: auto;
  padding: 30px;
}

.side-bar.active {
  right: 0;
}

.close-icon-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #19352D;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.rts-sidebar-menu-desktop .logo-1 {
  display: block;
  margin-bottom: 30px;
}

.rts-sidebar-menu-desktop .disc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.get-in-touch .title {
  font-size: 18px;
  font-weight: 600;
  color: #19352D;
  margin-bottom: 20px;
}

.get-in-touch .wrapper .single {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.get-in-touch .wrapper .single i {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #f2833a;
}

.get-in-touch .wrapper .single a {
  text-decoration: none;
  color: #666;
}

.social-wrapper-two {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-wrapper-two a {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #19352D;
  text-decoration: none;
  transition: all 0.3s;
}

.social-wrapper-two a:hover {
  background: #f2833a;
  color: #fff;
}

.mobile-menu {
  margin-top: 50px;
}

.mobile-menu .mainmenu {
  list-style: none;
  padding: 0;
}

.mobile-menu .mainmenu li {
  margin-bottom: 15px;
}

.mobile-menu .mainmenu li a {
  text-decoration: none;
  color: #19352D;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu .mainmenu li a:hover {
  color: #f2833a;
}

@media (max-width: 768px) {
  .side-bar { width: 320px; }
}

/* ================= PROGRESS WRAP ================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.2s linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: #f2833a;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border-radius: 50%;
}

.progress-wrap svg.progress-circle path {
  stroke: #f2833a;
  stroke-width: 4px;
  fill: none;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 768px) {
  .mt_md--50 { margin-top: 50px; }
  .mt_sm--50 { margin-top: 50px; }
  .pb_md--50 { padding-bottom: 50px; }
  .pb_sm--40 { padding-bottom: 40px; }
  .pl_sm--10 { padding-left: 10px; }
  .mt_sm--20 { margin-top: 20px; }
  .mb_sm--20 { margin-bottom: 20px; }
}

@media (max-width: 992px) {
  .order-2 { order: 2; }
  .order-1 { order: 1; }
}