* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
a,
input[type="submit"],
input[type="button"],
[role="button"] {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

::selection {
  background-color: #E8855A;
  color: white;
}

body {
  background-color: #F2F4F7;
  color: #1C1C1C;
  font-family: 'Sora', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Color Variables */
:root {
  --main-dark: #1E3A5F;
  --main-mid: #4A6FA5;
  --main-amber: #F2B705;
  --main-amber-light: #F6C74E;
  --main-amber-dark: #C38E04;
  --main-gray: #6B7280;
  --main-light: #F2F4F7;
  --surface-light: #FFFFFF;
  --surface-off: #F2F4F7;
  --text-main: #1C1C1C;
  --text-muted: #6B7280;

  --program-green: #1E3A2F;
  --program-terra: #E8855A;
  --program-terra-light: #F3A27D;
  --program-mint: #5BAD8F;
  --program-cream: #FAF0E6;
  --program-carbon: #1C1C1C;
  --program-gray: #8A8A7A;
  --whatsapp-green: #25D366;

  /* Tierra Viva Palette (Aliases) */
  --green-selva: var(--program-green);
  --orange-terra: var(--program-terra);
  --green-mint: var(--program-mint);
  --cream: var(--program-cream);
  --carbon: var(--program-carbon);
  --gray-warm: var(--program-gray);

  --primary: var(--main-dark);
  --primary-dark: #12263f;
  --accent: var(--main-amber);
  --accent-light: var(--main-amber-light);
  --accent-dark: var(--main-amber-dark);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 480px) {
  .header-container {
    padding: 0 1.5rem;
    height: 6rem;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-box {
  background: var(--primary);
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.site-logo {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: -0.8rem;
}

@media (min-width: 1024px) {
  .site-logo {
    height: 6.5rem;
    margin-left: -1.8rem;
  }
}

.logo-text {
  color: white;
  font-family: 'Sora', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  font-style: italic;
}

.logo-title-container {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Sora', Arial, sans-serif;
  font-weight: 700;
  color: var(--main-dark);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--main-amber);
  font-weight: 700;
  margin-top: 0.25rem;
}

nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

@media (min-width: 1024px) {
  nav {
    display: flex;
  }
}

nav a {
  text-decoration: none;
  color: #475569;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

nav a:hover {
  color: var(--primary);
}

nav a span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

nav a:hover span {
  width: 100%;
}

.btn-login {
  background: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(1, 45, 85, 0.2);
  display: inline-block;
}

.btn-login:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 15px -3px rgba(1, 45, 85, 0.4);
  transform: translateY(-2px);
}

.hamburger-line {
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 30;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: color 0.3s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Header Social Icons */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .header-social-links {
    gap: 1rem;
  }
}

.header-social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--primary);
}

@media (min-width: 480px) {
  .header-social-link {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.header-social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 45, 85, 0.2);
}

.header-social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-section {
    padding-top: 6rem;
    min-height: 95vh;
  }
}

@media (min-width: 1024px) and (max-height: 800px) {
  .hero-section {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(30, 58, 95, 0.95), rgba(74, 111, 165, 0.9));
  mix-blend-mode: multiply;
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242, 183, 5, 0.25), transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  position: relative;
  z-index: 10;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 480px) {
  .hero-content {
    padding: 0 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-grid {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    gap: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 6rem;
  }
}

.hero-text {
  grid-column: span 12;
}

@media (min-width: 1280px) {
  .hero-text {
    grid-column: span 8;
  }
}

.hero-text>div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .hero-text>div {
    gap: 2.5rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: fit-content;
}

@media (min-width: 480px) {
  .badge {
    padding: 0.625rem 1.25rem;
  }
}

.pulse-dot {
  position: relative;
  display: flex;
  height: 0.75rem;
  width: 0.75rem;
}

.pulse-dot-ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background: var(--accent);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.pulse-dot-static {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.75rem;
  width: 0.75rem;
  background: var(--accent);
}

.badge-text {
  color: var(--main-amber);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1 {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.025em;
  font-weight: 700;
}

@media (min-width: 480px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

.highlight-box {
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background: rgba(242, 183, 5, 0.2);
  transform: skewX(-6deg);
  border-radius: 0.5rem;
}

.highlight-text {
  position: relative;
  color: white;
  font-weight: 700;
  font-style: italic;
}

.hero-subtitle {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.7;
  max-width: 42rem;
  border-left: 4px solid var(--main-amber);
  padding-left: 1rem;
}

@media (min-width: 480px) {
  .hero-subtitle {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    padding-left: 2rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.btn-primary {
  background: var(--orange-terra);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 0 25px rgba(232, 133, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .btn-primary {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }
}

.btn-primary:hover {
  background: #ff9b68;
  box-shadow: 0 0 30px rgba(232, 133, 90, 0.45);
}

.btn-primary .material-symbols-outlined {
  transition: transform 0.3s;
}

.btn-primary:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.btn-secondary {
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  backdrop-filter: blur(4px);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .btn-secondary {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary .material-symbols-outlined {
  color: var(--accent);
}

/* Hero Form */
.hero-form-container {
  grid-column: span 12;
  position: relative;
}

@media (min-width: 1280px) {
  .hero-form-container {
    grid-column: span 5;
  }
}

.glow-1 {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 16rem;
  height: 16rem;
  background: rgba(70, 168, 41, 0.2);
  border-radius: 9999px;
  filter: blur(80px);
}

.glow-2 {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 16rem;
  height: 16rem;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 9999px;
  filter: blur(80px);
}

.glass-panel {
  background: rgba(250, 240, 230, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 133, 90, 0.18);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 12px 40px 0 rgba(30, 58, 47, 0.12);
  position: relative;
}

@media (min-width: 480px) {
  .glass-panel {
    padding: 2rem;
  }
}

@media (min-width: 640px) {
  .glass-panel {
    padding: 2.5rem 2.5rem;
    border-radius: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .glass-panel {
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
  }
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .form-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .form-title {
    font-size: 1.875rem;
  }
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.intro-list {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  list-style: none;
  display: grid;
  gap: 1rem;
  color: var(--carbon);
  line-height: 1.8;
  font-size: 0.975rem;
}

.intro-list li {
  position: relative;
  padding-left: 1.5rem;
}

.intro-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--orange-terra);
  font-size: 1.5rem;
  line-height: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  form {
    gap: 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: block;
  color: #cbd5e1;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-left: 0.25rem;
}

.input-container {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  color: #94a3b8;
  transition: color 0.3s;
}

.input-container:focus-within .input-icon {
  color: var(--accent);
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem 1rem 1rem 3rem;
  color: white;
  outline: none;
  transition: all 0.3s;
}

.form-input::placeholder {
  color: #64748b;
}

.form-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--accent);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  background: transparent;
  border: 1px solid #64748b;
  border-radius: 0.25rem;
  color: var(--accent);
  height: 1rem;
  width: 1rem;
  cursor: pointer;
}

.checkbox-label span {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.checkbox-label:hover span {
  color: #cbd5e1;
}

.forgot-link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}

.forgot-link:hover {
  color: white;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: white;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--accent-light);
  box-shadow: 0 10px 15px -3px rgba(70, 168, 41, 0.4);
  transform: translateY(-2px);
}

.form-divider {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact-link {
  color: #cbd5e1;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.contact-link:hover {
  color: white;
}

.contact-link .accent-text {
  color: var(--accent);
  font-weight: 600;
}

/* Ofrecemos Section */
.section-ofrecemos {
  padding: 4rem 0;
  background-color: #ffffff;
  background-image:
    radial-gradient(at 5% 5%, rgba(30, 58, 47, 0.08) 0px, transparent 40%),
    radial-gradient(at 95% 5%, rgba(30, 58, 47, 0.08) 0px, transparent 40%),
    radial-gradient(at 50% 50%, rgba(30, 58, 47, 0.04) 0px, transparent 60%),
    radial-gradient(at 5% 95%, rgba(30, 58, 47, 0.15) 0px, transparent 40%),
    radial-gradient(at 95% 95%, rgba(30, 58, 47, 0.1) 0px, transparent 40%);
  position: relative;
  overflow: hidden;
}

.section-ofrecemos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(30, 58, 47, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(30, 58, 47, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(30, 58, 47, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(30, 58, 47, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(30, 58, 47, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(30, 58, 47, 0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.section-ofrecemos::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 40px solid transparent;
  background: linear-gradient(to right, rgba(30, 58, 47, 0.02), transparent 15%, transparent 85%, rgba(30, 58, 47, 0.02)) border-box;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .section-ofrecemos {
    padding: 6rem 0;
  }
}

.texture-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  mix-blend-mode: multiply;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 6rem;
  }
}

.section-tag {
  color: var(--orange-terra);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(232, 133, 90, 0.08);
  border-radius: 9999px;
  border: 1px solid rgba(232, 133, 90, 0.1);
}

.section-beneficios .section-tag {
  color: var(--main-mid);
  background: rgba(74, 111, 165, 0.08);
  border-color: rgba(74, 111, 165, 0.1);
}

.section-ofrecemos .section-tag {
  color: var(--orange-terra);
}

.section-title {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-ofrecemos .section-title {
  color: var(--carbon);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  color: var(--carbon);
  font-size: 1rem;
  line-height: 1.6;
}

.section-ofrecemos .section-description {
  color: var(--carbon);
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.feature-card {
  background: linear-gradient(145deg, #ffffff, var(--cream));
  border-radius: 2rem;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(30, 58, 47, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 3rem;
    border-radius: 2rem;
  }
}

.feature-card:hover {
  background: linear-gradient(145deg, var(--cream), #ffffff);
  box-shadow: 0 40px 80px -15px rgba(30, 58, 47, 0.08),
    0 15px 30px -10px rgba(232, 133, 90, 0.1);
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(232, 133, 90, 0.3);
}

.card-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: white;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px -5px rgba(30, 58, 47, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(30, 58, 47, 0.03);
  position: relative;
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  background: linear-gradient(45deg, var(--orange-terra), var(--green-mint));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
  filter: blur(8px);
}

.feature-card:hover .card-icon {
  transform: translateY(-5px) rotate(8deg);
  background: rgba(91, 173, 143, 0.05);
}

.feature-card:hover .card-icon::after {
  opacity: 0.15;
}

.card-icon .material-symbols-outlined {
  font-size: 2.25rem;
  color: var(--program-green);
  transition: color 0.3s;
}

.feature-card:hover .card-icon .material-symbols-outlined {
  color: var(--program-terra);
}

.card-title {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--main-mid);
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s;
  min-height: 2rem;
}

.feature-card:hover .card-title {
  color: var(--program-terra);
}

.card-description {
  color: var(--carbon);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.5rem;
  min-height: 150px;
}

.card-motto {
  font-family: 'Sora', Arial, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--main-mid);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  min-height: 4rem;
}

.card-inclusions {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 58, 47, 0.05);
}

.card-inclusions h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--main-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-inclusions li {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-inclusions li .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.brochure-note {
  color: var(--main-dark);
  font-weight: bold;
  text-align: left;
  margin-top: 2rem;
}

.video-inclusions {
  border-top: none;
  padding-top: 0;
  margin-top: 1.5rem;
}

.video-inclusions li {
  color: #ffffff;
}

/* Video Section */
.section-video {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--green-selva), #112214);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-video {
    padding: 8rem 0;
  }
}

.video-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

.video-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(232, 133, 90, 0.25);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

.video-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: rgba(91, 173, 143, 0.2);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

.video-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .video-content {
    flex-direction: row;
    gap: 6rem;
  }
}

.video-text {
  flex: 1;
}

@media (min-width: 1024px) {
  .video-text {
    width: 50%;
  }
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.video-badge .material-symbols-outlined {
  color: var(--orange-terra);
  font-size: 1rem;
}

.video-badge-text {
  color: var(--main-amber);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.video-title {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 2rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .video-title {
    font-size: 3rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, var(--orange-terra), var(--green-mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-description {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .video-description {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.features-mini-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-mini {
  display: flex;
  gap: 1rem;
}

.feature-mini-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.feature-mini-icon .material-symbols-outlined {
  color: var(--orange-terra);
  font-size: 1.5rem;
}

.feature-mini-text h4 {
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}

.feature-mini-text p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.gallery-carousel-container {
  flex: 1;
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .gallery-carousel-container {
    width: 50%;
  }
}

.gallery-glow-outer {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(70, 168, 41, 0.2), rgba(37, 99, 235, 0.2));
  border-radius: 2.5rem;
  filter: blur(40px);
  opacity: 0.5;
  transition: opacity 0.7s;
}

.gallery-carousel-container:hover .gallery-glow-outer {
  opacity: 1;
}

.gallery-carousel {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: black;
  aspect-ratio: 16 / 9;
  display: flex;
}

.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
}

.gallery-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.gallery-track:hover .gallery-slide img {
  opacity: 0.7;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-nav.prev {
  left: 1rem;
}

.gallery-nav.next {
  right: 1rem;
}

.gallery-nav .material-symbols-outlined {
  color: var(--main-amber);
  font-size: 2rem;
}

.gallery-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.gallery-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.gallery-indicator.active {
  background: var(--main-amber);
}

/* Modal Gallery Adjustments */
.modal-gallery-carousel {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 1rem;
}

.modal-gallery-carousel .gallery-track {
  cursor: default;
}

.modal-gallery-carousel .gallery-slide img {
  object-fit: contain;
  max-height: 80vh;
}

.modal-gallery-carousel:hover .gallery-slide img {
  opacity: 1;
}

/* Mentors Section */
.section-beneficios {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #ffffff, var(--gray-light));
  position: relative;
}

@media (min-width: 768px) {
  .section-beneficios {
    padding: 8rem 0;
  }
}

.beneficios-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .beneficios-header {
    flex-direction: row;
  }
}

.beneficios-header-text {
  max-width: 42rem;
}

.beneficios-divider {
  display: none;
  height: 1px;
  background: #cbd5e1;
  flex-grow: 1;
  margin-left: 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .beneficios-divider {
    display: block;
  }
}

.beneficios-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.nav-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.beneficio-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -10px rgba(30, 58, 95, 0.1);
  border: 1px solid rgba(74, 111, 165, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  height: auto;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  border-color: var(--main-amber);
  box-shadow: 0 20px 40px -15px rgba(30, 58, 95, 0.15);
}

.mentor-photo {
  width: 210px;
  height: 210px;
  border-radius: 1.25rem;
  object-fit: cover;
  object-position: top;
  margin: 0 auto;
  margin-bottom: 1rem;
  transition: transform 0.5s;
  flex-shrink: 0;
}

.beneficio-card:hover .mentor-photo {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .beneficio-card {
    padding: 1.75rem;
    border-radius: 1.5rem;
  }
}

.beneficio-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.beneficio-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.beneficio-card:hover .beneficio-accent-line {
  opacity: 1;
}

.beneficio-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(1, 45, 85, 0.05);
  color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.beneficio-card:hover .beneficio-icon {
  background: var(--primary);
  color: white;
}

.beneficio-icon.accent {
  background: rgba(70, 168, 41, 0.1);
  color: var(--accent);
}

.beneficio-card:hover .beneficio-icon.accent {
  background: var(--accent);
  color: white;
}

.beneficio-icon.gray {
  background: #f1f5f9;
  color: #475569;
}

.beneficio-card:hover .beneficio-icon.gray {
  background: #1e293b;
  color: white;
}

.beneficio-icon .material-symbols-outlined {
  font-size: 1.875rem;
}

.beneficio-title {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--main-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.beneficio-role {
  color: var(--main-mid);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.beneficio-role-modal {
  margin-bottom: 0px;
}

.beneficio-description {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Flexible height for cards, ensuring button stays at bottom */
.beneficio-card .beneficio-description {
  margin-bottom: 1.5rem;
}

.mentor-ver-mas {
  margin-top: auto;
  background: none;
  border: none;
  color: var(--main-mid);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.mentor-ver-mas:hover {
  color: var(--main-amber);
  transform: translateX(3px);
}

.mentor-ver-mas .material-symbols-outlined {
  font-size: 1.1rem;
}

.beneficio-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.beneficio-card:hover .beneficio-link {
  color: var(--accent);
}

.beneficio-link .material-symbols-outlined {
  font-size: 1.125rem;
}

/* CTA Section */
.section-cta {
  padding: 3rem 1.5rem;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-cta {
    padding: 6rem 1.5rem;
  }
}

.cta-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.1;
}

.cta-glow-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 600px;
  height: 600px;
  background: rgba(70, 168, 41, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 2rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3.75rem;
    margin-bottom: 2rem;
  }
}

.cta-description {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.75;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-cta-primary {
  background: var(--accent);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(70, 168, 41, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
}

.btn-cta-secondary {
  background: transparent;
  border: 1px solid rgba(30, 58, 47, 0.15);
  color: var(--carbon);
  padding: 1rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: rgba(250, 240, 230, 0.9);
}

/* Contact / Footer */
footer {
  background: #001A33;
  color: white;
  padding-top: 3rem;
  padding-bottom: 2rem;
  border-top: 1px solid #1e293b;
}

@media (min-width: 768px) {
  footer {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
    margin-bottom: 5rem;
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-brand-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.625rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  height: 1.5rem;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .footer-logo-img {
    height: 2rem;
  }
}

.footer-logo-text {
  color: white;
  font-family: 'Sora', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  font-style: italic;
}

.footer-logo-title {
  display: flex;
  flex-direction: column;
}

.footer-logo-title span:first-child {
  font-family: 'Sora', Arial, sans-serif;
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.footer-description {
  color: #94a3b8;
  max-width: 28rem;
  line-height: 1.75;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent);
}

.social-link img {
  width: 1rem;
  filter: invert(1);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-link:hover img {
  opacity: 1;
}

.footer-links h4 {
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #94a3b8;
}

.footer-links ul li a {
  color: #94a3b8;
  transition: color 0.3s;
  text-decoration: none;
  display: block;
  width: fit-content;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-contact h4 {
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #94a3b8;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 300;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 768px) and (max-width: 1460px) {
  .footer-bottom-links {
    margin-right: 6rem;
  }
}

.footer-bottom-links a {
  color: #64748b;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: white;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  z-index: 100;
  background-color: var(--whatsapp-green);
  text-decoration: none;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 9999px;
  opacity: 0.8;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  color: white;
  position: relative;
  z-index: 10;
  transition: transform 0.3s;
}

.whatsapp-button:hover .whatsapp-icon {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 5rem;
  background: white;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(1rem);
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Utilities */
.relative {
  position: relative;
}

.hidden {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .glass-panel {
    padding: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Video Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 1100px;
  background: transparent;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}



/* Mentor Carousel Styles */
#beneficios .mentor-carousel-container {
  overflow: hidden;
  width: 100%;
}

#beneficios .mentor-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
  padding: 1rem 0;
}

#beneficios .beneficio-card {
  flex: 0 0 100%;
}

@media (min-width: 640px) {
  #beneficios .mentor-track {
    gap: 2rem;
  }

  #beneficios .beneficio-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  #beneficios .mentor-track {
    gap: 2.5rem;
  }

  #beneficios .beneficio-card {
    flex: 0 0 calc(33.333% - 1.666rem);
  }
}

/* Global Pointer Utilities */
.whatsapp-button,
.nav-arrow,
.btn-cta-primary,
.header-social-link,
.footer-social a,
.video-player-container,
.feature-card,
.beneficio-card,
[data-video] {
  cursor: pointer !important;
}

@media (max-width: 768px) {
  .video-badge-text {
    font-size: 0.75rem;
  }
}

/* Mentor Modal Styles */
.mentor-modal-card {
  max-width: 850px;
  max-height: 650px;
  overflow: hidden;
  display: flex;
}

.mentor-modal-content {
  background: white !important;
  border-radius: 2rem !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mentor-modal-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) {
  .mentor-modal-body {
    flex-direction: row;
    height: 100%;
  }
}

.mentor-modal-image-container {
  width: 100%;
}

@media (min-width: 768px) {
  .mentor-modal-image-container {
    width: 340px;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .mentor-modal-image-container {
    display: none;
  }
}

.mentor-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.mentor-modal-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 768px) {
  .mentor-modal-info {
    padding: 3rem;
  }
}

.modal-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 1.5rem 0;
}

#modal-mentor-name {
  padding-right: 2.5rem;
}

#modal-mentor-description {
  line-height: 1.6;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0;
  display: block;
  flex: 1;
  overflow-y: auto;
  padding-right: 0.75rem;
}

/* Custom scrollbar for the modal texts */
#modal-mentor-description::-webkit-scrollbar {
  width: 4px;
}

#modal-mentor-description::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

#modal-mentor-description::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

#modal-mentor-description::-webkit-scrollbar-thumb:hover {
  background: var(--main-mid);
}

@media (max-width: 480px) {
  #modal-mentor-description {
    max-height: 350px;
  }
}

#mentor-modal .modal-close {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 1rem;
  right: 1rem;
}

/* Fix for very small screens (0px - 375px) */
@media (max-width: 375px) {
  .beneficio-card {
    min-height: auto;
    height: auto;
    padding: 1.25rem;
  }

  .mentor-photo {
    width: 160px;
    height: 160px;
  }

  .beneficio-card .beneficio-description {
    margin-bottom: 1rem;
  }

  .beneficio-title {
    font-size: 1.1rem;
  }

  .beneficio-role {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }
}