/* LAYOUT CONTAINERS*/
.container-email {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

@media (max-width: 1024px) {
  .container-email {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* SECTIONS & GRID*/
.section-x {
  padding: 60px 0 0 0;
  position: relative;
}

.section-x h2 {
  margin-bottom: 16px;
  line-height: 1.3;
  color: #1e3a5f;
}

.section-x > .container > .row > .w100 > p.txt-center {
  margin-bottom: 32px;
  line-height: 1.7;
  color: #555;
}

/* GRID BASE */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-x {
    padding: 48px 0 0;
  }
}

@media (max-width: 768px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-x {
    padding: 40px 0 0;
  }
}

/* CARDS*/
.card-x {
  background:#fff;
  border:1px solid #edf2ff;
  border-radius:20px;
  padding: 23px 23px 23px 23px;
  transition:all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-x:hover {
  transform: translateY(-8px) scale(1.02);
}

.card-x .fa-icon {
  font-size:28px;
  color:#324673;
  position: relative;
  z-index: 1;
  transition: all .3s ease;
  flex-shrink: 0;
}

.card-x:hover .fa-icon {
  color:#f26e35;
}

.control-total-card {
  margin-top:32px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  background: linear-gradient(135deg, #fff, #f9fbff);
  border:1px solid #edf2ff;
  text-align:center;
  padding:32px 36px;
}

.control-total-card .control-header {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.control-total-card .control-icon {
  width:58px;
  height:58px;
  border-radius:50%;
  background: linear-gradient(135deg, #324673, #516396);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  box-shadow:0 12px 25px rgba(50, 70, 115, 0.25);
}

.control-total-card .control-title {
  margin:0;
}

.control-total-card .control-description {
  max-width:700px;
  margin:0 auto;
  line-height:1.7;
}

.check li {
  margin:10px 0;
  line-height: 1.6;
}

.check li:before {
  content:'✓';
  color:#2f7a3e;
  margin-right:10px;
  font-weight:700;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .card-x {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .card-x,
  .control-total-card {
    padding: 20px;
  }
}

/* TIMELINE*/
.timeline {
  position:relative;
  margin: 0 auto;
  max-width: 700px;
  padding: 0 0 32px 0;
}

/*Linha junto dos dots timeline*/
.timeline:before {
  content:"";
  position:absolute;
  left:20px;
  top:0;
  bottom:0;
  width:3px;
  background: linear-gradient(180deg, #f26e35, #dbe6ff);
  border-radius: 999px;
}

.tl-item {
  position:relative;
  padding: 0 0 32px 60px;
}

.tl-title {
  margin-bottom:6px;
  color: #324673 !important;
  font-weight:700;
}

 /*Bolinhas da timeline*/
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position:absolute;
  left:11px;
  top:0;
  width:20px;
  height:20px;
  border-radius:999px;
  background: linear-gradient(135deg, #f26e35, #ff874f);
  border: 3px solid #fff;
}

.tl-head {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
}

.tl-head i {
  font-size:20px; color:#324673;
  font-weight:700;
  line-height: 1.4;
}

.tl-item p {
  line-height: 1.7;
  font-size: 16px;
  color: #555;
}

/*FAQ*/
.faq {
  background: #fff;
  border-radius: 20px;
  padding: 0 32px;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.faq-item {
  border-bottom:1px solid #f0f3ff;
  padding: 8px 0;
  color: #1a2b4a;
}

.faq-q {
  cursor:pointer;
  padding:18px 0;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition: color .2s ease;
  line-height: 1.5;
}

.faq-a {
  display:none;
  padding:0 0 20px;
  color:#555;
  line-height: 1.7;
}

.faq-arrow {
  color:#324673;
  transition: transform .3s ease;
  margin-left:12px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .faq {
    padding: 0 20px;
  }
}

/*EMAIL COMPARISON*/
.comparison {
  display:grid;
  gap:24px;
  margin:0 auto;
  max-width:900px;
  grid-template-columns: repeat(2, 1fr);
}

.comp-card {
  padding:32px;
  border-radius:20px;
  border:2px solid #edf2ff;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transition: left .6s ease;
}

.comp-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.comp-card.bad {
  background: linear-gradient(135deg, #fff7f7, #fffbfb);
  border-color:#e75d5d;
}

.comp-card.good {
  background: linear-gradient(135deg, #f9fbff, #fafcff);
  border-color:#324673;
}

.comp-icon {
  font-size:28px;
  margin-bottom:0;
  flex-shrink: 0;
}

.comp-icon.bad {
  color:#dc3545; }

.comp-icon.good {
  color:#324673;
}

.comp-list li {
  margin:12px 0;
  padding-left:28px;
  position:relative;
  line-height: 1.6;
}

.comp-list.bad li:before {
  content:'✗';
  color:#dc3545;
  position:absolute;
  left:0;
  font-weight:700;
  font-size: 18px;
}

.comp-list.good li:before {
  content:'✓';
  color:#324673;
  position:absolute;
  left:0;
  font-weight:700;
  font-size: 18px;
}

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

@media (max-width: 480px) {
  .comp-card {
    padding: 20px;
  }
}

/* STATS SECTION */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: opacity .35s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  will-change: transform, box-shadow;
  transform: translateY(-6px);
  border-color: #324673;
  box-shadow: 0 18px 32px rgba(50, 70, 115, 0.12);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #f26e35 0%, #ff874f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: #324673;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/*SCROLL ANIMATIONS*/
.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card.scroll-animate.visible:hover {
  transform: translateY(-6px);
}

/* Botão Seção Por que ter */
.btn-why {
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding: 16px 24px;
  border-radius:999px;
  background: linear-gradient(135deg, #324673, #4a5b82);
  color:#fff;
  font-weight:700;
  border:0;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 17px;
  position: relative;
  overflow: hidden;
}

/* Botão CTA Final */
.btn-cta-final {
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding: 16px 32px;
  border-radius:999px;
  background: linear-gradient(135deg, #f26e35 0%, #ff874f 100%);
  color:#fff;
  font-weight:700;
  border:0;
  text-decoration:none;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 17px;
  position: relative;
  overflow: hidden;
  margin-bottom:15px;
}

.btn-cta-final:hover {
  transform: translateY(-6px);
  filter: brightness(1.08);
}

.btn-hero {
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:18px 40px;
  font-size:18px;
  font-weight:700;
  background: linear-gradient(135deg, #f26e35 0%, #ff874f 100%);
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  transition: all 0.3s ease;
  border:2px solid transparent;
}

@media (max-width: 768px) {
  .btn-cta-final {
    padding: 16px 26px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .btn-hero,
  .btn-cta-final,
  .btn-why {
    width: 100%;
    justify-content: center;
  }
}

/* Fundo */
.hero-gradient {
  background: linear-gradient(135deg, #1a2b4a 0%, #2d4573 50%, #324673 100%);
  padding:100px 0 80px;
  position:relative;
  overflow:hidden;
}

/* Hero (topo) */
.hero-title {
  font-size:56px;
  line-height:1.2;
  margin:0 auto 28px;
  color:#fff;
}

.gradient-text {
  background: linear-gradient(135deg, #f26e35 0%, #ff874f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color:#fff;
  font-size:22px;
  line-height:1.6;
  margin:0 auto 16px;
  font-weight:500;
  max-width:700px;
}

.hero-description {
  color:rgba(255,255,255,0.85);
  font-size:18px;
  line-height:1.7;
  margin:0 auto 40px;
  max-width:650px;
}

.icon-info {
  font-size:20px;
  color:#fff;
}

.hero-info-wrapper {
  margin-top:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:-45px;
}

.hero-info-item {
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:15px;
}

.icon-success {
  color:#4ade80;
  font-size:18px;
}

@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .hero-subtitle { font-size: 20px; }
  .hero-description { font-size: 17px; }
}

@media (max-width: 768px) {
  .hero-gradient {
    padding: 80px 0 60px;
  }

  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  .hero-description { font-size: 16px; }

  .hero-info-wrapper {
    flex-direction: column;
    gap: 12px;
    margin-bottom: -25px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-description {
    font-size: 15px;
  }
}

.section-header {
  text-align:center;
  margin-bottom:32px;
}

.section-header-sm {
  text-align:center;
  margin-bottom:15px;
}

.section-header p {
  margin:0 auto;
  max-width:700px;
  line-height:1.7;
  color:#555;
}

/* Altura titulo section-header */
.h2-dark {
  margin-bottom:12px;
  color:#1a2b4a;
}

/* Altura titulo container-email */
.h2-dark-alt {
  color:#1e3a5f;
  margin-bottom:12px;
}

.text-max {
  max-width:620px;
  margin:0 auto 32px;
}

.text-max-xl {
  max-width:800px;
  margin:0 auto;
}

.stat-delay-1, .stat-delay-2 {
  transition-delay:.1s;
}

.stat-description {
  margin-top:12px;
  color:#555;
  line-height:1.6;
}

.flex-header {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.comp-card p {
  margin:0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom:10px;
}

.flex-header-md {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.flex-header-md h3 {
  margin:0;
  font-size: 20px;
  font-weight: 500;
  color: #212529;
}

.flex-header-lg {
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.badge-security {
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding: 16px 24px;
  border-radius:999px;
  background: linear-gradient(135deg, #324673, #4a5b82);
  color:#fff;
  font-weight:700;
  border:0;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom:15px;
}

.card-gradient-blue {
  background: linear-gradient(135deg, #f9fbff, #fafcff);
  border: 2px solid #324673;
}

.card-gradient-red {
  background: linear-gradient(135deg, #fff7f7, #fffbfb);
  border: 2px solid #e75d5d;
}

.icon-wrapper-blue {
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  background: linear-gradient(135deg, #324673, #4a5b82);
  border-radius:50%;
  flex-shrink:0;
}

.icon-wrapper-red {
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  background: linear-gradient(135deg, #dc3545, #e74c5c);
  border-radius:50%;
  flex-shrink:0;
}

.icon-white {
  font-size:22px;
  color:#fff;
}

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

.grid-custom {
  gap:28px;
  max-width:900px;
  margin:0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.cta-section {
  margin-top:60px;
}

.testimonial-card {
  background:#fff;
  border-radius:16px;
  padding: 5px;
  border:2px solid #e8edf5;
  height:100%;
  display:flex;
  flex-direction:column;
}

.testimonial-icon-wrapper {
  width: 35px;
  height: 35px;
  border-radius: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-content {
  flex:1;
  display:flex;
  flex-direction:column;
}

.testimonial-text {
  line-height:1.6;
  font-weight:500;
  margin: 18px;
  color: #1e3a5f;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  padding-top: 0px;
  border-top: 2px solid #e8edf5;
  margin-top: 10px;
  margin-left: 20px;
}

.testimonial-name {
  flex: 1;
  margin-top: 10px;
  margin-bottom: 5px;
}

.testimonial-link {
  color:#1e3a5f;
  text-decoration:none;
}

.h2-large {
  line-height:1.2;
  margin-bottom:20px;
  color: #1a2b4a;
}

.h2-mb-16 {
  margin-bottom:16px;
}

.faq-wrapper {
  max-width:900px;
  margin:0 auto;
}

.text-cta {
  margin:0 auto 32px;
  line-height:1.7;
}

@media (max-width: 480px) {
  .h2-large {
    font-size: 26px;
  }

  .h2-dark,
  .h2-dark-alt {
    font-size: 24px;
  }

  .icon-wrapper-blue,
  .icon-wrapper-red {
    width: 42px;
    height: 42px;
  }
}
