/*****
* Inner Page Style
* @author: Technologie Omicrom Sendas inc
* Date created: 2025-12-27
*/
section.inner-about-omicrom {
  width: 100%;
  margin-top: 15px;
  padding: 15px;
}
section.inner-about-omicrom .container-fluid {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--white-color);
  border-radius: 12px;
}
section.inner-about-omicrom .container-fluid .top-about-omicrom {
  width: 40%;
  min-height: 140px;
  max-height: 465px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  margin-right: 15px;
  padding: 0%;
}
section.inner-about-omicrom .container-fluid .top-about-omicrom img {
  width: 100%;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom {
  width: 60%;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom .title-02-section {
  font-weight: 800;
  color: var(--omicrom-02);
  font-size: clamp(15px, 6.45vw, 30px);
  margin-bottom: 10px;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom p.p-paragraph {
  width: 100%;
  font-size: clamp(13.5px, 4.45vw, 17px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 15px;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom div.content-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom div.content-link a.link-about-us {
  width: auto;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--omicrom-02);
  text-align: left;
  padding: 10px 15px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--omicrom-02);
  border-radius: 12px;
  transition: 0.5s;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom div.content-link a.link-about-us i {
  color: var(--omicrom-02);
  font-size: 1.8rem;
  margin-right: 10px;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom div.content-link a.link-about-us img {
  width: 40px;
  margin-right: 10px;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom div.content-link a.link-about-us:hover {
  color: var(--white-color);
  background-color: var(--omicrom-02);
  border: 2px solid var(--omicrom-02);
  transition: 0.5s;
}
section.inner-about-omicrom .container-fluid .bottom-about-omicrom div.content-link a.link-about-us:hover i {
  color: var(--white-color);
  transition: 0.5s;
}

section.about-omicrom-localization {
  width: 100%;
  margin-top: 15px;
  padding: 15px;
}
section.about-omicrom-localization .container-fluid {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--white-color);
  border-radius: 12px;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-cards {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  border-left: 0px solid transparent;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}
section.about-omicrom-localization .container-fluid div.presence-info .country-card.canada {
  border-left-color: #FF0000;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-card.usa {
  border-left-color: #3C3B6E;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-flag {
  width: 150px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-details h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary);
}
section.about-omicrom-localization .container-fluid div.presence-info .country-details p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 5px;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-details .location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
}
section.about-omicrom-localization .container-fluid div.presence-info .country-details .location i,
section.about-omicrom-localization .container-fluid div.presence-info .country-details .location span {
  color: var(--omicrom-02);
}
section.about-omicrom-localization .container-fluid .top-about-omicrom {
  width: 40%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px 0px 0px 12px;
  margin-right: 15px;
}
section.about-omicrom-localization .container-fluid .top-about-omicrom img {
  width: 100%;
}
section.about-omicrom-localization .container-fluid .section-title {
  margin-bottom: 3%;
}
section.about-omicrom-localization .container-fluid .title-02-section {
  font-weight: 800;
  color: var(--omicrom-02);
  font-size: clamp(15px, 6.45vw, 30px);
  margin-bottom: 10px;
}
section.about-omicrom-localization .container-fluid p.p-paragraph {
  width: 100%;
  font-size: clamp(13.5px, 4.45vw, 17px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 15px;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom {
  width: 60%;
  padding: 15px;
  padding-top: 20px;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom .title-02-section {
  font-weight: 800;
  color: var(--omicrom-02);
  font-size: clamp(15px, 6.45vw, 30px);
  margin-bottom: 10px;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom p.p-paragraph {
  width: 100%;
  font-size: clamp(13.5px, 4.45vw, 17px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 15px;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom div.content-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom div.content-link a.link-about-us {
  width: auto;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--omicrom-02);
  text-align: left;
  padding: 10px 15px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--omicrom-02);
  border-radius: 12px;
  transition: 0.5s;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom div.content-link a.link-about-us i {
  color: var(--omicrom-02);
  font-size: 1.8rem;
  margin-right: 10px;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom div.content-link a.link-about-us img {
  width: 40px;
  margin-right: 10px;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom div.content-link a.link-about-us:hover {
  color: var(--white-color);
  background-color: var(--omicrom-02);
  border: 2px solid var(--omicrom-02);
  transition: 0.5s;
}
section.about-omicrom-localization .container-fluid .bottom-about-omicrom div.content-link a.link-about-us:hover i {
  color: var(--white-color);
  transition: 0.5s;
}

section.section-values {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 5vh 15px;
}
section.section-values .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
section.section-values .values-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
section.section-values .title-02-section {
  font-weight: 800;
  color: var(--omicrom-02);
  font-size: clamp(15px, 6.45vw, 30px);
  margin-bottom: 10px;
}
section.section-values .title-03-section {
  font-weight: 800;
  color: var(--omicrom-02);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
section.section-values p.p-paragraph {
  width: 100%;
  font-size: clamp(13.5px, 4.45vw, 17px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 15px;
}

section.side-by-side-image-text {
  width: 100%;
  margin-top: 15px;
  padding: 15px;
}
section.side-by-side-image-text .container-fluid {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  background-color: var(--white-color);
  border-radius: 12px;
  gap: 12px;
}
section.side-by-side-image-text .container-fluid div.left-blustnews {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
section.side-by-side-image-text .container-fluid div.left-blustnews .top-left-blustnews {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
section.side-by-side-image-text .container-fluid div.left-blustnews .bottom-left-blustnews {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 12px;
  overflow: hidden;
}
section.side-by-side-image-text .container-fluid div.left-blustnews .bottom-left-blustnews img {
  width: 100%;
}
section.side-by-side-image-text .container-fluid div.right-blustnews {
  width: 48%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
section.side-by-side-image-text .container-fluid div.right-blustnews div.logo-01-section {
  width: 100%;
  margin-bottom: 15px;
}
section.side-by-side-image-text .container-fluid div.right-blustnews div.logo-01-section img {
  height: 65px;
}
section.side-by-side-image-text .container-fluid div.right-blustnews p.p-paragraph {
  width: 100%;
  font-size: clamp(13.5px, 4.45vw, 17px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 15px;
}

/* Features */
section.service-features {
  padding: 34px 1px;
  padding-bottom: 50px;
  background: linear-gradient(135deg, var(--light) 0%, #EDF2F7 100%);
}
section.service-features .section-title {
  text-align: center;
  margin-bottom: 20px;
}
section.service-features .section-title h2 {
  font-size: clamp(15px, 6.45vw, 30px);
  margin-bottom: 10px;
  color: var(--omicrom-02);
}
section.service-features .section-title p {
  text-align: center;
  font-size: clamp(13.5px, 4.45vw, 17px);
  max-width: 700px;
  margin: 0 auto;
}
section.service-features .features-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  flex-wrap: wrap;
  gap: 40px;
}
section.service-features .feature-card {
  background: var(--white-color);
  border-radius: var(--radius);
  padding: 0px 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding-top: 20px;
  border-radius: 12px;
  width: 31%;
  min-width: 300px;
}
section.service-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
section.service-features .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 25px;
  display: none;
}
section.service-features .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
section.service-features {
  /* Process */
}
section.service-features .service-process {
  background: white;
}
section.service-features .process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
section.service-features .process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
}
section.service-features .step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
section.service-features .step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
div.inner-under-section-call-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  margin-top: 10px;
}
div.inner-under-section-call-action div.bottom-section-action {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
div.inner-under-section-call-action div.bottom-section-action p.p-paragraph-inner-action {
  width: 100%;
  font-size: clamp(13.2px, 2.45vw, 15px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 0px;
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link {
  width: auto;
  min-width: 160px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--omicrom-02);
  text-align: left;
  padding: 10px 15px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 2px solid var(--omicrom-02);
  border-radius: 12px;
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link img {
  width: 40px;
  margin-right: 10px;
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link i {
  margin-right: 10px;
  border-right: 1px solid;
  padding-right: 12px;
  width: 34px;
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link:hover {
  color: var(--white-color);
  background-color: var(--omicrom-02);
  border: 2px solid var(--omicrom-02);
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link.btn-green-border {
  color: var(--color-green-2);
  border: 2px solid var(--color-green-2);
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link.btn-green-border:hover {
  color: var(--white-color);
  background-color: var(--color-green-2);
  border: 2px solid var(--color-green-2);
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link.btn-red-border {
  color: var(--color-orange-1);
  border: 2px solid var(--color-orange-1);
}
div.inner-under-section-call-action div.bottom-section-action a.left-action-link.btn-red-border:hover {
  color: var(--white-color);
  background-color: var(--color-orange-1);
  border: 2px solid var(--color-orange-1);
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link {
  width: auto;
  min-width: 160px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--omicrom-02);
  text-align: left;
  padding: 10px 15px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid var(--omicrom-02);
  border-radius: 12px;
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link img {
  width: 40px;
  margin-right: 10px;
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link i {
  margin-right: 10px;
  border-right: 1px solid;
  padding-right: 12px;
  width: 34px;
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link:hover {
  color: var(--main-blue);
  border: 2px solid var(--main-blue);
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link.btn-green {
  color: var(--color-green-2);
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link.btn-green:hover {
  color: var(--color-green-2);
  border: 2px solid var(--color-green-2);
  transition: 0.5s;
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link.btn-red {
  color: var(--color-orange-1);
}
div.inner-under-section-call-action div.bottom-section-action a.rigth-action-link.btn-red:hover {
  color: var(--color-orange-1);
  border: 2px solid var(--color-orange-1);
  transition: 0.5s;
}

.contacts-social-media {
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  margin-top: -15px;
}
.contacts-social-media .social-links {
  display: flex;
  gap: 15px;
}
.contacts-social-media .social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: rgba(130, 81, 81, 0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--omicrom-02);
  text-decoration: none;
  transition: all 0.3s ease;
  transition: 0.5s;
}
.contacts-social-media .social-links .social-link:hover {
  background-color: rgba(130, 81, 81, 0.527);
  transition: 0.5s;
}

.title-02-section {
  width: 100%;
  max-width: 100%;
  min-width: 300px;
  font-weight: 800;
  color: var(--omicrom-02);
  font-size: clamp(15px, 6.45vw, 30px);
  margin-bottom: 10px;
}
.title-02-section span {
  width: 90% !important;
  display: flex;
}

.title-03-section {
  width: 100%;
  max-width: 100%;
  min-width: 300px;
  font-weight: 800;
  color: var(--omicrom-02);
  font-size: clamp(14px, 5.45vw, 25px);
  margin-bottom: 10px;
}

p.p-paragraph {
  width: 100%;
  font-size: clamp(15.2px, 2.45vw, 17px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 15px;
}

p.p-paragraph-02 {
  width: 100%;
  font-size: clamp(12.5px, 2.45vw, 14.5px);
  font-weight: 300;
  color: var(--color-gray);
  text-align: left;
  padding: 0 0rem;
  margin-bottom: 15px;
}

/*# sourceMappingURL=inner_page.css.map */
