/* Identidade Visual - Site em Construção */

/* Fonte personalizada Lasters */
@font-face {
  font-family: 'Lasters';
  src: url('lasters/Lasters.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --overlay: rgba(0,0,0,.45);
  --primary-color: #fff;
  --accent-color: #f8f9fa;
  --text-shadow: 0 2px 12px rgba(0,0,0,.8);
  --transition: all 0.3s ease;
  --lasters-font: 'Lasters', 'Nunito', ui-sans-serif, system-ui, sans-serif;
}

* { 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
}

body {
  margin: 0; 
  background: #000; 
  color: var(--primary-color);
  font-family: 'Nunito', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

/* Imagem de fundo principal */
.bg {
  position: fixed; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  z-index: -2; 
  image-rendering: -webkit-optimize-contrast; 
  image-rendering: crisp-edges;
  transition: var(--transition);
}

.overlay {
  position: fixed; 
  inset: 0; 
  background: var(--overlay); 
  z-index: -1;
}

/* Layout principal */
.wrap {
  height: 100%; 
  display: grid; 
  place-items: center; 
  text-align: center; 
  padding: 24px;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

/* Tipografia */
.title {
  font-family: var(--lasters-font);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: normal;
  margin: 0 0 20px 0;
  text-shadow: var(--text-shadow);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.msg {
  font-size: clamp(18px, 3.5vw, 30px); 
  font-weight: 300; 
  letter-spacing: 0.2px; 
  text-shadow: var(--text-shadow);
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}

/* Botões Flutuantes */
.floating-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 60px;
  color: var(--primary-color);
  text-decoration: none;
  font-family: var(--lasters-font);
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-width: 220px;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

/* Efeito shimmer nos botões */
.floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.floating-btn:hover::before {
  left: 100%;
}

.floating-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  letter-spacing: 1.5px;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-text {
  font-family: var(--lasters-font);
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

/* Cores específicas dos botões com gradientes */
.portfolio-btn:hover {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.25), rgba(102, 126, 234, 0.25));
  border-color: rgba(0, 123, 255, 0.6);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.3);
}

.budget-btn:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(34, 197, 94, 0.25));
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
}

.contact-btn:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(245, 158, 11, 0.25));
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.3);
}

/* Tooltip do email */
.email-tooltip {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.email-tooltip span {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.email-tooltip small {
  font-size: 12px;
  opacity: 0.8;
}



/* Responsividade */
@media (max-width: 768px) {
  .wrap {
    padding: 16px;
  }

  .floating-buttons {
    margin-top: 30px;
    gap: 16px;
  }

  .floating-btn {
    min-width: 200px;
    padding: 16px 24px;
    font-size: 16px;
    gap: 16px;
  }

  .btn-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 12px;
  }

  .title {
    margin-bottom: 16px;
  }

  .floating-buttons {
    margin-top: 24px;
    gap: 14px;
  }

  .floating-btn {
    min-width: 180px;
    padding: 14px 20px;
    font-size: 15px;
    gap: 14px;
  }

  .btn-text {
    font-size: 14px;
    letter-spacing: 0.8px;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
  }

  .btn-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Animações sutis */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.content {
  animation: fadeIn 1s ease-out;
}

/* Estados de hover para elementos interativos futuros */
.interactive-element {
  transition: var(--transition);
  cursor: pointer;
}

.interactive-element:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 16px rgba(0,0,0,.8);
}
