* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --error-color: #ef4444;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}
/* Base */
body {
  font-family: var(--font-family);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-primary);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 600;
}

/* HOME */
.container {
  grid-template-columns: 1fr !important;
  gap: 1.2rem !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.hamburger {
  display: flex;
}
.navbar {
  padding: 1rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand .logo {
  height: 40px;
  width: auto;
}
.nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--bg-primary);
  flex-direction: column;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  text-align: center;
  gap: 0;
}
.nav-menu.active {
  display: flex;
}
.nav-menu li {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  width: 100%;
}
.nav-menu li:last-child {
  border-bottom: none;
}
.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.nav-link.active::after {
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 56px;
  margin-left: -100px;
  border-radius: 0;
}
.nav-menu .btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  margin: 0 auto;
  max-width: 200px;
}
.nav-menu .btn-login:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

/* MAIN */
.hero-actions {
  display: inline;
}
.hero-actions .btn {
  margin: 1rem 0.5rem 0 0.5rem;
}
.hero-image img {
  width: 80%;
}
.section-header h2 {
  font-size: 1.5rem;
}
.section-title,
.page-title,
.cta-title,
.hero-title {
  font-size: 2.5rem !important;
}
.section-subtitle {
  margin: 0 auto 3rem auto;
  width: 95%;
}
.plans-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 95%;
  margin: 0 auto;
}
.plans-grid-detailed {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.plans-sources {
  margin: 1.5rem 0;
}

/* REGISTRO */
.howto-steps-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.domain-howto {
  padding: 1rem 1rem 2.5rem 1rem;
}
.domain-why {
  padding: 1rem 1rem 2.5rem 1rem;
}
.domain-howto .howto-title,
.domain-why .why-title {
  font-size: 1.1rem;
}
.domain-input,
.tech-specs,
.faq-grid {
  width: 95%;
  margin: 0 auto;
}
.why-benefit {
  padding: 1rem 0.7rem 1rem 0.7rem;
}
.why-list-simple li {
  font-size: 0.98rem;
  gap: 0.7rem;
}

/* RECURSOS */
.resources-overview .resources-grid,
.page-header .resources-grid,
.resources-grid {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 0.5rem;
  align-items: stretch !important;
  width: 95% !important;
  margin: 1.5rem auto !important;
  padding-top: 1.5rem !important;
}

/* HOSPEDAGEM */
.plan-card,
.plan-card-detailed,
.feature-card,
.testimonial-card,
.faq-quick-card {
  padding: 1.2rem 0.7rem !important;
  min-width: unset !important;
  max-width: 100% !important;
}
.feature-description {
  margin: 0 1.5rem 0.5rem 1.5rem;
}
.plans-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 95%;
  margin: 0 auto;
}
.plans-grid-detailed {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.plan-features,
.plan-features-detailed {
  padding-left: 2rem;
}
.plan-card,
.plan-card-detailed {
  margin-bottom: 2rem;
}
.plans-grid-detailed {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* WORDPRESS */
.wordpress-content {
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
  text-align: center !important;
}
.wordpress-info h2 {
  font-size: 2rem !important;
  margin-bottom: 1rem !important;
}
.wordpress-info p {
  font-size: 1rem !important;
  margin-bottom: 1.5rem !important;
}
.wordpress-grid {
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}
.wp-feature {
  padding: 1.25rem !important;
}
.wp-feature h4 {
  font-size: 1rem !important;
}
.wp-feature p {
  font-size: 0.85rem !important;
}
.wp-badge {
  width: 150px !important;
  height: 150px !important;
  margin: 1rem auto !important;
}
.wp-badge i {
  font-size: 3rem !important;
}
.wp-badge span {
  font-size: 0.85rem !important;
}

/* CONTATO */
.faq-quick-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 95%;
  margin: 0 auto;
}
.faq-footer {
  margin-top: 2rem;
}
.whatsapp-contact .container {
  padding: 0 0.5rem !important;
}
.whatsapp-content {
  flex-direction: column !important;
  gap: 2rem !important;
  align-items: stretch !important;
}
.whatsapp-info {
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}
.whatsapp-card {
  flex-direction: column !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 1.2rem 0.5rem !important;
}
.whatsapp-icon {
  font-size: 2.2rem !important;
  gap: 0.5rem !important;
  justify-content: center !important;
}
.btn-whatsapp {
  font-size: 1.1rem !important;
  padding: 0.9rem 1.5rem !important;
  width: 100% !important;
  max-width: 320px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.7rem !important;
}
.whatsapp-qr {
  display: none !important;
}
.whatsapp-content {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
.whatsapp-info {
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto !important;
  padding: 0 0.5rem 2.5rem 0.5rem !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* FOOTER */
.footer-content {
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.hero-content {
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.hero-title {
  font-size: 2.5rem;
}
.hero-stats {
  justify-content: center;
}
.hero-image {
  margin-top: 2.5rem;
}

/* WHATSAPP */
.whatsapp-float {
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
}
.whatsapp-float .fab.fa-whatsapp {
  font-size: 1.75rem;
}

/* FAQ */
.faq-grid {
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}
.faq-row {
  display: contents !important;
}
.faq-row .faq-item {
  width: 100% !important;
  max-width: none !important;
}
.faq-question-interactive {
  padding: 1rem 1.25rem !important;
}

.faq-question-interactive h3 {
  font-size: 0.95rem !important;
}
.faq-question-interactive i {
  margin-left: 0.75rem !important;
  font-size: 0.85rem !important;
}
