/* ========================================
   RESET BASE
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f6f8fb;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ========================================
   CONTAINER
======================================== */

.ct-container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.ct-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e9ef;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ct-logo img {
  height: 42px;
}

/* ========================================
   HERO
======================================== */

.ct-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.ct-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ct-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
}

/* ========================================
   CARD CONTATO
======================================== */

.ct-contact {
  padding: 40px 0 80px;
}

.ct-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.ct-card:hover {
  transform: translateY(-4px);
}

.ct-avatar {
  margin-bottom: 25px;
}

.ct-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f2f7;
}

.ct-card h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.ct-subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* ========================================
   BOTÕES
======================================== */

.ct-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.ct-btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.ct-btn-whats {
  background: #25D366;
  color: #fff;
}

.ct-btn-whats:hover {
  background: #1ebe5d;
}

.ct-btn-telegram {
  background: #0088cc;
  color: #fff;
}

.ct-btn-telegram:hover {
  background: #007ab8;
}

.ct-btn-email {
  background: #2d3748;
  color: #fff;
}

.ct-btn-email:hover {
  background: #1f2937;
}

/* ========================================
   INFO SECTION
======================================== */

.ct-info {
  padding: 70px 0;
  background: #ffffff;
  text-align: center;
}

.ct-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.ct-info p {
  max-width: 750px;
  margin: 0 auto 15px;
  color: #555;
}

/* ========================================
   FOOTER
======================================== */

.ct-footer {
  padding: 30px 0;
  text-align: center;
  background: #111;
  color: #bbb;
  font-size: 0.9rem;
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 768px) {

  .ct-hero h1 {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .ct-card {
    padding: 35px 20px;
  }

  .ct-avatar img {
    width: 100px;
    height: 100px;
  }

}


/* ===============================
   OCULTAR TRUST STRIP NO MOBILE
=================================*/

@media (max-width: 768px) {
  .df-trust {
    display: none !important;
  }
}
