/* ===================================
   CLOUD PAGE STYLES - UPDATED COMPLETE
   =================================== */

/* General Styles */
.section-title {
  padding-top: 100px;
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.title-separator {
  width: 100px;
  height: 3px;
  background-color: #e63e30;
  margin: 20px auto;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.imgfilter {
  filter: invert(100%);
}

.design {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.img-responsive {
  width: 700px;
  max-width: 100%;
  height: auto;
}

/* Feature Box Styles */
.choos-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: flex-start;
}

.choos-box i {
  font-size: 24px;
  color: #e63e30;
  margin-right: 15px;
  margin-top: 5px;
}

.choos-info h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.choos-info p {
  margin-bottom: 0;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.espace {
  margin-top: 40px;
  margin-bottom: 60px;
}

.cta-wrap {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.btn-custom {
  display: inline-block;
  padding: 12px 35px;
  background-color: #e63e30;
  color: #fff !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-custom:hover {
  background-color: #c72d21;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 62, 48, 0.3);
  color: #fff !important;
}

/* Integrated Solution Styles */
#cloud-benefits-section {
  padding: 60px 0;
}

.integrated-solution-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.integrated-solution-description {
  font-size: 17px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards Section Styles */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 30px 30px 20px 30px;
  border-bottom: 2px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.features-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.features-list li i {
  color: #e63e30;
  margin-right: 10px;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.features-list li span {
  flex: 1;
}

.benefits-box {
  background-color: #f8f8f8;
  border-left: 4px solid #e63e30;
  padding: 20px;
  border-radius: 6px;
  margin-top: auto;
}

.benefits-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Cloud Providers Section - UPDATED */
.cloud-providers-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.cloud-providers-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.cloud-providers-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.cloud-providers-section .section-header p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.provider-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Animação mais suave do box quando hover */
.provider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e63e30 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.provider-card:hover::before {
  transform: scaleX(1);
}

.provider-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.provider-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.provider-card:hover .provider-icon {
  background: linear-gradient(135deg, #e63e30 0%, #764ba2 100%);
}

.provider-icon i {
  font-size: 50px;
  color: #e63e30;
  transition: all 0.3s ease;
}

.provider-card:hover .provider-icon i {
  color: #fff;
  transform: scale(1.1);
}

.provider-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.provider-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* VPS Section - UPDATED */
.vps-section {
  background: #fff;
  padding: 50px 40px;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.vps-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.vps-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.vps-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Botão VPS com destaque forte em negrito e vermelho */
.vps-highlight {
  display: inline-block;
  padding: 18px 40px;
  background: #e63e30;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(230, 62, 48, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
}

.vps-highlight:hover {
  background: #c72d21;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 62, 48, 0.4);
  color: #fff !important;
}

/* Destaque para palavras importantes - EM NEGRITO */
.text-highlight {
  font-weight: 700;
  color: inherit;
}

.text-highlight-red {
  font-weight: 700;
  color: #e63e30;
}

/* Contact Section Styles */
#section-contact {
  padding-top: 80px;
  padding-bottom: 80px;
}

#section-contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

#section-contact .uptitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

#section-contact p strong {
  font-weight: 700;
  color: #e63e30;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .cloud-providers-section {
    padding: 50px 0;
  }

  .cloud-providers-section .section-header h2 {
    font-size: 28px;
  }

  .provider-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .provider-card {
    padding: 30px 20px;
  }

  .vps-section {
    padding: 40px 20px;
    margin-top: 30px;
  }

  .vps-content h3 {
    font-size: 24px;
  }

  .vps-highlight {
    padding: 15px 30px;
    font-size: 16px;
  }

  .section-title {
    padding-top: 40px;
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .img-responsive {
    width: 100%;
    height: auto;
  }

  .choos-box h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .espace {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .integrated-solution-title {
    font-size: 26px;
  }

  .integrated-solution-description {
    font-size: 16px;
  }

  #cloud-benefits-section {
    padding: 40px 0;
  }

  .card-header {
    padding: 25px 20px 15px 20px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-body {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    padding-top: 30px;
  }

  .card-header {
    padding: 20px 15px 12px 15px;
  }

  .card-body {
    padding: 20px 15px;
  }

  .card-title {
    font-size: 18px;
  }

  .features-list li {
    font-size: 14px;
  }

  .benefits-box {
    padding: 15px;
  }

  .benefits-box p {
    font-size: 14px;
  }

  .vps-highlight {
    padding: 12px 25px;
    font-size: 14px;
  }
}