* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #fff0f7, #f8b6dc);
    color: #333;
    line-height: 1.6;
}

/* HEADER */
header {
    background: linear-gradient(90deg, #b7367b, #c21875);
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 28px;
    letter-spacing: 1px;
}

/* MAIN */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

/* SEÇÕES */
section {
    margin-bottom: 50px;
}

h2 {
    margin-bottom: 15px;
    color: #c21875;
}

/* SERVIÇOS */
#divServicos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #ff3ea5;
    margin-bottom: 10px;
}

.card button {
    margin-top: 15px;
    padding: 8px 15px;
    border: none;
    background: linear-gradient(90deg, #ff3ea5, #c21875);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    opacity: 0.8;
}

/* FORM */
form {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #c21875;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

button {
    margin-top: 20px;
    padding: 12px;
    border: none;
    background: linear-gradient(90deg, #ff3ea5, #c21875);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

button:hover {
    opacity: 0.85;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #fff;
    margin-top: 50px;
    font-size: 14px;
    color: #c21875;
}

img {
    width: 80px;
    border-radius: 20px;
}

.mostrar {
    display: block;
}
.card {
    background: white;
    color: white;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}

.card p {
    margin-top: 10px;
    font-size: 14px;
    color: black;
}

.cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(90deg, #ff3ea5, #c21875);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
/* DEPOIMENTOS
*/
.depoimentos{
  padding: 60px 20px;
}

.depoimentos h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.depoimentos .sub{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px auto;
  opacity: .85;
}

.grid-depo{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.depo-card{
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  backdrop-filter: blur(6px);
  transition: transform .15s ease, box-shadow .15s ease;
}

.depo-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

.depo-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #ff3ea5, #c21875);
}

.depo-meta strong{
  display: block;
  font-size: 1rem;
}

.depo-meta span{
  display: block;
  font-size: .9rem;
  opacity: .75;
}

.depo-text{
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 12px 0;
  opacity: .95;
}

.depo-stars{
  letter-spacing: 2px;
  font-size: 1rem;
  user-select: none;
}

/* Responsivo */
@media (max-width: 900px){
  .grid-depo{ grid-template-columns: 1fr; }
}
