/* Fonte Brasika */
@font-face {
  font-family: 'Brasika';
  src: url('fonts/Brasika.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Paleta de cores */
:root {
  --primary-color: #bb2649;
  --secondary-color: #f7c0bf;
  --highlight-color: #ff4f70;
  --text-color: #333;
  --background-color: #fff;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  padding: 1rem;
}

/* Cabeçalho */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-family: 'Brasika', serif;
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
}

header p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Sobre Ela */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.about .photo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
}

.about .description {
  flex: 1;
  font-size: 1.1rem;
}

.about .description strong {
  color: var(--primary-color);
}

/* Projetos / Trabalhos */
.projects {
  padding: 2rem 1rem;
}

.projects h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.project-section {
  margin-bottom: 2.5rem;
}

.project-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.3rem;
}

/* Cards Desenvolvimento de Produto */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  background: var(--secondary-color);
  border-radius: 12px;
  width: 220px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(187, 38, 73, 0.25);
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.card h4 {
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Vídeos Social Media e Cobertura de Evento */
.project-section video.video-vertical {
  display: block;
  margin: 0 auto 0.5rem auto;
  width: 220px;
  height: 390px; /* proporção vertical estilo TikTok */
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(187, 38, 73, 0.3);
}

.project-section p {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-color);
}

/* Áreas de Atuação */
.areas {
  background-color: var(--secondary-color);
  padding: 2rem 1rem;
  text-align: center;
}

.areas h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.area-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.area-card {
  background: white;
  border-radius: 15px;
  width: 220px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(187, 38, 73, 0.25);
}

.area-card .icon {
  font-size: 2.5rem;
  color: var(--highlight-color);
  margin-bottom: 0.5rem;
  display: block;
}

.area-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.area-card p {
  font-size: 0.95rem;
  color: var(--text-color);
}

/* Contato */
.contact {
  padding: 2rem 1rem;
  text-align: center;
}

.contact h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn.whatsapp {
  background-color: #25d366;
}

.btn.whatsapp:hover {
  background-color: #1da851;
}

.btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn.instagram:hover {
  filter: brightness(0.9);
}

.btn.linkedin {
  background-color: #0077b5;
}

.btn.linkedin:hover {
  background-color: #005983;
}

.email-contact {
  margin-top: 1rem;
}

.email-contact label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.email-contact input {
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 220px;
  font-size: 1rem;
  color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: center;
  }
  .cards, .area-cards {
    flex-direction: column;
    align-items: center;
  }
  .card, .area-card {
    width: 90%;
    max-width: 320px;
  }
}
