/* ========================================
   C&R CONSULTORIA - TEMA PERSONALIZADO AZUL
   Bootstrap 5.3 Override + Estilos Custom
   ======================================== */

/* ========================================
   1. VARIÁVEIS GLOBAIS
   ======================================== */
:root {
  /* Cores da Marca C&R */
  --cr-dark: #1C2026;
  --cr-gray: #84878C;
  --cr-primary: #0C70F2;
  --cr-secondary: #2A86BF;
  --cr-light: #9BD1F2;
  --cr-white: #ffffff;
  --cr-body: #444444;

  /* Bootstrap Overrides por componente */
  --bs-primary: #0C70F2;
  --bs-primary-rgb: 12, 112, 242;
  --bs-secondary: #2A86BF;
  --bs-secondary-rgb: 42, 134, 191;
  --bs-success: #198754;
  --bs-info: #9BD1F2;
  --bs-info-rgb: 155, 209, 242;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #1C2026;
  --bs-dark-rgb: 28, 32, 38;

  --bs-body-color: #444444;
  --bs-body-color-rgb: 68, 68, 68;
  --bs-heading-color: #1C2026;

  --bs-link-color: #0C70F2;
  --bs-link-color-rgb: 12, 112, 242;
  --bs-link-hover-color: #2A86BF;
  --bs-link-hover-color-rgb: 42, 134, 191;

  --bs-border-color: #dee2e6;
  --bs-focus-ring-color: rgba(12, 112, 242, 0.25);
}

/* ========================================
   2. RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--cr-body);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: var(--cr-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--cr-secondary);
  text-decoration: none;
}

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

::selection {
  background: var(--cr-primary);
  color: #fff;
}

/* ========================================
   3. PRELOADER
   ======================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

#preloader .loader {
  width: 50px;
  height: 50px;
  border: 4px solid #e9ecef;
  border-top-color: var(--cr-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   4. HEADER / NAVBAR
   ======================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 15px 0;
  background: transparent;
  transition: all 0.4s ease;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 50px;
  transition: max-height 0.3s ease;
}

#header.scrolled .logo img {
  max-height: 40px;
}

/* Navbar */
#header .navbar {
  padding: 0;
}

#header .navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

#header .navbar ul li {
  position: relative;
}

#header .navbar .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--cr-dark);
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#header .navbar .nav-link:hover,
#header .navbar .nav-link.active {
  color: var(--cr-primary);
  background: rgba(12, 112, 242, 0.08);
}

#header .navbar .getstarted {
  background: var(--cr-primary);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600;
}

#header .navbar .getstarted:hover {
  background: var(--cr-secondary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(12, 112, 242, 0.3);
}

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  color: var(--cr-dark);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s;
}

.mobile-nav-toggle:hover {
  background: rgba(12, 112, 242, 0.1);
}

/* ========================================
   5. HERO SECTION
   ======================================== */
#hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 50%, #d6e9ff 100%);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12, 112, 242, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--cr-dark);
  margin-bottom: 20px;
}

#hero h1 span {
  color: var(--cr-primary);
  position: relative;
}

#hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(12, 112, 242, 0.15);
  border-radius: 4px;
  z-index: -1;
}

#hero h2 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cr-gray);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 520px;
}

.btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--cr-primary);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(12, 112, 242, 0.3);
}

.btn-get-started:hover {
  background: var(--cr-secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(12, 112, 242, 0.4);
}

.hero-illustration {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(12, 112, 242, 0.25);
  animation: morph 8s ease-in-out infinite;
}

.hero-illustration i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes morph {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

/* ========================================
   6. SECTIONS COMUNS
   ======================================== */
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cr-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--cr-primary), var(--cr-light));
  border-radius: 2px;
}

.section-title h3 {
  font-size: 1.1rem;
  color: var(--cr-gray);
  font-weight: 400;
  margin-top: 10px;
}

.section-bg {
  background-color: #f8fbff;
}

/* CTA Strip */
.cta-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--cr-primary), var(--cr-secondary), var(--cr-light), var(--cr-primary));
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ========================================
   7. CLIENTS
   ======================================== */
#clients {
  padding: 40px 0;
}

#clients img {
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
  object-fit: contain;
}

#clients img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ========================================
   8. ABOUT
   ======================================== */
#about h4 {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--cr-body);
  margin-bottom: 20px;
}

.value-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(12, 112, 242, 0.08);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(12, 112, 242, 0.12);
  border-color: rgba(12, 112, 242, 0.2);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--cr-primary);
  margin-bottom: 15px;
  display: inline-block;
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cr-dark);
  margin-bottom: 10px;
}

.value-card h5 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cr-gray);
  line-height: 1.6;
}

/* ========================================
   9. SERVICES
   ======================================== */
#services h3 {
  color: var(--cr-dark);
  font-weight: 600;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(12, 112, 242, 0.08);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(12, 112, 242, 0.12);
}

.service-card a {
  display: block;
  color: inherit;
}

.service-card .card-img {
  overflow: hidden;
  height: 220px;
}

.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.08);
}

.service-card .card-body {
  padding: 25px;
}

.service-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cr-dark);
  margin-bottom: 12px;
}

.service-card .card-text {
  color: var(--cr-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cr-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-card:hover .read-more {
  gap: 12px;
  color: var(--cr-secondary);
}

/* ========================================
   10. PRODUCTS
   ======================================== */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(12, 112, 242, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(12, 112, 242, 0.15);
  border-color: rgba(12, 112, 242, 0.2);
}

.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 30px 0;
  box-shadow: 0 8px 20px rgba(12, 112, 242, 0.25);
}

.product-icon i {
  font-size: 32px;
  color: #fff;
}

.product-body {
  padding: 25px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cr-dark);
  margin-bottom: 12px;
}

.product-body p {
  color: var(--cr-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--cr-body);
  font-size: 0.9rem;
}

.product-features li i {
  color: var(--cr-primary);
  font-size: 1.1rem;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--cr-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(12, 112, 242, 0.25);
}

.btn-product:hover {
  background: var(--cr-secondary);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(12, 112, 242, 0.35);
}

/* ========================================
   11. PORTFOLIO
   ======================================== */
.portfolio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(12, 112, 242, 0.08);
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(12, 112, 242, 0.12);
}

.portfolio-card a {
  display: block;
  color: inherit;
}

.portfolio-card .card-img {
  overflow: hidden;
  height: 260px;
}

.portfolio-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .card-img img {
  transform: scale(1.08);
}

.portfolio-card .card-body {
  padding: 25px;
}

.portfolio-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cr-dark);
  margin-bottom: 12px;
}

.portfolio-card .card-text {
  color: var(--cr-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.portfolio-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cr-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-proposta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(12, 112, 242, 0.3);
}

.btn-proposta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(12, 112, 242, 0.4);
  color: #fff;
}

/* ========================================
   12. CONTACT
   ======================================== */
.info-box {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(12, 112, 242, 0.08);
  height: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--cr-primary);
  width: 45px;
  height: 45px;
  background: rgba(12, 112, 242, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cr-dark);
  margin-bottom: 5px;
}

.info-item p {
  color: var(--cr-gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(12, 112, 242, 0.08);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--cr-dark);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-form .form-label i {
  color: var(--cr-primary);
  margin-left: 4px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--cr-primary);
  box-shadow: 0 0 0 4px rgba(12, 112, 242, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.text-err {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 18px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(12, 112, 242, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(12, 112, 242, 0.4);
  color: #fff;
}

.alert-success-custom {
  background: #d1f2eb;
  color: #0f5132;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #198754;
  font-weight: 500;
}

.alert-danger-custom {
  background: #f8d7da;
  color: #842029;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #dc3545;
  font-weight: 500;
}

/* ========================================
   13. FOOTER
   ======================================== */
#footer {
  background: var(--cr-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-top {
  padding: 70px 0 40px;
}

#footer h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

#footer h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

#footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--cr-primary);
  border-radius: 2px;
}

#footer p {
  line-height: 1.8;
}

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

.footer-links li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li i {
  color: var(--cr-primary);
  font-size: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cr-primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--cr-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ========================================
   14. BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: var(--cr-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 996;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(12, 112, 242, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--cr-secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 112, 242, 0.4);
}

/* ========================================
   15. MODAIS
   ======================================== */
.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  color: #fff;
  border: none;
  padding: 25px 30px;
}

.modal-header .modal-title {
  color: #fff;
  font-weight: 700;
}

.modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 30px;
}

.modal-body .form-label {
  font-weight: 600;
  color: var(--cr-dark);
  font-size: 0.9rem;
}

.modal-body .form-label i {
  color: var(--cr-primary);
  margin-left: 4px;
}

.modal-body .form-control,
.modal-body .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: var(--cr-primary);
  box-shadow: 0 0 0 4px rgba(12, 112, 242, 0.1);
}

.modal-footer {
  padding: 20px 30px 30px;
  border: none;
  gap: 10px;
}

.modal-footer .btn-outline-secondary {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 500;
}

/* ========================================
   16. BOOTSTRAP COMPONENT OVERRIDES
   ======================================== */

/* Botões */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0C70F2;
  --bs-btn-border-color: #0C70F2;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #095fd1;
  --bs-btn-hover-border-color: #0859c5;
  --bs-btn-focus-shadow-rgb: 12, 112, 242;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0859c5;
  --bs-btn-active-border-color: #0853b9;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2A86BF;
  --bs-btn-border-color: #2A86BF;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2472a2;
  --bs-btn-hover-border-color: #226b99;
  --bs-btn-focus-shadow-rgb: 42, 134, 191;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #226b99;
  --bs-btn-active-border-color: #20658f;
}

.btn-outline-primary {
  --bs-btn-color: #0C70F2;
  --bs-btn-border-color: #0C70F2;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0C70F2;
  --bs-btn-hover-border-color: #0C70F2;
  --bs-btn-focus-shadow-rgb: 12, 112, 242;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0C70F2;
  --bs-btn-active-border-color: #0C70F2;
}

/* Form controls */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(12, 112, 242, 0.25);
}

.form-check-input:checked {
  background-color: #0C70F2;
  border-color: #0C70F2;
}

/* Progress bar */
.progress-bar {
  background-color: #0C70F2;
}

/* Pagination */
.page-link {
  color: #0C70F2;
}

.page-link:hover {
  color: #2A86BF;
}

.page-item.active .page-link {
  background-color: #0C70F2;
  border-color: #0C70F2;
}

/* List group */
.list-group-item.active {
  background-color: #0C70F2;
  border-color: #0C70F2;
}

/* Nav pills */
.nav-pills .nav-link.active {
  background-color: #0C70F2;
}

/* Accordion */
.accordion-button:not(.collapsed) {
  color: #074291;
  background-color: #cfe2ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(12, 112, 242, 0.25);
}

/* Dropdown */
.dropdown-item:active,
.dropdown-item.active {
  background-color: #0C70F2;
}

/* ========================================
   17. RESPONSIVIDADE
   ======================================== */
@media (max-width: 1199px) {
  #hero h1 {
    font-size: 2.5rem;
  }

  .hero-illustration {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  #header .navbar ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 15px;
    left: 15px;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    gap: 5px;
    z-index: 998;
  }

  #header .navbar ul.active {
    display: flex;
  }

  #header .navbar .nav-link {
    width: 100%;
    justify-content: center;
  }

  #hero {
    padding-top: 120px;
    text-align: center;
  }

  #hero h1 {
    font-size: 2.2rem;
  }

  #hero h2 {
    margin: 0 auto 35px;
  }

  #hero .d-flex {
    justify-content: center !important;
  }

  .hero-illustration {
    width: 280px;
    height: 280px;
    margin: 30px auto 0;
  }

  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  #hero h1 {
    font-size: 1.8rem;
  }

  #hero h2 {
    font-size: 1rem;
  }

  .hero-illustration {
    width: 220px;
    height: 220px;
  }

  .hero-illustration i {
    font-size: 80px;
  }

  .value-card {
    margin-bottom: 20px;
  }

  .info-box {
    margin-bottom: 30px;
  }

  .modal-dialog {
    margin: 15px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    padding: 15px 20px 20px;
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  #hero {
    padding-top: 100px;
  }

  #hero h1 {
    font-size: 1.6rem;
  }

  .btn-get-started,
  .btn-proposta,
  .btn-submit {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   18. SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--cr-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cr-secondary);
}

/* ===== Product Card Enhancements ===== */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(12, 112, 242, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(12, 112, 242, 0.1);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(12, 112, 242, 0.15);
  border-color: rgba(12, 112, 242, 0.2);
}

/* Card em destaque (CER-ERP) */
.product-card--featured {
  border: 2px solid #0C70F2;
  background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%);
}

.product-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0C70F2, #2A86BF, #9BD1F2);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #0C70F2, #2A86BF);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(12, 112, 242, 0.3);
}

.product-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0C70F2, #2A86BF);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(12, 112, 242, 0.25);
}

.product-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.product-card--featured .product-icon {
  background: linear-gradient(135deg, #0C70F2, #9BD1F2);
  box-shadow: 0 4px 16px rgba(12, 112, 242, 0.35);
}

.product-body h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 0.75rem;
}

.product-body p {
  color: #84878C;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #4a4d52;
}

.product-features li i {
  color: #0C70F2;
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #0C70F2;
  border: 2px solid #0C70F2;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-product:hover {
  background: #0C70F2;
  color: #fff;
  transform: translateX(4px);
}

.btn-product--primary {
  background: linear-gradient(135deg, #0C70F2, #2A86BF);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(12, 112, 242, 0.3);
}

.btn-product--primary:hover {
  background: linear-gradient(135deg, #2A86BF, #0C70F2);
  box-shadow: 0 6px 20px rgba(12, 112, 242, 0.4);
  transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 991.98px) {
  .product-card {
    padding: 1.5rem;
  }
}


/* ===== CER-ERP Page Specific Styles ===== */

/* Hero Section */
.cer-hero {
  background: linear-gradient(135deg, #0C70F2 0%, #1C2026 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.cer-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 209, 242, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cer-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #9BD1F2;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(155, 209, 242, 0.3);
}

.cer-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cer-hero .hero-title span {
  color: #9BD1F2;
}

.cer-hero .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.cer-hero .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cer-primary {
  background: linear-gradient(135deg, #0C70F2, #2A86BF);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(12, 112, 242, 0.4);
}

.btn-cer-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 112, 242, 0.5);
  color: #fff;
}

.btn-cer-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cer-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: #1C2026;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-header {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red {
  background: #ff5f56;
}

.mockup-dot.yellow {
  background: #ffbd2e;
}

.mockup-dot.green {
  background: #27c93f;
}

.mockup-body {
  display: flex;
  min-height: 320px;
}

.mockup-sidebar {
  width: 160px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-sidebar h6 {
  color: #84878C;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.mockup-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  transition: all 0.2s;
}

.mockup-menu-item.active {
  background: rgba(12, 112, 242, 0.2);
  color: #9BD1F2;
}

.mockup-menu-item i {
  font-size: 0.85rem;
}

.mockup-content {
  flex: 1;
  padding: 1.25rem;
}

.mockup-kpi {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.875rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-kpi span {
  display: block;
  font-size: 0.7rem;
  color: #84878C;
  margin-bottom: 0.25rem;
}

.mockup-kpi h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.mockup-kpi h4.up {
  color: #27c93f;
}

.mockup-kpi h4.down {
  color: #ff5f56;
}

.mockup-chart {
  margin-top: 1rem;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 0.5rem;
  gap: 0.5rem;
}

.mockup-bar {
  flex: 1;
  background: linear-gradient(to top, #0C70F2, #2A86BF);
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
  transition: all 0.3s;
}

.mockup-bar:hover {
  opacity: 1;
}

.mockup-bar:nth-child(2) {
  height: 60%;
}

.mockup-bar:nth-child(3) {
  height: 85%;
}

.mockup-bar:nth-child(4) {
  height: 45%;
}

.mockup-bar:nth-child(5) {
  height: 90%;
}

.mockup-bar:nth-child(6) {
  height: 70%;
}

.mockup-bar:nth-child(7) {
  height: 55%;
}

/* Section Titles */
.cer-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 1rem;
}

.cer-section-subtitle {
  font-size: 1.05rem;
  color: #84878C;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Cards */
.cer-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(12, 112, 242, 0.06);
  border: 1px solid rgba(12, 112, 242, 0.08);
  transition: all 0.3s ease;
}

.cer-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(12, 112, 242, 0.12);
}

.cer-feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #0C70F2, #2A86BF);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(12, 112, 242, 0.25);
}

.cer-feature-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.cer-feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 0.75rem;
}

.cer-feature-card p {
  color: #84878C;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Module Cards */
.cer-module-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(12, 112, 242, 0.06);
  border: 1px solid rgba(12, 112, 242, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cer-module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0C70F2, #2A86BF);
  opacity: 0;
  transition: opacity 0.3s;
}

.cer-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 112, 242, 0.12);
}

.cer-module-card:hover::before {
  opacity: 1;
}

.cer-module-card>i {
  font-size: 2rem;
  color: #0C70F2;
  margin-bottom: 1rem;
  display: block;
}

.cer-module-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 0.75rem;
}

.cer-module-card p {
  color: #84878C;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* Roadmap / Timeline */
.cer-timeline {
  position: relative;
  padding: 2rem 0;
}

.cer-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0C70F2, #2A86BF, #9BD1F2);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: #0C70F2;
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(12, 112, 242, 0.2);
  z-index: 2;
}

.timeline-content {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(12, 112, 242, 0.08);
  border: 1px solid rgba(12, 112, 242, 0.1);
}

.timeline-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #84878C;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cer-cta {
  background: linear-gradient(135deg, #0C70F2 0%, #1C2026 100%);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cer-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 209, 242, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cer-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cer-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}

/* Breadcrumb */
.cer-breadcrumb {
  background: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(12, 112, 242, 0.08);
}

.cer-breadcrumb a {
  color: #0C70F2;
  text-decoration: none;
  font-weight: 500;
}

.cer-breadcrumb a:hover {
  text-decoration: underline;
}

.cer-breadcrumb .separator {
  color: #84878C;
  margin: 0 0.5rem;
}

.cer-breadcrumb .current {
  color: #84878C;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cer-hero {
    padding: 120px 0 60px;
  }

  .cer-hero .hero-title {
    font-size: 2.25rem;
  }

  .cer-hero .hero-subtitle {
    font-size: 1rem;
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-body {
    flex-direction: column;
  }

  .cer-timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item .row.justify-content-start {
    padding-left: 50px;
  }

  .timeline-item .row.justify-content-end {
    padding-left: 50px;
    justify-content: flex-start !important;
  }

  .cer-cta {
    padding: 3rem 1.5rem;
  }

  .cer-cta h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .cer-hero .hero-title {
    font-size: 1.85rem;
  }

  .cer-section-title {
    font-size: 1.75rem;
  }
}



/* ===== Projeto Cloud Page Specific Styles ===== */

/* Hero Section */
.cloud-hero {
  background: linear-gradient(135deg, #0C70F2 0%, #1C2026 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.cloud-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155, 209, 242, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cloud-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #9BD1F2;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(155, 209, 242, 0.25);
}

.cloud-hero .hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cloud-hero .hero-title span {
  color: #9BD1F2;
}

.cloud-hero .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* Breadcrumb */
.cloud-breadcrumb {
  background: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(12, 112, 242, 0.08);
}

.cloud-breadcrumb a {
  color: #0C70F2;
  text-decoration: none;
  font-weight: 500;
}

.cloud-breadcrumb a:hover {
  text-decoration: underline;
}

.cloud-breadcrumb .separator {
  color: #84878C;
  margin: 0 0.5rem;
}

.cloud-breadcrumb .current {
  color: #84878C;
}

/* Section Titles */
.cloud-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 0.75rem;
}

.cloud-section-subtitle {
  font-size: 1rem;
  color: #84878C;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Project Image Card */
.project-image-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 112, 242, 0.1);
  border: 1px solid rgba(12, 112, 242, 0.1);
}

.project-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Info Cards */
.cloud-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(12, 112, 242, 0.06);
  border: 1px solid rgba(12, 112, 242, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cloud-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0C70F2, #2A86BF, #9BD1F2);
  opacity: 0;
  transition: opacity 0.3s;
}

.cloud-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 112, 242, 0.12);
}

.cloud-info-card:hover::before {
  opacity: 1;
}

.cloud-info-card .card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0C70F2, #2A86BF);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(12, 112, 242, 0.25);
}

.cloud-info-card .card-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.cloud-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 0.75rem;
}

.cloud-info-card p {
  color: #84878C;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Description Section */
.cloud-description {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(12, 112, 242, 0.06);
  border: 1px solid rgba(12, 112, 242, 0.08);
}

.cloud-description h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2026;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cloud-description p {
  color: #84878C;
  font-size: 1rem;
  line-height: 1.7;
}

/* Tech Stack Tags */
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(12, 112, 242, 0.08);
  color: #0C70F2;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  margin: 0.25rem;
  border: 1px solid rgba(12, 112, 242, 0.15);
}

.tech-tag i {
  font-size: 0.9rem;
}

/* CTA Section */
.cloud-cta {
  background: linear-gradient(135deg, #0C70F2 0%, #1C2026 100%);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cloud-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 209, 242, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cloud-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}

.cloud-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.btn-cloud-primary {
  background: linear-gradient(135deg, #fff, #f0f7ff);
  color: #0C70F2;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-cloud-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: #0C70F2;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cloud-hero {
    padding: 120px 0 60px;
  }

  .cloud-hero .hero-title {
    font-size: 2rem;
  }

  .cloud-hero .hero-subtitle {
    font-size: 1rem;
  }

  .cloud-cta {
    padding: 2.5rem 1.5rem;
  }

  .cloud-cta h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .cloud-hero .hero-title {
    font-size: 1.65rem;
  }

  .cloud-section-title {
    font-size: 1.6rem;
  }

  .cloud-description {
    padding: 1.5rem;
  }
}