/* 
   PsicoStudio - Mastercard-Inspired Design System 
   Custom Vanilla CSS
*/

@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,300;0,400;0,450;0,500;0,700;1,400&display=swap");

:root {
  /* Colors */
  --canvas-cream: #f3f0ee;
  --lifted-cream: #fcfbfa;
  --white: #ffffff;
  --ink-black: #141413;
  --charcoal: #262627;
  --slate-gray: #696969;
  --signal-orange: #cf4500;
  --light-signal-orange: #f37338;
  --link-blue: #3860be;

  /* Fonts */
  --font-family: "Sofia Sans", Arial, sans-serif;

  /* Shadows */
  --shadow-l1: rgba(0, 0, 0, 0.04) 0px 4px 24px 0px;
  --shadow-l2: rgba(0, 0, 0, 0.08) 0px 24px 48px 0px;
}

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

body {
  background-color: var(--canvas-cream);
  color: var(--ink-black);
  font-family: var(--font-family);
  font-weight: 450;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Layout Utilities */
.container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 96px 0;
}

@media (max-width: 767px) {
  section {
    padding: 48px 0;
  }
}

.section-header-narrow {
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.w-100 {
  width: 100%;
}
.text-center {
  text-align: center;
}
.text-end {
  text-align: right;
}
.text-muted {
  color: var(--slate-gray);
}

/* Typography */
h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -2%;
  color: var(--ink-black);
}

h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2%;
  color: var(--ink-black);
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2%;
  color: var(--ink-black);
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-gray);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--light-signal-orange);
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
}

/* Floating Navigation */
.floating-nav {
  position: sticky;
  top: 24px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: var(--shadow-l1);
  padding: 12px 32px;
  margin: 24px auto 0 auto;
  max-width: 1200px;
  width: calc(100% - 48px);
  transition: transform 0.3s ease;
}

.floating-nav .logo img {
  height: 36px;
  display: block;
}
/* Desktop Navigation Options */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-desktop-item {
  color: var(--ink-black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-desktop-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--light-signal-orange);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-desktop-item:hover::after {
  width: 100%;
  left: 0;
}

.nav-desktop-item:hover {
  color: var(--light-signal-orange);
}

/* Responsive Menu Configuration */
@media (min-width: 992px) {
  .nav-toggle {
    display: none !important;
  }
  .nav-overlay {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .nav-desktop {
    display: none !important;
  }
}

/* Hamburger Toggle Button */
.nav-toggle {
  background: var(--white);
  border: 1px solid rgba(20, 20, 19, 0.08);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 1010; /* Sits above overlay */
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-toggle:hover {
  transform: scale(1.05);
  background-color: var(--canvas-cream);
  border-color: rgba(20, 20, 19, 0.15);
}

.nav-toggle:active {
  transform: scale(0.95);
}

/* Hamburger Bars */
.hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--ink-black);
  border-radius: 99px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}

/* Morph to 'X' when open */
.nav-open .bar-top {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .bar-middle {
  opacity: 0;
  transform: scaleX(0);
}

.nav-open .bar-bottom {
  transform: translateY(-6px) rotate(-45deg);
}

/* Overlay Navigation */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(243, 240, 238, 0.9); /* Canvas Cream Putty with opacity */
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: 1005; /* Sits below logo and toggle but above everything else */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              backdrop-filter 0.5s ease;
}

/* Active State for Overlay */
.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Content inside Overlay */
.nav-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 40px;
}

/* Vertical Menu Items */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-menu-item {
  font-size: 40px;
  font-weight: 500;
  color: var(--ink-black);
  text-decoration: none;
  letter-spacing: -1.2px;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.3s ease;
}

/* Stagger Animation Delays */
.nav-open .nav-menu-item {
  opacity: 1;
  transform: translateY(0);
}

.nav-open .nav-delay-1 { transition-delay: 0.08s; }
.nav-open .nav-delay-2 { transition-delay: 0.16s; }
.nav-open .nav-delay-3 { transition-delay: 0.24s; }
.nav-open .nav-delay-4 { transition-delay: 0.32s; }
.nav-open .nav-delay-5 { transition-delay: 0.40s; }
.nav-open .nav-delay-6 { transition-delay: 0.48s; }

/* Hover Accent on Links (Stretches right + Orange Dot) */
.nav-menu-item::before {
  content: "•";
  position: absolute;
  left: -24px;
  color: var(--light-signal-orange);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu-item:hover {
  color: var(--light-signal-orange);
  transform: translateX(12px);
  transition-delay: 0s !important; 
}

.nav-menu-item:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* Action button at bottom of menu */
.nav-overlay-actions {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-open .nav-overlay-actions {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay-actions .btn-primary-pill {
  font-size: 18px;
  padding: 12px 36px;
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(20, 20, 19, 0.1);
}

/* Adjust layout positioning to make sure logo stays above overlay */
.floating-nav .logo {
  z-index: 1010;
}

/* Prevent body scrolling when menu is open */
body.nav-menu-active {
  overflow: hidden;
}

@media (max-width: 576px) {
  .nav-menu-item {
    font-size: 28px;
    letter-spacing: -0.6px;
  }
  .nav-overlay-content {
    gap: 32px;
  }
}

/* Buttons */
.btn-primary-pill {
  background-color: var(--ink-black);
  color: var(--canvas-cream);
  border: 1.5px solid var(--ink-black);
  border-radius: 20px;
  padding: 8px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.btn-primary-pill:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary-pill:active {
  transform: scale(0.98);
}

.btn-secondary-pill {
  background-color: var(--white);
  color: var(--ink-black);
  border: 1.5px solid var(--ink-black);
  border-radius: 20px;
  padding: 8px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.btn-secondary-pill:hover {
  transform: translateY(-1px);
}

.btn-secondary-pill:active {
  transform: scale(0.98);
}

.btn-secondary-pill .btn-subtext {
  font-size: 11px;
  color: var(--slate-gray);
  margin-left: 8px;
  font-weight: 400;
}

/* Hero Section */
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--charcoal);
  max-width: 600px;
}

.hero-media {
  background-color: var(--white);
  border-radius: 40px;
  padding: 24px;
  box-shadow: var(--shadow-l2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: 100%;
  max-width: 420px;
  height: auto;
  animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-media {
    order: -1;
  }
}

/* El Reto Section */
.reto-section {
  background-color: var(--lifted-cream);
  border-radius: 40px;
  margin: 48px 24px;
}

@media (max-width: 767px) {
  .reto-section {
    margin: 24px 16px;
    border-radius: 24px;
  }
}

.reto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.reto-layout h2 {
  max-width: 450px;
}

.reto-layout p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .reto-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Nuestra Solución Section */
.solucion-header {
  max-width: 800px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.solucion-header h2 {
  margin-top: 12px;
}

.orbits-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Background orbital lines */
.orbits-decor {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  z-index: 1;
  pointer-events: none;
}

.orbits-decor path {
  fill: none;
  stroke: var(--light-signal-orange);
  stroke-width: 1.5px;
  stroke-dasharray: 4, 4;
}

.solucion-card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 40px;
  box-shadow: var(--shadow-l1);
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.solucion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l2);
}

.solucion-card h3 {
  margin-bottom: 16px;
  color: var(--ink-black);
}

.solucion-card p {
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .orbits-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .orbits-decor {
    display: none;
  }
}

/* Resultados y Entregables */
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.resultado-item {
  background-color: var(--lifted-cream);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(20, 20, 19, 0.08);
  transition: all 0.3s ease;
}

.resultado-item:hover {
  border-color: var(--ink-black);
}

.resultado-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--light-signal-orange);
  border: 1px solid rgba(20, 20, 19, 0.05);
}

.resultado-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.resultado-item p {
  font-size: 16px;
  color: var(--slate-gray);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .resultados-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .resultados-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA & Contact Form */
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-content h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-content p {
  font-size: 18px;
  color: var(--slate-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-black);
}

.contact-info-item svg {
  color: var(--light-signal-orange);
}

/* Contact Card Form */
.contact-card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 48px;
  box-shadow: var(--shadow-l2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-gray);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--canvas-cream);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--ink-black);
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: rgba(20, 20, 19, 0.4);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(243, 115, 56, 0.1);
}

textarea.form-control {
  border-radius: 20px;
  resize: none;
}

.btn-submit-pill {
  width: 100%;
  background-color: var(--ink-black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.btn-submit-pill:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-submit-pill:disabled {
  background-color: var(--slate-gray);
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }
}

/* Footer styling */
.main-footer {
  background-color: var(--ink-black);
  color: var(--white);
  padding: 96px 0 48px 0;
  border-radius: 40px 40px 0 0;
}

.footer-top h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 64px;
  max-width: 600px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-gray);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--slate-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--slate-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.country-selector {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-family);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Spinner */
.spinner-icon {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* FAQ Accordion Section */
.faq-section {
  padding: 96px 0;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 48px 0;
  }
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-l1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-l2);
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none; /* Hide default browser triangle */
  -webkit-user-select: none;
  user-select: none;
}

/* Hide default summary triangle on Safari */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--canvas-cream);
  color: var(--light-signal-orange);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background-color: var(--light-signal-orange);
  color: var(--white);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  border-top: 1px solid rgba(20, 20, 19, 0.05);
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-top: 16px;
}

.faq-answer p:first-child {
  margin-top: 16px;
}

/* Bullet list inside answers */
.faq-answer ul {
  list-style-type: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer ul li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--charcoal);
  position: relative;
  padding-left: 20px;
}

.faq-answer ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--light-signal-orange);
}

.faq-answer p + p {
  margin-top: 12px;
}

/* Help Center / Soporte Page Styles */
.soporte-hero {
  padding: 120px 0 64px 0;
}

.soporte-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.lead-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-top: 24px;
}

.soporte-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.support-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.support-card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 48px;
  box-shadow: var(--shadow-l1);
}

.whatsapp-icon-centered {
  display: flex;
  justify-content: center;
  color: #25d366;
  margin-bottom: 24px;
}

.whatsapp-icon-centered svg {
  max-width: 120px;
  height: auto;
}

.whatsapp-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.whatsapp-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.btn-whatsapp-pill {
  background-color: #25d366;
  color: var(--white);
  border: 1.5px solid #25d366;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-whatsapp-pill:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-whatsapp-pill:active {
  transform: scale(0.98);
}

.tips-card h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--ink-black);
}

.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tips-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  position: relative;
  padding-left: 24px;
}

.tips-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--light-signal-orange);
}

.form-header h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.form-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-gray);
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .soporte-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .soporte-hero {
    padding: 80px 0 48px 0;
  }
  .support-card {
    padding: 32px;
  }
}

/* Metodología SST Styles */
.metodologia-hero {
  padding: 120px 0 64px 0;
}

.metodologia-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.metodologia-steps-section {
  padding: 64px 0;
}

.metodologia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.metodologia-card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 48px;
  box-shadow: var(--shadow-l1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.metodologia-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l2);
}

.metodologia-card .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(207, 69, 0, 0.08);
  color: var(--signal-orange);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metodologia-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--ink-black);
}

.metodologia-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  flex-grow: 1;
}

.metodologia-card ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metodologia-card ul li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--charcoal);
  position: relative;
  padding-left: 20px;
}

.metodologia-card ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--light-signal-orange);
}

/* Beneficios Section */
.beneficios-section {
  background-color: var(--white);
  padding: 96px 0;
  border-top: 1px solid rgba(20, 20, 19, 0.05);
  border-bottom: 1px solid rgba(20, 20, 19, 0.05);
}

.beneficios-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.beneficios-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.beneficios-item {
  display: flex;
  gap: 20px;
}

.beneficios-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(207, 69, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal-orange);
}

.beneficios-icon svg {
  width: 24px;
  height: 24px;
}

.beneficios-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink-black);
}

.beneficios-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}

/* CTA Banner Section */
.cta-section {
  padding: 96px 0;
}

.cta-banner {
  background-color: var(--charcoal);
  color: var(--white);
  border-radius: 40px;
  padding: 80px 48px;
  text-align: center;
  box-shadow: var(--shadow-l2);
  max-width: 1000px;
  margin: 0 auto;
}

.cta-banner h3 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--canvas-cream);
  max-width: 700px;
  margin: 0 auto 32px auto;
  opacity: 0.9;
}

.btn-cta-orange {
  background-color: var(--signal-orange);
  color: var(--white);
  border: 1.5px solid var(--signal-orange);
  border-radius: 999px;
  padding: 16px 36px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-cta-orange:hover {
  transform: translateY(-2px);
  background-color: var(--light-signal-orange);
  border-color: var(--light-signal-orange);
}

.btn-cta-orange:active {
  transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .metodologia-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .beneficios-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner {
    padding: 60px 32px;
  }

  .cta-banner h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .metodologia-hero {
    padding: 80px 0 48px 0;
  }
  
  .metodologia-card {
    padding: 32px;
  }
}

/* Contact Page Specific Styles */
.contacto-hero {
  padding: 120px 0 64px 0;
}

.contacto-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.contacto-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}

.contacto-option-card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 40px;
  box-shadow: var(--shadow-l1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contacto-option-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--ink-black);
}

.contacto-option-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 24px;
  flex-grow: 1;
}

.contacto-whatsapp-card {
  border-top: 4px solid #25d366;
}

.contacto-hero-content p.text-muted {
  margin-top: 16px;
}

.contacto-option-card h3 svg {
  margin-right: 8px;
  vertical-align: middle;
}

.contacto-option-card h3 svg.icon-whatsapp {
  color: #25d366;
}

.contacto-option-card h3 svg.icon-orange {
  color: var(--light-signal-orange);
}

.contacto-option-card h3 svg.icon-ink {
  color: var(--ink-black);
}

.contacto-option-card .contacto-card-action {
  margin-top: auto;
}

.contacto-option-card form {
  margin-top: auto;
}

.por-que-section {
  background-color: var(--white);
  padding: 96px 0;
  border-top: 1px solid rgba(20, 20, 19, 0.05);
}

.por-que-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.por-que-card {
  padding: 32px;
  background-color: var(--canvas-cream);
  border-radius: 30px;
  transition: transform 0.2s ease;
}

.por-que-card:hover {
  transform: translateY(-2px);
}

.por-que-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--ink-black);
  font-weight: 500;
}

.por-que-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
}

@media (max-width: 991px) {
  .contacto-options-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .por-que-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Seguridad de Datos Styles */
.seguridad-hero {
  padding: 120px 0 64px 0;
}

.seguridad-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.seguridad-pilares-section {
  padding: 64px 0;
  background-color: var(--lifted-cream);
  border-top: 1px solid rgba(20, 20, 19, 0.05);
  border-bottom: 1px solid rgba(20, 20, 19, 0.05);
}

.seguridad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.seguridad-card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 48px;
  box-shadow: var(--shadow-l1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.seguridad-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l2);
}

.seguridad-card .pilar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(207, 69, 0, 0.08);
  color: var(--signal-orange);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.seguridad-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--ink-black);
}

.seguridad-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  flex-grow: 1;
}

@media (max-width: 991px) {
  .seguridad-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .seguridad-hero {
    padding: 80px 0 48px 0;
  }
  
  .seguridad-card {
    padding: 32px;
  }
}

/* Global utility classes to prevent inline styles */
.lead-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-top: 24px;
}

.section-header-narrow p {
  color: var(--slate-gray);
  margin-top: 16px;
}

.beneficios-intro {
  margin-top: 16px;
}

.beneficios-icon.icon-blue {
  background-color: rgba(56, 96, 190, 0.08);
  color: var(--link-blue);
}

.cta-section-cream {
  background-color: var(--canvas-cream);
  border-top: 1px solid rgba(20, 20, 19, 0.05);
}

/* Normativa Vigente Styles */
.normativa-hero {
  padding: 120px 0 64px 0;
}

.normativa-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.normativa-section {
  padding: 64px 0;
  border-top: 1px solid rgba(20, 20, 19, 0.05);
}

.normativa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.normativa-card {
  background-color: var(--white);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow-l1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.normativa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l2);
}

.normativa-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink-black);
}

.normativa-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 24px;
  flex-grow: 1;
}

.normativa-card .btn-norma-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--signal-orange);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.normativa-card .btn-norma-link:hover {
  opacity: 0.8;
  transform: translateX(2px);
}

@media (max-width: 767px) {
  .normativa-hero {
    padding: 80px 0 48px 0;
  }
  .normativa-section {
    padding: 48px 0;
  }
  .normativa-card {
    padding: 28px;
  }
}

.normativa-grid-single {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 48px auto 0 auto;
}

/* Legal / Terms of Service Reading Layout */
.legal-main {
  padding: 120px 0 96px 0;
}

@media (max-width: 767px) {
  .legal-main {
    padding: 80px 0 48px 0;
  }
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-card {
  background-color: var(--white);
  border-radius: 40px;
  padding: 56px;
  box-shadow: var(--shadow-l1);
}

@media (max-width: 767px) {
  .legal-card {
    padding: 32px 24px;
    border-radius: 24px;
  }
}

.legal-card h1 {
  font-size: 44px;
  margin-bottom: 12px;
  color: var(--ink-black);
}

.legal-card h2 {
  font-size: 24px;
  margin: 40px 0 16px 0;
  color: var(--ink-black);
  border-bottom: 1px solid rgba(20, 20, 19, 0.05);
  padding-bottom: 8px;
}

.legal-card h3 {
  font-size: 20px;
  margin: 32px 0 16px 0;
  color: var(--ink-black);
}

.legal-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.legal-card p.lead-text {
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 500;
}

.legal-card ul {
  list-style-type: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-card ul li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  position: relative;
  padding-left: 20px;
}

.legal-card ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--light-signal-orange);
}

