/*
Theme Name: Webhive Agency Theme
Theme URI: https://webhive.com.br
Author: Webhive Team
Description: Tema premium de alta performance para Webhive Agency e Landing Page Maxnivel integrada.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: webhive
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  /* Colors */
  --bg-primary: #07090e;
  --bg-secondary: #0c0f17;
  --bg-tertiary: #131722;
  --accent-primary: #F29900;
  --accent-secondary: #FFB700;
  --accent-gradient: linear-gradient(135deg, #F29900 0%, #FFB700 100%);
  --glow-gradient: linear-gradient(135deg, rgba(242, 153, 0, 0.15) 0%, rgba(255, 183, 0, 0.05) 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(242, 153, 0, 0.2);
  
  /* Glassmorphism */
  --glass-bg: rgba(12, 15, 23, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: rgba(0, 0, 0, 0.4);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}
html :where([style*=border-color]) {
    border-style: inherit !important;
}
/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background hive elements (hexagonal grid) */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 15%, rgba(242, 153, 0, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 80% 65%, rgba(255, 183, 0, 0.04) 0%, transparent 40%);
  z-index: -2;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge style */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glow-gradient);
  border: 1px solid rgba(242, 153, 0, 0.25);
  color: var(--accent-secondary);
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

/* Title styles */
.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #000000;
  box-shadow: 0 4px 20px rgba(242, 153, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(242, 153, 0, 0.35);
  background: linear-gradient(135deg, #FFB700 0%, #F29900 100%);
}

.btn-secondary {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  background: rgba(242, 153, 0, 0.05);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Glassmorphism card default */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(242, 153, 0, 0.25);
  box-shadow: 0 12px 40px rgba(242, 153, 0, 0.08);
}

/* Floating Elements & Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* --- HEADER / NAVBAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
	background: #0e0d0e;
}

.header.scrolled {
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

.header.scrolled .logo-img {
  height: 35px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Honeycomb grid simulation in CSS */
.hive-graphic {
  position: relative;
  width: 320px;
  height: 368px;
  background: radial-gradient(circle at center, rgba(242, 153, 0, 0.1) 0%, transparent 70%);
}

.hive-cell {
  position: absolute;
  width: 140px;
  height: 160px;
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hive-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(242, 153, 0, 0.15), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.hive-cell:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(242, 153, 0, 0.2);
}

.hive-cell:hover::before {
  opacity: 1;
}

.hive-cell svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-primary);
  margin-bottom: 0.5rem;
  z-index: 1;
}

.hive-cell span {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.cell-1 { top: 0; left: 90px; }
.cell-2 { top: 104px; left: 0px; }
.cell-3 { top: 104px; left: 180px; }
.cell-4 { top: 208px; left: 90px; }

/* Decorative glow rings */
.glow-ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.glow-ring-1 {
  width: 300px;
  height: 300px;
  background: rgba(242, 153, 0, 0.12);
  top: -50px;
  right: -50px;
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(242, 153, 0, 0.08);
  border: 1px solid rgba(242, 153, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--accent-primary);
  color: #000;
  transform: rotate(5deg) scale(1.05);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.service-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-primary);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-secondary);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --- PROCESS SECTION --- */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: var(--border-color);
}

.process-step {
  display: flex;
  gap: 2rem;
  position: relative;
  margin-bottom: 3.5rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  transition: var(--transition-normal);
}

.process-step:hover .process-number {
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(242, 153, 0, 0.2);
  transform: scale(1.05);
}

.process-content {
  padding-top: 0.75rem;
}

.process-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- PORTFOLIO / CASES SECTION --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 9/10;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.portfolio-overlay p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  transform: translateY(10px);
  transition: var(--transition-normal) 0.05s;
}

.portfolio-card:hover .portfolio-overlay h3,
.portfolio-card:hover .portfolio-overlay p {
  transform: translateY(0);
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.case1 {
    background: url(https://webhive.com.br/wp-content/uploads/2026/07/screencapture-clubefts-loja-2026-07-25-15_33_16-scaled.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.case2 {
    background: url(https://webhive.com.br/wp-content/uploads/2026/07/screencapture-maxxvida-br-site-2026-07-25-15_32_53-scaled.png);
	    background-size: cover;
    background-repeat: no-repeat;
}
.case3 {
    background: url(https://webhive.com.br/wp-content/uploads/2026/07/screencapture-bluant-br-site-2026-07-25-15_32_17-scaled.png);
	    background-size: cover;
    background-repeat: no-repeat;
}

/* --- FAQ ACCORDION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(242, 153, 0, 0.2);
  background: rgba(255, 255, 255, 0.01);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition-normal);
  color: var(--accent-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-primary);
  color: #000;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* high value for content expansion */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* --- CONTACT SECTION / FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(242, 153, 0, 0.06);
  border: 1px solid rgba(242, 153, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.channel-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.channel-details p {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-form-wrapper {
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(242, 153, 0, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  background: var(--bg-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-links h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--accent-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer-links-list a {
  color: var(--text-secondary);
}

.footer-links-list a:hover {
  color: var(--accent-secondary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- MAXNIVEL SPECIFIC LANDING PAGE STYLES --- */
.maxnivel-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 7rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(242, 153, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255, 183, 0, 0.03) 0%, transparent 50%);
}

.maxnivel-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.maxnivel-visual {
  position: relative;
}

.mockup-container {
  width: 100%;
  position: relative;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.mockup-header {
  height: 30px;
  background: #181d2a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b5563;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #eab308; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-body {
  height: calc(100% - 30px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-lp-preview {
  border: 1px dashed rgba(242, 153, 0, 0.3);
  border-radius: 8px;
  flex-grow: 1;
  background: rgba(242, 153, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.mockup-lp-preview svg {
  width: 48px;
  height: 48px;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-box {
  padding: 2rem;
  text-align: left;
}

.feature-box-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
  display: inline-flex;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Pricing / Plans Section */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.plan-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card.popular {
  border-color: var(--accent-primary);
  box-shadow: 0 10px 40px rgba(242, 153, 0, 0.08);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #000;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.plan-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 1rem;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.plan-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.plan-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-primary);
  flex-shrink: 0;
}

.plan-features li.disabled svg {
  fill: var(--text-muted);
}

/* Float Widget WhatsApp */
.wa-float-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition-normal);
}

.wa-float-widget:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128C7E;
}

/* --- RESPONSIVENESS MEDIA QUERIES --- */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-grid, .contact-grid, .maxnivel-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .maxnivel-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-normal);
    border-top: 1px solid var(--border-color);
  }
  
  .nav.open {
    left: 0;
  }
  
  .header-cta .btn {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 4.5rem 0;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .wa-float-widget {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
