.elementor-63 .elementor-element.elementor-element-30d7f03{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-6fcc8f2 *//* VARIABLES Y RESET */
:root {
  --red-main: #C40000;
  --red-dark: #8B0000;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-400: #9ca3af;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, -apple-system, sans-serif; }
body { background-color: white; color: var(--gray-900); line-height: 1.5; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* UTILIDADES GLOBALES */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.shrink-0 { flex-shrink: 0; }
.transition { transition: all 0.3s ease; }

/* TEXTOS */
.title-hero { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
.subtitle-hero { font-size: 1.25rem; line-height: 1.6; }
/* Ajustado .title-section para versión móvil */
.title-section { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); }
.subtitle-section { font-size: 1.25rem; color: var(--gray-600); line-height: 1.6; }
.title-card { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
/* Nueva clase para títulos que debían ser más pequeños en mobile */
.title-feature { font-size: 1rem; font-weight: 700; }
.text-gray { color: var(--gray-600); }
.text-gray-dark { color: var(--gray-700); }
.text-light-90 { color: rgba(255,255,255,0.9); }
.text-light-80 { color: rgba(255,255,255,0.8); }
.text-light-400 { color: var(--gray-400); }
.text-white { color: white; }
.text-red { color: var(--red-main); }
.text-s { font-size: 0.875rem; }
.text-l { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

/* LAYOUT (Grids y Flex) */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-justify-center { display: flex; justify-content: center; }
.items-center { align-items: center; }
.flex { display: flex; }

/* ESPACIADOS (Paddings y Margins) */
.py-xl { padding-top: 5rem; padding-bottom: 5rem; }
.py-x2 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-m { padding-top: 1rem; }
.pb-l { padding-bottom: 3rem; }
/* Nuevas clases de padding que faltaban para arreglar los bordes */
.p-s { padding: 1rem; }
.p-m { padding: 1.5rem; }
.p-l { padding: 2rem; }

.mt-m { margin-top: 1.5rem; }
.mt-xl { margin-top: 4rem; }
.mb-xs { margin-bottom: 0.5rem; }
.mb-s { margin-bottom: 1rem; }
.mb-m { margin-bottom: 1.5rem; }
.mb-l { margin-bottom: 3rem; }
.mb-xl { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-s > * + * { margin-top: 1rem; }
.space-y-m > * + * { margin-top: 1.5rem; }
.space-y-l > * + * { margin-top: 2rem; }
.gap-xs { gap: 0.5rem; }
.gap-s { gap: 0.75rem; }
.gap-m { gap: 1.5rem; }
.gap-l { gap: 2rem; }

/* FONDOS Y BORDES */
.bg-white { background-color: white; }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-dark { background-color: var(--gray-900); }
.hero { background: linear-gradient(to bottom right, var(--red-main), var(--red-dark)); color: white; }
.overlay-black { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.overlay-black-light { position: absolute; inset: 0; background: rgba(0,0,0,0.1); }

/* Degradado de Hero subido de 6rem a 10rem */
.hero-gradient-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 6rem; background: linear-gradient(to top, white, transparent); }
/* Espaciado base para la version móvil en el hero */
.hero-container { padding-top: 3rem; padding-bottom: 3rem; }

.border-t { border-top: 1px solid #e5e7eb; }
.border-t-light { border-top: 1px solid rgba(255,255,255,0.2); }
.border-b-dark { border-bottom: 1px solid var(--gray-800); }
.border-left-red { border-left: 4px solid var(--red-main); }
.rounded-lg { border-radius: 0.5rem; }
.shadow-m { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-l { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }

/* COMPONENTES */
.badge-blur { display: inline-flex; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border-radius: 9999px; font-size: 0.875rem; font-weight: 500; }
.badge-red { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(196,0,0,0.1); border-radius: 9999px; color: var(--red-main); font-weight: 600; }
.badge-red-outline { padding: 0.375rem 1rem; background: rgba(196,0,0,0.1); color: var(--red-main); border-radius: 9999px; font-weight: 700; font-size: 0.875rem; }
.pill { padding: 0.25rem 0.75rem; background: var(--red-main); color: white; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; }

.icon { width: 1.5rem; height: 1.5rem; }
.icon-s { width: 1.25rem; height: 1.25rem; }
.icon-m { width: 1.75rem; height: 1.75rem; }
.icon-l { width: 2rem; height: 2rem; color: white; }

.icon-box-blur { width: 3rem; height: 3rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border-radius: 0.5rem; }
.icon-box-red { width: 4rem; height: 4rem; background: var(--red-main); border-radius: 0.75rem; }
.icon-box-red-solid { width: 3.5rem; height: 3.5rem; background: var(--red-main); border-radius: 0.75rem; color: white; }
.icon-box-light-red { width: 3rem; height: 3rem; background: rgba(196,0,0,0.1); border-radius: 0.5rem; color: var(--red-main); }
.social-icon { width: 2.5rem; height: 2.5rem; background: var(--gray-800); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.social-icon:hover { background: var(--red-main); }

.card-white { background: white; padding: 2rem; border-radius: 1rem; }
.card-hover { background: var(--gray-50); padding: 2rem; border-radius: 1rem; }
.card-hover:hover { background: var(--red-main); transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.card-hover:hover .title-card, .card-hover:hover .text-gray { color: rgba(255,255,255,0.9); }
.card-hover:hover .icon-box-red { background: white; }
.card-hover:hover .icon-l { color: var(--red-main); }
.card-flex { display: flex; gap: 1.5rem; padding: 2rem; background: white; border-radius: 1rem; }
.card-flex:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.card-blur { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); padding: 1.5rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.2); }

/* Ajuste del botón para ser compatible con etiquetas "a" */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; background: white; color: var(--red-main); font-weight: 700; border-radius: 0.5rem; border: none; cursor: pointer; font-size: 1rem; text-decoration: none; }
.divider-v { width: 4px; height: 1.5rem; background: #d1d5db; }

/* EFECTOS HOVER */
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.hover-border:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.hover-scale:hover { transform: scale(1.05); }
.hover-white:hover { color: white; }

/* ACORDEÓN (Plan de Estudios) */
.accordion { background: white; border-radius: 1rem; border: 1px solid #e5e7eb; overflow: hidden; }
.accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 1.5rem; cursor: pointer; background: linear-gradient(to right, var(--gray-50), white); list-style: none; }
.accordion-header::-webkit-details-marker { display: none; }
.accordion-header:hover { background: var(--gray-100); }
.chevron { width: 2rem; height: 2rem; border-radius: 50%; }
.accordion[open] .chevron { transform: rotate(180deg); }
.accordion-body { padding: 1.5rem; border-top: 1px solid #e5e7eb; }
.list-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 0.5rem; }
.list-item:hover { border-color: rgba(196,0,0,0.3); box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }

/* Esto afecta a todas las pantallas (Mobile First) */
.max-w-800_container {
    width: 100%;
    padding-left: 20px; /* Margen de seguridad para que no toque los bordes en celular */
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .max-w-800_container {
        max-width: 800px; 
    }
}

/* RESPONSIVE DESIGN */
@media (min-width: 640px) {
  .title-hero { font-size: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-blur { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .title-hero { font-size: 3.75rem; }
  .title-section { font-size: 2.25rem; }
  .title-feature { font-size: 1.25rem; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .hero-container { padding-top: 6rem; padding-bottom: 10rem; }
  .hidden-sm { display: inline-block; }
}
@media (max-width: 1023px) {
  .hidden-sm { display: none; }
}/* End custom CSS */