/*
 Theme Name: Divi Child
 Description: Divi Child Theme
 Author: Deltify
 Author URI: deltify.pt
 Template: Divi
 Version: 1.0.0
*/
 
/* =Theme customization starts here
------------------------------------------------------- */

:root {
    }

    @media (max-width: 760px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .header-inner {
        min-height: 72px;
      }

      .hero,
      .section,
      .form-section {
        padding: 58px 0;
      }

      .hero-actions,
      .form-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-card {
        min-height: 430px;
      }

      .hero-card-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 22px;
      }

      .metric-grid,
      .trust-grid,
      .steps-grid,
      .form-row {
        grid-template-columns: 1fr;
      }

      .form-card {
        padding: 24px;
      }
    }

    .trust-editorial-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.trust-editorial {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-editorial h2 {
  color: #fff;
}

.trust-editorial-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.trust-checklist {
  display: grid;
  gap: 16px;
}

.trust-check {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-check span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.18);
  color: var(--color-secondary);
  font-weight: 800;
}

.trust-check strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 15px;
}

.trust-check p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 880px) {
  .trust-editorial {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .trust-editorial {
    padding: 28px 22px;
  }
}