/*
Theme Name: Mindset Acadêmico
Theme URI: https://mindsetacademico.com.br
Author: Mindset Acadêmico
Author URI: https://mindsetacademico.com.br
Description: Tema institucional do ecossistema Mindset Acadêmico - Educação, Tecnologia e Soluções Governamentais.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mindset-academico
Tags: education, business, one-page, custom-logo
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ========================================
   RESET & BASE
   ======================================== */

:root {
  --ms-primary: #FF7F00;
  --ms-primary-light: #FF9A33;
  --ms-secondary: #6B3FA0;
  --ms-bg: #F5F7FA;
  --ms-bg-alt: #FFFFFF;
  --ms-white: #FFFFFF;
  --ms-dark: #1A1F2E;
  --ms-gray-50: #FAFBFC;
  --ms-gray-100: #F5F5F7;
  --ms-gray-200: #E5E5EA;
  --ms-gray-300: #D1D1D6;
  --ms-gray-400: #8E8E93;
  --ms-gray-600: #48484A;
  --ms-gray-700: #3A3A3C;
  --ms-text: #1A1F2E;
  --ms-text-muted: #636670;
  --ms-font-heading: 'Roboto', Helvetica, Arial, sans-serif;
  --ms-font-body: 'Roboto', Helvetica, Arial, sans-serif;
  --ms-radius: 12px;
}

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

body {
  font-family: var(--ms-font-body);
  color: var(--ms-text);
  background: var(--ms-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ms-font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ms-text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

/* ========================================
   HEADER / NAV
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--ms-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ms-text);
}

.site-logo .logo-dot {
  background: linear-gradient(135deg, var(--ms-primary), var(--ms-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ms-text-muted);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--ms-text);
  background: rgba(0, 0, 0, 0.04);
}

.nav-cta {
  position: relative;
}

.nav-cta a {
  background: var(--ms-primary) !important;
  color: var(--ms-white) !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ms-primary);
  border-radius: 8px;
  filter: blur(12px);
  opacity: 0.3;
  z-index: -1;
  transition: opacity 0.3s;
}

.nav-cta a:hover::before {
  opacity: 0.5;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ms-text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.active {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    z-index: 999;
  }
  .main-nav.active ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav.active a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--ms-text);
  }
}

/* ========================================
   SHARED SECTION STYLES
   ======================================== */

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ms-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: var(--ms-text);
}

.section-title .gradient-text,
.gradient-text {
  background: linear-gradient(135deg, #FF9A33, #FF7F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ms-text-muted);
}

/* ========================================
   GLASS LIGHT UTILITY
   ======================================== */

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ms-bg);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-orb-1 {
  position: absolute;
  top: 25%;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 127, 0, 0.08);
  filter: blur(120px);
}

.hero-orb-2 {
  position: absolute;
  bottom: 25%;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(107, 63, 160, 0.06);
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-badge,
.hero-content .hero-buttons {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ms-primary);
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ms-text-muted);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--ms-text);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title .gradient-text {
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--ms-text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
}

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

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ms-primary);
  color: var(--ms-white);
  padding: 1rem 2rem;
  border-radius: var(--ms-radius);
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ms-primary);
  border-radius: var(--ms-radius);
  filter: blur(16px);
  opacity: 0.3;
  z-index: -1;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 0.5;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ms-text);
  padding: 1rem 2rem;
  border-radius: var(--ms-radius);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Hero Stats */
.hero-stats {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.hero-stat-value {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, #FF9A33, #FF7F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ms-text-muted);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
}

/* ========================================
   ABOUT / ROI SECTION
   ======================================== */

.roi-section {
  padding: 7rem 0;
  background: var(--ms-white);
  position: relative;
  overflow: hidden;
}

.roi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.roi-section .orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(255, 127, 0, 0.04);
  border-radius: 50%;
  filter: blur(100px);
}

.roi-grid-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.roi-description {
  font-size: 1.125rem;
  color: var(--ms-text-muted);
  line-height: 1.7;
}

.roi-highlight-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.roi-highlight-value {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--ms-font-heading);
  background: linear-gradient(135deg, #FF9A33, #FF7F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.roi-highlight-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ms-text-muted);
  font-weight: 500;
}

.roi-highlight-card {
  position: relative;
}

.roi-highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,127,0,0.06), rgba(107,63,160,0.06));
  border-radius: 1.5rem;
  filter: blur(24px);
  z-index: -1;
}

.roi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.roi-card {
  background: var(--ms-white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--ms-gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.roi-card:hover {
  border-color: rgba(255, 127, 0, 0.4);
  box-shadow: 0 8px 30px rgba(255, 127, 0, 0.1);
}

.roi-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 40%,
    rgba(255,127,0,0.03) 45%,
    rgba(255,127,0,0.06) 50%,
    rgba(255,127,0,0.03) 55%,
    transparent 60%
  );
  transform: rotate(30deg);
  transition: transform 0.6s ease;
}

.roi-card:hover::after {
  transform: rotate(30deg) translateY(-30%);
}

.roi-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.roi-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--ms-radius);
  background: rgba(255, 127, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-primary);
  transition: background 0.3s;
}

.roi-card:hover .roi-card-icon {
  background: rgba(255, 127, 0, 0.15);
}

.roi-card-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  transition: color 0.3s;
}

.roi-card:hover .roi-card-number {
  color: rgba(255, 127, 0, 0.1);
}

.roi-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.roi-card p {
  font-size: 0.875rem;
  color: var(--ms-text-muted);
  line-height: 1.6;
}

.roi-card .card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ms-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.roi-card:hover .card-link {
  opacity: 1;
}

@media (max-width: 768px) {
  .roi-grid-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .roi-cards { grid-template-columns: 1fr; }
}

/* ========================================
   FEATURES / SERVICES SECTION
   ======================================== */

.features-section {
  padding: 7rem 0;
  background: var(--ms-gray-100);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.features-section .orb {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: rgba(255, 127, 0, 0.04);
  border-radius: 50%;
  filter: blur(120px);
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.features-section .section-title {
  color: var(--ms-text);
}

.features-section .section-desc {
  color: var(--ms-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.features-grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.features-grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--ms-white);
  border: 1px solid var(--ms-gray-200);
  border-radius: 1rem;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,127,0,0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(255, 127, 0, 0.4);
  box-shadow: 0 8px 30px rgba(255, 127, 0, 0.1);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ms-radius);
  background: rgba(255, 127, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-primary);
  margin-bottom: 1.25rem;
  font-size: 20px;
}

.feature-card h3 {
  font-size: 1.125rem;
  color: var(--ms-text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--ms-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid,
  .features-grid--cols-2,
  .features-grid--cols-3 { grid-template-columns: 1fr; }
}

/* ========================================
   PLATFORMS SECTION
   ======================================== */

.platforms-section {
  padding: 7rem 0;
  background: var(--ms-white);
  position: relative;
  overflow: hidden;
}

.platforms-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.platforms-section .section-desc {
  color: var(--ms-text-muted);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.platforms-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.platforms-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.platforms-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.platform-card {
  display: block;
  background: var(--ms-white);
  border: 1px solid var(--ms-gray-200);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.platform-card:hover {
  border-color: rgba(255, 127, 0, 0.4);
  box-shadow: 0 8px 30px rgba(255, 127, 0, 0.1);
}

.platform-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.platform-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: var(--ms-white);
  border: 1px solid var(--ms-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-primary);
  font-size: 20px;
  overflow: hidden;
  padding: 0.5rem;
  transition: border-color 0.3s;
}

.platform-card:hover .platform-card-icon {
  border-color: rgba(255, 127, 0, 0.3);
}

.platform-card-icon.has-logo {
  background: var(--ms-white);
}

.platform-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ms-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-gray-400);
  transition: all 0.3s;
}

.platform-card:hover .platform-arrow {
  border-color: rgba(255, 127, 0, 0.4);
  background: rgba(255, 127, 0, 0.1);
  color: var(--ms-primary);
}

.platform-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.platform-card p {
  font-size: 0.875rem;
  color: var(--ms-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .platforms-grid,
  .platforms-grid--cols-2,
  .platforms-grid--cols-3,
  .platforms-grid--cols-4 { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  padding: 7rem 0;
  background: var(--ms-gray-100);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.contact-section .section-title {
  color: var(--ms-text);
}

.contact-section .section-desc {
  color: var(--ms-text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ms-white);
  border: 1px solid var(--ms-gray-200);
  border-radius: var(--ms-radius);
  padding: 1rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  border-color: rgba(255, 127, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 127, 0, 0.08);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ms-radius);
  background: rgba(255, 127, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--ms-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.contact-info-value {
  font-weight: 500;
  color: var(--ms-text);
  margin: 0;
}

.contact-form {
  background: var(--ms-white);
  border: 1px solid var(--ms-gray-200);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ms-primary), transparent);
  border-radius: 1rem 1rem 0 0;
}

.contact-form-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--ms-primary);
}

.contact-form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ms-text);
  margin: 0;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ms-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--ms-radius);
  background: var(--ms-gray-50);
  border: 1px solid var(--ms-gray-200);
  color: var(--ms-text);
  font-family: var(--ms-font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 127, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.1);
  background: var(--ms-white);
}

.form-group input::placeholder {
  color: var(--ms-gray-400);
}

.form-group select option {
  background: var(--ms-white);
  color: var(--ms-text);
}

.btn-submit {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--ms-gray-100);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ms-gray-200);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.footer-cta {
  background: rgba(255, 127, 0, 0.05);
  border: 1px solid rgba(255, 127, 0, 0.15);
  border-radius: 1rem;
  padding: 3.5rem;
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ms-primary), transparent);
  border-radius: 1rem 1rem 0 0;
}

.footer-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ms-text);
  margin-bottom: 1rem;
}

.footer-cta p {
  color: var(--ms-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-grid h4 {
  color: var(--ms-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer-grid p {
  color: var(--ms-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin-bottom: 0.5rem;
}

.footer-grid ul a {
  color: var(--ms-text-muted);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-grid ul a:hover {
  color: var(--ms-primary);
}

.footer-bottom {
  border-top: 1px solid var(--ms-gray-200);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ms-text-muted);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--ms-radius);
  background: var(--ms-white);
  border: 1px solid var(--ms-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-text-muted);
  transition: all 0.3s;
}

.social-icon:hover {
  background: rgba(255, 127, 0, 0.1);
  border-color: rgba(255, 127, 0, 0.3);
  color: var(--ms-primary);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ========================================
   WHATSAPP FLOATING
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 20px -5px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px -10px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

/* ========================================
   ELEMENTOR OVERRIDES
   ======================================== */

.elementor-widget-mindset-hero .elementor-widget-container,
.elementor-widget-mindset-roi .elementor-widget-container,
.elementor-widget-mindset-features .elementor-widget-container,
.elementor-widget-mindset-platforms .elementor-widget-container,
.elementor-widget-mindset-contact .elementor-widget-container {
  padding: 0;
  margin: 0;
}

.elementor-section-full_width .hero-section,
.elementor-section-full_width .roi-section,
.elementor-section-full_width .features-section,
.elementor-section-full_width .platforms-section,
.elementor-section-full_width .contact-section {
  width: 100%;
}

body:not(.elementor-editor-active) .site-header {
  z-index: 1000;
}

body.elementor-editor-active .site-header {
  z-index: 99;
}

/* ========================================
   ELEMENTOR EDITOR - FIX DARK TEXT/DROPDOWNS
   Prevent theme styles from leaking into
   Elementor's editor panel UI.
   ======================================== */

/* Reset ALL theme overrides inside Elementor panel & overlays */
#elementor-panel,
#elementor-panel *,
#elementor-panel input,
#elementor-panel select,
#elementor-panel textarea,
#elementor-panel label,
#elementor-panel a,
#elementor-panel button,
#elementor-panel span,
#elementor-panel p,
#elementor-panel div,
.dialog-widget *,
.elementor-panel-heading-title,
.elementor-section-title,
.elementor-control-title {
  color: revert !important;
  -webkit-text-fill-color: revert !important;
  background-clip: revert !important;
  -webkit-background-clip: revert !important;
  font-family: revert !important;
}

#elementor-panel .elementor-control-field select,
#elementor-panel .elementor-control-field input,
#elementor-panel .elementor-control-field textarea {
  background-color: revert !important;
  color: revert !important;
}

#elementor-panel h1,
#elementor-panel h2,
#elementor-panel h3,
#elementor-panel h4,
#elementor-panel h5,
#elementor-panel h6 {
  font-family: revert !important;
  color: revert !important;
  -webkit-text-fill-color: revert !important;
}

/* Elementor top bar and navigator */
#elementor-panel-header *,
#elementor-navigator * {
  color: revert !important;
  -webkit-text-fill-color: revert !important;
}