/* ==========================================================================
   SANTANA ESTUDIO CONTABLE - STYLESHEET
   Location: Mercedes, Corrientes, Argentina
   ========================================================================== */

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

:root {
  --bg-main: #050B14;
  --bg-navy-dark: #0A1428;
  --bg-card: #0F1F38;
  --bg-card-hover: #162B4C;
  --border-card: rgba(212, 175, 55, 0.2);
  --border-light: rgba(255, 255, 255, 0.08);
  
  --primary-blue: #1E40AF;
  --royal-blue: #2563EB;
  --sky-glow: #60A5FA;
  
  --gold-main: #E5B849;
  --gold-hover: #F5D061;
  --gold-glow: rgba(229, 184, 73, 0.35);
  --gold-gradient: linear-gradient(135deg, #F3C04A 0%, #D4A017 50%, #FAD02C 100%);
  
  --text-main: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-gold: #F3C04A;
  
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(15, 31, 56, 0.85);
  --glass-blur: blur(16px);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #070F1E 0%, #0D1C34 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-secondary);
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-info-item svg {
  color: var(--gold-main);
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: #050B14;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-card);
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.logo-text-box {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-main);
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  color: var(--gold-main);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

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

.nav-link:hover {
  color: var(--gold-main);
}

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

.btn-header-wsp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--gold-gradient);
  color: #050B14;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-header-wsp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(229, 184, 73, 0.5);
  background: linear-gradient(135deg, #FCE068 0%, #E5B849 100%);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #050B14;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(229, 184, 73, 0.45);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-main);
  color: var(--gold-main);
}

.btn-outline-gold:hover {
  background: rgba(229, 184, 73, 0.1);
  transform: translateY(-3px);
  color: #FFF;
  border-color: var(--gold-hover);
}

.btn-wsp-large {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-wsp-large:hover {
  background: #20BA5A;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  transform: translateY(-3px);
}

/* Badges */
.badge-express {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(229, 184, 73, 0.15);
  border: 1px solid var(--gold-main);
  color: var(--gold-main);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Section Common */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--gold-main);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(30, 64, 175, 0.25) 0%, rgba(5, 11, 20, 1) 70%),
              linear-gradient(180deg, #050B14 0%, #0A1428 100%);
  overflow: hidden;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

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

.hero-content {
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--sky-glow);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-item h4 {
  font-size: 1.8rem;
  color: var(--gold-main);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-media {
  position: relative;
  z-index: 2;
}

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(30, 64, 175, 0.3));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.hero-img-main {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  object-fit: cover;
  max-height: 480px;
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(229, 184, 73, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.badge-info h5 {
  font-size: 1rem;
  color: var(--text-main);
}

.badge-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Feature Banners Grid (Images Showcase) */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-main);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.promo-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-img {
  transform: scale(1.05);
}

.promo-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(5, 11, 20, 0.85);
  border: 1px solid var(--gold-main);
  color: var(--gold-main);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.promo-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.promo-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.promo-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Services Tabs Section */
.services-section {
  background: var(--bg-navy-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.9rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tab-btn:hover {
  border-color: var(--gold-main);
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #050B14;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.services-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.services-tab-pane.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

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

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.service-box:hover {
  border-color: var(--gold-main);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(229, 184, 73, 0.12);
  border: 1px solid rgba(229, 184, 73, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-box h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '✓';
  color: var(--gold-main);
  font-weight: 800;
}

/* Dynamic Tax Calendar ARCA / DGR Section */
.calendar-section {
  background: radial-gradient(circle at 30% 50%, rgba(30, 64, 175, 0.15) 0%, rgba(5, 11, 20, 1) 70%);
}

.calendar-card-container {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.calendar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.cuit-selector-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cuit-selector-box label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.cuit-digits-grid {
  display: flex;
  gap: 0.4rem;
}

.cuit-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.cuit-btn:hover, .cuit-btn.active {
  background: var(--gold-gradient);
  color: #050B14;
  border-color: transparent;
}

.calendar-filters {
  display: flex;
  gap: 1rem;
}

.select-custom {
  background: #070F1E;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.select-custom:focus {
  border-color: var(--gold-main);
}

.calendar-table-responsive {
  overflow-x: auto;
}

.tax-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tax-table th {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-card);
}

.tax-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.tax-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

.organismo-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-arca {
  background: rgba(37, 99, 235, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(96, 165, 250, 0.4);
}

.badge-dgr {
  background: rgba(229, 184, 73, 0.2);
  color: var(--gold-main);
  border: 1px solid var(--border-card);
}

.due-date-pill {
  font-weight: 800;
  color: #FFF;
  background: rgba(229, 184, 73, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(229, 184, 73, 0.3);
}

.official-links-banner {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(7, 15, 30, 0.6);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid var(--border-light);
}

.official-links-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.official-links-group {
  display: flex;
  gap: 1rem;
}

.link-official {
  font-size: 0.85rem;
  color: var(--gold-main);
  text-decoration: underline;
  font-weight: 600;
}

/* Interactive Calculator & Advisor Grid */
.interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.calc-card-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.calc-card-header h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calc-card-header h3 svg {
  color: var(--gold-main);
}

.calc-card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-custom {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #070F1E;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.input-custom:focus {
  border-color: var(--gold-main);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.calc-result-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(229, 184, 73, 0.1) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  text-align: center;
}

.calc-result-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-result-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-main);
  margin: 0.25rem 0;
}

.calc-result-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* CPCE Corrientes Professional Profile Section */
.profile-section {
  background: var(--bg-navy-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.profile-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, var(--gold-main), rgba(30, 64, 175, 0.4));
  box-shadow: var(--shadow-card);
}

.profile-photo {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  object-fit: cover;
  max-height: 480px;
}

.profile-photo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5, 11, 20, 0.9);
  border: 1px solid var(--gold-main);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-main);
  backdrop-filter: blur(8px);
}

.profile-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.profile-subtitle {
  color: var(--gold-main);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: block;
}

.profile-bio {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pillar-icon {
  color: var(--gold-main);
  font-size: 1.25rem;
  margin-top: 2px;
}

.pillar-text h5 {
  font-size: 0.95rem;
  color: var(--text-main);
}

.pillar-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact & Footer Section */
.contact-section {
  background: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(229, 184, 73, 0.15);
  border: 1px solid var(--gold-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-details p, .contact-details a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--gold-main);
}

.social-buttons-box {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.social-buttons-box h5 {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-social-ig {
  background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040);
  color: #FFF;
}

.btn-social-fb {
  background: #1877F2;
  color: #FFF;
}

.btn-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* Footer */
.footer {
  background: #03070E;
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-main);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Floating WhatsApp Widget */
.floating-wsp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wsp-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--gold-main);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  animation: pulseTooltip 2s infinite ease-in-out;
}

@keyframes pulseTooltip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.wsp-btn-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.wsp-btn-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

/* Modal Express Monotributo */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 550px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--gold-main);
}

/* Responsive Rules */
@media (max-width: 992px) {
  .hero-grid, .profile-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-navy-dark);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-card);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .top-info {
    font-size: 0.8rem;
    gap: 0.75rem;
  }
  
  .wsp-tooltip {
    display: none;
  }
}
