/* Telesoporte.net — Purple theme #805DE6 */

:root {
  --purple: #805DE6;
  --purple-dark: #6344c4;
  --purple-light: #9b7aed;
  --purple-bg: #f5f1fc;
  --purple-bg-dark: #2d2444;
  --white: #ffffff;
  --text: #1a1625;
  --text-muted: #5c5268;
  --border: #e5dfef;
  --shadow: 0 4px 20px rgba(128, 93, 230, 0.12);
  --shadow-lg: 0 12px 40px rgba(128, 93, 230, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo-link {
  display: block;
}

.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--purple);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--purple);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--purple-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--white) 50%, rgba(155, 122, 237, 0.08) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(128, 93, 230, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 1rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--purple-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-secondary:hover {
  background: var(--purple-bg);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2rem;
  text-align: center;
}

/* Services grid */
.services {
  background: var(--purple-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
  line-height: 1;
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Why us */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 520px;
  margin: 0 auto;
}

.why-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2.25rem;
  font-size: 1.0625rem;
  color: var(--text);
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--purple-bg) 0%, var(--white) 100%);
}

.contact-intro {
  text-align: center;
  color: var(--text-muted);
  margin: 0 auto 1.5rem;
  max-width: 36ch;
}

.contact-block {
  text-align: center;
}

.contact-phone {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.contact-phone:hover {
  color: var(--purple-dark);
}

.contact-note {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--purple-bg-dark);
  color: var(--white);
  padding: 3rem 0;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.footer-tagline {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin: 0 0 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.875rem;
  opacity: 0.7;
  margin: 0;
}
