/* ===================================
   SETA TELECOM - GLOBAL STYLES
   Professional Blue Theme
   =================================== */

:root {
  --primary-blue: #003366;
  --primary-blue-light: #0066cc;
  --accent-green: #00cc66;
  --accent-orange: #ff6600;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* ===================================
   HEADER
   =================================== */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -1px;
  white-space: nowrap;
}

.logo-seta {
  color: var(--primary-blue);
}

.logo-telecom {
  color: var(--primary-blue-light);
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.main-nav > a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-nav > a:hover {
  background: #e6f7ff;
  color: var(--primary-blue-light);
}

.header-cta {
  background: var(--accent-green);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-cta:hover {
  background: #00b359;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 204, 102, 0.3);
}

/* ===================================
   HERO BANNER
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  font-size: 1.15rem;
}

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

.btn-primary:hover {
  background: #00b359;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 204, 102, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

/* ===================================
   CONTAINER
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 70px;
  font-size: 1.2rem;
}

/* ===================================
   BENEFITS GRID
   =================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  border-left: 5px solid var(--primary-blue-light);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.benefit-description {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===================================
   CTA "NÃO ENCONTROU?"
   =================================== */
.cta-not-found {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin: 60px 0;
  border-radius: 12px;
  text-align: center;
}

.cta-not-found h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-not-found p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   HUBSPOT FORM SECTION
   =================================== */
.hubspot-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin: 60px 0;
  border-radius: 12px;
}

.hubspot-form-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hubspot-form-container h2 {
  font-size: 2.5em;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.hubspot-form-container > p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hubspot-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hubspot-form-disclaimer {
  margin-top: 30px;
  color: #666;
  font-size: 0.95em;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: #111827;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

footer a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
  fill: white;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

