/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Product+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* Variables */
:root {
  --primary-bg: #1B1B1D;
  /* Standardized Dark Background */
  --accent-color: #FDE694;
  /* Yellow Accent */
  --accent-hover: #fde99f;
  --text-white: #ffffff;
  --text-dark: #000000;
  --cookie-bg: #FCBA7F;
  --font-main: 'Product Sans', 'Google Sans', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-feature-settings: 'normal';
}

/* Typography Overrides for specific sections if needed */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
}

/* --- Hero Section --- */
.hero {
  background: var(--primary-bg);
  color: var(--text-white);
  padding: 100px 0;
}

.logo {
  max-width: 150px;
  height: auto;
  width: 150px;
  /* Consolidating width rules */
}

/* --- Navbar --- */
.tarefa {
  width: 60px;
}

/* --- Services Section --- */
.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn-custom {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: capitalize;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--accent-hover);
}

/* Apoie Page Button Specifics (Consolidated) */
.btn-pix {
  background-color: var(--accent-color);
  color: #010440;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
}

.btn-pix:hover {
  background-color: var(--accent-hover);
  color: #010440;
}

/* --- Cards --- */
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
}

/* --- Cookie Consent --- */
.wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 365px;
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 999;
  font-family: var(--font-secondary);
  /* Hidden by default to prevent flash */
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.wrapper.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.wrapper img {
  max-width: 90px;
  margin-bottom: 10px;
}

.content header {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.content {
  margin-top: 10px;
}

.content p {
  color: #858585;
  margin: 5px 0 20px 0;
  font-family: var(--font-secondary);
}

.content .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons button {
  padding: 10px 20px;
  border: none;
  outline: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: var(--cookie-bg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
}

.buttons button:hover {
  transform: scale(0.97);
}

.buttons .item {
  margin: 0 10px;
}

.buttons a {
  color: var(--text-dark);
  font-family: var(--font-secondary);
}

::selection {
  color: #fff;
  background: var(--cookie-bg);
}

/* --- Apoie Page Specifics --- */
body.apoie-page {
  background-color: var(--primary-bg);
  color: var(--text-white);
  text-align: center;
  padding-top: 50px;
}

.apoie-page img.qr-code {
  max-width: 250px;
  margin: 20px 0;
}

/* --- Social Icons (Sobre Page) --- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  color: var(--primary-bg);
  /* Use dark color for icon by default (on white background) */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #0077b5;
  /* LinkedIn Blue or fallback */
  transform: scale(1.1);
}

.social-icon[aria-label="Instagram"]:hover {
  color: #E1306C;
  /* Instagram Color */
}