/* ====== ESTILO GERAL ====== */
body {
  background-color: #ffe6f2; /* rosa clarinho */
  color: #333;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: #b30059;
  margin: 1rem 0 2rem;
}

h2 {
  color: #993366;
  margin-top: 2rem;
}

p {
  text-align: center;
  font-size: 1.1rem;
}


/* ====== HEADER E MENU ====== */
header {
  background: linear-gradient(90deg, #ff99cc, #d98ccc);
  text-align: center;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid #fafafa;
  border-radius: 4px;
  color: white;
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}

ul.menu {
  list-style-type: none;
  margin: 1rem 0 0 0;
  padding: 14px 20px;
  background: linear-gradient(90deg, #f472b6, #ec4899);
  display: flex;
  justify-content: center;
  border-radius: 4px;
  gap: 1.5rem;
}

ul.menu > li {
  position: relative;
}

ul.menu li a {
  display: block;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

ul.menu li a:hover,
ul.menu li a.active {
  background-color: #f9a8d4;
  color: #9d174d;
}

/* ====== SUBMENU ====== */
ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f490c1;
  min-width: 200px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  border-radius: 4px;
}

ul.submenu li a {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(202, 42, 100, 0.849);
}

ul.submenu li a:hover {
  background: #f9a8d4;
}

ul.menu li:hover > ul.submenu {
  display: block;
}

/* ====== SEÇÕES ====== */
.intro, .intro-card, main section {
  width: 80%;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.intro h2, .intro-card h2, main h2 {
  color: #cc2e7a;
  margin-bottom: 1rem;

  padding-left: 0rem;
}

.intro p, .intro-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* ====== CARDS ====== */
.cards-inicio {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.cards-inicio .card,
.card {
  flex: 1 1 250px;
  background: #fff;
  padding: 1.5rem;
  margin: 1.5rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  max-width: 700px;
}

.cards-inicio .card:hover,
.card:hover {
  transform: translateY(-5px);
}

.cards-inicio .card h3 {
  color: #ec4899;
  margin-bottom: 10px;
}


/* ====== PERFIL ====== */
.foto-perfil {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #ff99cc;
  object-fit: cover;
}

.info h2 {
  margin: 0 0 0.5rem;
  color: #cc2e7a;
}

.info p {
  margin: 0.3rem 0;
}

/* ====== IFRAME ====== */
.iframe-container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  border: 3px solid #ec4899;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* ====== RODAPÉ ====== */
footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background: linear-gradient(90deg, #ff99cc, #d98ccc);
  color: white;
}

.titulo-petshop {
  text-align: center;
  color: #b30059;
  margin-top: 2rem;
}


/* ====== Menu feito com lista ====== */
ul.menu1 {
  list-style-type: none; 
  margin:0; 
  padding: 0; 
  background-color: #f2a4d3;
  overflow: hidden;
  
}

 ul.menu1 li {
  float: left;
  
}

 ul.menu1 li a {
  display: block;
  color:white;
  text-align: center; 
  padding: 14px 20px; 
  text-decoration: none;
  transition:background-color 0.3s;
}

 ul.menu1 li a:hover{
  background-color: #f1b9e6;
}


/* ====== Menu feito com tabela ====== */
table.menu {
  width: 100%; 
  background-color:#f2a4d3;
  border-collapse: collapse;
}
 table.menu td {
  padding: 14px 20px;
  text-align: center; 
  border-right: 1px solid#f1b9e6;
}

 table.menu td:last-child {
  border-right:none;
}

 table.menu a {
  color: white;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

 table.menu a:hover {
  background-color:#f1b9e6;
}


.contatos h2 {
  color: #cc2e7a;
  margin-bottom: 1rem;
}

.contatos p {
  margin-bottom: 1.5rem;
  color: #555;
}

.contatos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.contatos-lista li {
  margin: 12px 0;
  font-size: 1.1rem;
}

.contatos-lista a {
  color: #ec4899;
  font-weight: bold;
  text-decoration: none;
}

.contatos-lista a:hover {
  text-decoration: underline;
}