/*
Theme Name: SJR Corretora de Seguros
Theme URI: https://sjrcorretora.com.br
Author: SJR Corretora
Description: Tema WordPress premium dark para SJR Corretora de Seguros - Gestão de Riscos 360°
Version: 1.0.0
Text Domain: sjr-corretora
*/

:root {
  --bg-dark: #07142E;
  --bg-medium: #0B2545;
  --blue-accent: #2F80ED;
  --blue-light: #4EA5D9;
  --white: #FFFFFF;
  --gray-text: #D9E1EA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
}

h1, h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--blue-accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #2569c7;
  box-shadow: 0 0 20px rgba(47, 128, 237, 0.4);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(7, 20, 46, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img { height: 45px; }

.nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }
.section-medium { background: var(--bg-medium); }
.section-light { background: var(--white); color: var(--bg-dark); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(47, 128, 237, 0.2);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--blue-accent);
  box-shadow: 0 0 30px rgba(47, 128, 237, 0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--blue-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(47, 128, 237, 0.4);
  animation: pulse 2s infinite;
  z-index: 999;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(47, 128, 237, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(47, 128, 237, 0.7); }
}

.footer {
  background: var(--bg-medium);
  padding: 60px 0 30px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(47, 128, 237, 0.2);
  color: var(--gray-text);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .nav { display: none; }
  .cards { grid-template-columns: 1fr; }
}
