/*
Theme Name: Aline Bacci Corretora
Description: Tema profissional para corretora de seguros
Version: 1.0
Author: Custom Theme
*/

/* DESIGN SYSTEM PARA WORDPRESS - Aline Bacci Corretora */

:root {
  /* Cores principais */
  --primary-color: hsl(215, 84%, 35%);
  --primary-light: hsl(215, 84%, 45%);
  --primary-dark: hsl(215, 84%, 25%);
  --secondary-color: hsl(45, 93%, 47%);
  --secondary-light: hsl(45, 93%, 57%);
  --success-color: hsl(142, 76%, 36%);
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  
  /* Sombras */
  --shadow-soft: 0 4px 24px -6px rgba(46, 97, 173, 0.15);
  --shadow-medium: 0 8px 32px -8px rgba(46, 97, 173, 0.25);
  --shadow-strong: 0 16px 48px -12px rgba(46, 97, 173, 0.35);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
}

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

/* BOTÕES PERSONALIZADOS */
.btn-whatsapp {
  background-color: var(--success-color);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-medium);
  opacity: 0.9;
  color: white;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-medium);
  opacity: 0.9;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  text-decoration: none;
}

/* SEÇÕES */
.hero-section {
  background: var(--gradient-hero);
  color: white;
  padding: 80px 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.cta-section {
  background: var(--gradient-hero);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

/* CARDS */
.feature-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* TIPOGRAFIA */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1e293b;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #64748b;
  margin-bottom: 64px;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* FOOTER */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 30px;
}

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

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 30px;
  text-align: center;
  color: #94a3b8;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn-whatsapp,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* UTILITÁRIOS */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.section-padding { padding: 80px 0; }
.element-gap { gap: 32px; }