.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for html, class: .elementor-element-24b4e36 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #000;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 40px;
}

.menu {
  margin-left: auto; 
  margin-right: 20px;
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}

.menu a:hover {
  color: #6c63ff;
}

.btn {
  padding: 10px 20px;
  border: 2px solid #6c63ff;
  border-radius: 10px;
  text-decoration: none;
  color: #6c63ff;
  font-weight: bold;
  transition: 0.3s;
}

/* HERO SECTION */
.hero {
  height: 550px;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 30%, transparent), url('img/rp_telemoveis.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: white;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ccc;
}

.highlight {
  color: #5d46e2;
}

.btn-purple {
  background-color: #5d46e2;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* SEÇÃO "O QUE FAZEMOS" (Título e Texto Grandes) */
.section {
  padding: 80px 40px;
}

.center {
  text-align: center;
}

.center h2 {
  font-size: 42px; /* Aumentado */
  font-weight: 700;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 18px; /* Aumentado */
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 40px 20px;
  width: 230px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: #777;
}

/* GRID SELECTION (Imagem do lado esquerdo) */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Duas colunas para meter a imagem do lado */
  gap: 60px;
  padding: 80px;
  background-color: #fafafa;
  align-items: center;
}

.image-box {
  height: 450px;
  background: url('img/rp_telemoveis2.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.list {
  list-style: none;
  margin-top: 25px;
}

.list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.list li::before {
  content: "✓";
  background: #5d46e2;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: bold;
}

/* CONTACT BANNER */
.contact-banner {
  background-color: #1a0b63;
  color: white;
  max-width: 1100px;
  margin: 60px auto;
  padding: 50px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-divider {
  width: 50px;
  height: 3px;
  background: #fff;
  margin: 15px 0;
}

.btn-white {
  background: white;
  color: #1a0b63;
  padding: 15px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 80px;
  background: #fff;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.footer-links a {
  margin-right: 20px;
  text-decoration: none;
  color: #000;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr; /* No telemóvel a imagem fica em cima da lista */
    padding: 40px 20px;
  }
  .contact-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}/* End custom CSS */