@charset "UTF-8";
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(90deg, rgb(234, 194, 48), orangered);
    color: white;
    /* removi display:flex, justify-content, align-items, height */
  }
  
.container {
    text-align: center;
    max-width: 1200px; /* ou o valor que quiseres */
    margin: 0 auto;
    padding: 20px;
}
h1 {
    font-size: 3em;
    margin-bottom: 10px;
}
p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.slogan{width: 40%;margin: 0 auto;}
button {
    background: white;
    color: orangered;
    border: none;
    padding: 12px 25px;
    margin: 10px;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background: rgb(234, 194, 48);
    color: black;
}
.form {
    display: none;
    background: white;
    color: black;
    padding: 30px;
    border-radius: 15px;
   
}
input , .perfil-icon{
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 80%;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
}
.perfil-icon{
    overflow: hidden;
    height: 16px;
}
.login-btn{
    padding: 12px 150px;
}
.upload-area {
    width: 150px;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    margin: 20px auto;
    position: relative;
}
.upload-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upload-text {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
  #fileInput {
    display: none;
}
#loginForm{margin: 100px auto;}
#signupForm{margin: 10px auto;}
  /* Área dos cards */
#landing {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}
  
#landing h1 {
    font-size: 3em;
    margin-bottom: 10px;
}
#landing p {
    font-size: 1.3em;
    margin-bottom: 40px;
}
.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
  }
  .card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s;
  }
  .card:hover {
    transform: scale(1.05);
  }
  .card img {
    width: 40px;
    margin-bottom: 10px;
  }
  .agent-benefits {
    display: flex;
    flex-direction: column;  /* um embaixo do outro */
    gap: 15px;               /* espaço entre eles */
    max-width: 600px;
    margin: 30px auto;
  }
  
  .benefit {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    transition: transform 0.2s, background 0.3s;
  }
  
  .benefit:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.2);
  }
  
  .benefit .icon {
    font-size: 1.8em;
    margin-right: 15px;
  }
  
.benefit p {
    margin: 0;
    font-size: 1.1em;
    color: white;
    position: relative;
    top: 22px;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
  }
  
  .plan {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
  }
  
  .plan:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.2);
  }
  
  .plan h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: white;
  }
  
  .plan p {
    font-size: 1em;
    color: #f0f0f0;
    margin: 10px 0;
  }
  
  .plan .price {
    font-size: 1.3em;
    font-weight: bold;
    color: gold;
  }
  
  .plan button {
    background: white;
    color: orangered;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .plan button:hover {
    background: rgb(234, 194, 48);
    color: black;
  }
  
  /* destacar plano mais popular */
  .plan.popular {
    border: 2px solid gold;
    transform: scale(1.05);
  }

  #how-it-works {
    text-align: center;
    padding: 40px 20px;
    background: rgba(243, 151, 76, .5);
  }
  
  #how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
  }
  
  .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .step {
    width: 220px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }
  
  .step:hover {
    transform: translateY(-5px);
  }
  
  .step .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
  }
  
  #final-cta {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(90deg, rgb(234, 194, 48), orangered);
    color: white;
  }
  
  #final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  #final-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  #final-cta button {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: white;
    color: orangered;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #final-cta button:hover {
    background: #f1f1f1;
  }

  #testimonials {
    padding: 50px 20px;
    background: transparent;
    text-align: center;
  }
  
  #testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
  }
  
  .carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial {
    display: none;
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-style: italic;
    transition: opacity 0.3s ease-in-out;
  }
  
  .testimonial.active {
    display: block;
  }
  
  .testimonial .author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-style: normal;
    text-align: left;
  }
  
  .testimonial .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .controls {
    margin-top: 15px;
  }
  
  .controls button {
    background: orangered;
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
  }
  
  .controls button:hover {
    background: rgb(234, 194, 48);
    color: black;
  }
  #footer {
    background: #111;
    color: #ddd;
    padding: 40px 20px 20px;
    font-size: 0.95em;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 250px;
  }
  
  .footer-section h3 {
    color: orangered;
    margin-bottom: 15px;
  }
  
  .footer-section p {
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
  }
  
  .footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: rgb(234, 194, 48);
  }
  
  .social-icons a {
    margin-right: 10px;
    display: inline-block;
  }
  
  .social-icons img {
    filter: invert(90%);
    transition: transform 0.3s;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 0.85em;
    color: #aaa;
  }
  /* Select estilizado (tipo de utilizador no signup) */
select {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 82%;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1em;
  transition: 0.3s;
  cursor: pointer;
}

select:hover {
  border-color: orangered;
  background: #fff;
}

select:focus {
  border-color: rgb(234, 194, 48);
  box-shadow: 0 0 6px rgba(234, 194, 48, 0.8);
}

select option {
  background: white;
  color: #333;
  padding: 8px;
}
  