/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #03060c 0%, #0a111f 100%);
  color: #eef2ff;
  scroll-behavior: smooth;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #38bdf8;
  border-radius: 10px;
}

/* ===== HEADER ===== */
header {
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(10px);
  background: rgba(3, 6, 12, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #38bdf8;
}

.btn-outline-light {
  border: 1.5px solid #38bdf8;
  background: transparent;
  padding: 8px 20px;
  border-radius: 40px;
  color: #38bdf8;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-light:hover {
  background: #38bdf8;
  color: #0a0f1f;
  transform: scale(1.02);
}

/* mobile menu */
.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #38bdf8;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 280px;
  height: 100%;
  background: #0b1120;
  z-index: 1000;
  transition: 0.3s ease;
  padding: 30px 24px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  border-left: 1px solid #38bdf8;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  text-align: right;
}

.close-menu {
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 40px;
}

.mobile-menu ul li {
  margin: 24px 0;
}

.mobile-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

.mobile-contact {
  background: #38bdf8;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  color: #0a0f1f !important;
}

/* ===== HERO ===== */
.hero {
  padding: 70px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(120deg, #ffffff, #38bdf8, #2dd4bf);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: #cbd5e6;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stat span {
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
}

.stat small {
  color: #94a3b8;
  font-size: 0.8rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #38bdf8;
  color: #0a0f1f;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #2dd4bf;
  transform: translateY(-3px);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.floating-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.4);
}

.card-icon {
  font-size: 3rem;
  color: #38bdf8;
  margin-bottom: 16px;
}

.floating-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card-tag {
  background: #38bdf8;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #0a0f1f;
  margin-top: 16px;
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.servico-card {
  background: rgba(10, 18, 30, 0.6);
  backdrop-filter: blur(4px);
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  transition: 0.25s;
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.servico-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.4);
}

.card-icon-large {
  font-size: 3rem;
  color: #38bdf8;
  margin-bottom: 20px;
}

.servico-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* ===== SOBRE A EMPRESA ===== */
.sobre {
  padding: 60px 0 80px;
}

.sobre-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
}

.sobre-tag {
  display: inline-block;
  background: #1e2a47;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sobre-texto p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.selos {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.selos div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2dd4bf;
}

.citacao-box {
  background: linear-gradient(145deg, #0f172f, #070c18);
  padding: 36px 28px;
  border-radius: 32px;
  border-left: 5px solid #38bdf8;
}

.citacao-box i {
  font-size: 2rem;
  color: #38bdf8;
  opacity: 0.7;
  margin-bottom: 16px;
  display: inline-block;
}

.citacao-box p {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
}

/* ===== SOBRE O CRIADOR - OTÁVIO MENDES ===== */
.criador {
  padding: 80px 0;
  background: linear-gradient(135deg, #07111f 0%, #03060c 100%);
}

.criador-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

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

/* ESTILO CORRETO PARA A FOTO DO CRIADOR */
.foto-criador {
  width: 100%;
  max-width: 245px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #38bdf8;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.foto-criador:hover {
  transform: scale(1.02);
}

.criador-conteudo h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.criador-titulo {
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.criador-conteudo p {
  color: #cbd5e1;
  margin-bottom: 18px;
  line-height: 1.6;
}

.criador-redes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0 20px;
}

.criador-redes a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.criador-redes a:hover {
  color: #38bdf8;
}

.criador-habilidades {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.criador-habilidades span {
  background: rgba(56, 189, 248, 0.12);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* ===== CONTATO ===== */
.contato {
  padding: 40px 0 80px;
}

.contato-card-principal {
  background: linear-gradient(125deg, #0f1a2e, #040a16);
  border-radius: 48px;
  padding: 48px 40px;
  border: 1px solid #38bdf8;
}

.contato-conteudo h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contato-conteudo p {
  margin-bottom: 28px;
}

.contato-botoes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-whatsapp-grande, .btn-instagram-grande, .btn-linktree {
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: 0.2s;
}

.btn-whatsapp-grande {
  background: #25D366;
  color: white;
}

.btn-whatsapp-grande:hover {
  background: #128C7E;
  transform: scale(1.02);
}

.btn-instagram-grande {
  background: #e4405f;
  color: white;
}

.btn-instagram-grande:hover {
  background: #c13584;
  transform: scale(1.02);
}

.btn-linktree {
  background: #0a0f1f;
  border: 1px solid #38bdf8;
  color: #38bdf8;
}

.btn-linktree:hover {
  background: #38bdf8;
  color: #0a0f1f;
  transform: scale(1.02);
}

.contato-info p {
  margin: 8px 0;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding: 48px 0 24px;
  margin-top: 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 32px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-footer a {
  color: #cbd5e1;
  font-size: 1.4rem;
  margin-right: 16px;
  transition: 0.2s;
}

.social-footer a:hover {
  color: #38bdf8;
}

.footer-links h4, .footer-contato h4 {
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #6c7a91;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
}


/* ===== RESPONSIVO ===== */
@media (max-width: 880px) {
  .hero-grid, .sobre-wrapper, .criador-wrapper {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .criador-imagem {
    order: -1;
  }
  
  .contato-card-principal {
    padding: 32px 24px;
  }
  
  .foto-criador {
    max-width: 200px;
    height: 220px;
  }
}