/*=============== GOOGLE LETRAS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  --first-color: hsl(355, 68%, 54%);
  --first-color-lighten: hsl(0, 3%, 14%);

  --title-color1:hsl(240, 3%, 12%);
  --title-color: hsl(0, 0%, 100%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(0, 0%, 100%);
 
 
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  --font-medium: 500;
  --font-semi-bold: 600;
 
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  
}

body{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.logo-img {
    height: 40px;
    margin-right: 8px; 
    vertical-align: middle; 
  }
/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}




/*=============== NAV ===============*/

.nav {
  height: var(--header-height);
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
  
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}


.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--title-color);
}


.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/

@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}

@media screen and (min-width: 1118px) {

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
    
  
  }
  .nav__toggle {
    display: none;
    
  }
  .nav__list {
    display: flex;
    column-gap: 2rem;
    height: 100%;
  padding-left: 11rem; 

    
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
   
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
    
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 5.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}


#toggle {
    position: absolute;
    top: -100px;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    nav .list {
        flex-wrap: wrap;
        justify-content: center;
    }

    body {
        padding-top: 50px;
    }
}

section {
    padding: 80px 13% 70px;
}




hr {
    grid-column: span 5;
    border: 0;
    border-top: 1px solid #ffffff;
    margin: 20px 0;
}

nav .logo-img {
    height: 50px;
    width: auto;
}

.submenu1 {
    background-color: rgb(42, 45, 51);
}
.especialidades{
    background-color:rgb(42, 45, 51);
}
.styled-table {
    border-collapse: collapse;
    margin: 50px auto;
    margin-bottom: 30px;
    font-size: 1em;
    font-family: "Montserrat" , sans-serif;
    min-width: 500px;
    box-shadow: 0 0 20px rgb(144, 146, 148);
    width: 50%;
    
}

.styled-table thead tr {
    background-color: rgb(31, 35, 41);
    color: #ffffff;
}

.styled-table th,
.styled-table td {
    font-size: 16px !important;
}

.styled-table tbody tr {
    border-bottom: 1px solid #d6d6d6;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}


.hr1{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background-color: black;
    border: none;
    margin-top: 80px;
    margin-bottom: 70px;
}
.icons a {
    font-size: 40px; 
    color: #ffffff; 
    margin: 0 10px; 
    transition: color 0.3s ease; 
}

.icons a:hover {
    color:#b3902f; 
}


.container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
   
}

.card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, max-height 0.3s ease;
    max-height: 250px;
    cursor: pointer;
    text-align: center;
    
}

.card:hover {
    transform: scale(.9);
    
}

.card .info {
  padding: 15px;
}


.card .title {
    background-color: #7A1F1F;
    color: white;
    padding: 15px;
    font-size: 1em;
    font-weight: bold;
}



.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.box-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Diseño profesional de cards */
.box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  aspect-ratio: 1/1.2; /* Proporción fija para todas las cards */
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.box:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #161616 0%, transparent 100%);
  padding: 30px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.box:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.overlay a {
  display: inline-block;
  background: white;
  color: #7A1F1F;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.overlay a:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Título de sección */
.carreras {
  text-align: center;
  font-size: 2.5rem;
  color: #2d2f36;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.carreras:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #7A1F1F;
}

/* Responsive para pantallas más grandes */
@media (min-width: 1600px) {
  .box-area {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }
  
  .overlay h3 {
    font-size: 1.7rem;
  }
  
  .overlay p {
    font-size: 1.05rem;
  }
}

/* Responsive para pantallas medianas */
@media (max-width: 768px) {
  .box-area {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .carreras {
    font-size: 2rem;
  }
}

/* Efecto de carga con GSAP (opcional) */
.box {
  opacity: 0;
  transform: translateY(30px);
}

.box.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}




  .header {
    background-color: #7A1F1F;
  }
  
/*FOOTER */
.footer-cetis155 {
  background-color: #2d2f36;
  color: #e0e0e0;
  padding: 60px 0 30px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
}

.footer-logo span {
  color: #b44343;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 0;
}

.footer-links li {
  opacity: 0;
  transform: translateY(20px);
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff4b4b;
  ;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.social-icons a:hover {
  background-color: rgba(74, 144, 226, 0.2);
  color: #e24a4a;
  transform: translateY(-3px);
}

.copyright {
  font-size: 14px;
  color: #888;
  opacity: 0;
  transform: translateY(20px);
}

.box {
  opacity: 0;
  transform: translateY(50px);
}

.overlay {
  transform: translateY(20px);
  opacity: 0;
}
.h1calendarios {
  font-size: 2.5rem;
  font-weight: 700;
  color: #38393a; 
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-top: 80px;
    margin-bottom: 50px;
}




@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-cetis {
  position: relative;
  height: 100vh;
  min-height: 650px;
  
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  clip-path: inset(0 0 15% 0);
}

.hero-cetis__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.6);
  background:linear-gradient(
    180deg,
    rgba(41, 41, 43, 0.158)0%,
    rgba(97, 97, 100, 0.568)100%),
    url(../img/img1.PNG) fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
 
    

  
}

.hero-cetis__content {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-cetis h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-cetis p {
  font-size: 1.5rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-cetis__buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #963a3a;
  color: white;
}

.btn--outline {
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-cetis {
    height: 80vh;
    min-height: 500px;
    text-align: center;
  }
  
  .hero-cetis h1 {
    font-size: 2.5rem;
  }
  
  .hero-cetis p {
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cetis__buttons {
    flex-direction: column;
    align-items: center;
  }
}



.contenedor {
  display: flex;
  align-items: center;
  gap: 100px;
  
}



.texto {
  flex: 1;
  text-align: justify;
}

.texto h1 {
  text-align: center;
  color: #8b3a3a;
  margin-bottom: 15px;
  font-size: 24px;
}

.texto p {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;

  border: none;
  margin-top: 100px;
  margin-bottom: 150px;
}
.info1 {

  text-align: center;
  color: rgb(255, 255, 255); 
  background:linear-gradient(
   190deg,
    rgba(0, 0, 0, 0.404)0%,
    rgba(34, 34, 36, 0.952)100%),
    url(../img/imginfo.png) fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
 
}
.btn{
  display: inline-block;
  margin-top: 15px;
  padding: 10px 40px;

  text-decoration: none;
  background: #7A1F1F;
  color: white;
}



@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    max-height: 0; 
    overflow: hidden;
    background-color: #7A1F1F;
    transition: max-height 0.3s ease-in-out;
  }

  .show-menu {
    max-height: 500px; 
    overflow-y: auto;
  }

  
  

.dropdown__container {
    background-color: #fdfdfd;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  
  .dropdown-open .dropdown__container {
    height: auto;
  }
  
  .dropdown__content {
    padding: 0 20px;
  }
  
  .dropdown__group {
    padding: 15px 0;
  }
  
  .dropdown__title {
    color: #7A1F1F;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
  }
  
  .dropdown__link {
    color: #333;
    padding: 8px 15px;
    display: block;
  }
}




























@media screen and (max-width: 1118px) {
  .nav__list {
    flex-direction: column;
  }
  

}

html {
    scroll-behavior: smooth;
}










.logos-container {
  display: flex;
  justify-content: center;
  gap: 20px; 
}

.logos-container a img {
  width: 150px;
  transition: transform 0.3s ease;
}

.logos-container a img:hover {
  transform: scale(1.1); 
}










@media screen and (max-width: 1118px) {
  .nav__list {
    flex-direction: column;
  }
  

}

html {
    scroll-behavior: smooth;
}










.logos-container {
  display: flex;
  justify-content: center;
  gap: 20px; 
}

.logos-container a img {
  width: 150px;
  transition: transform 0.3s ease;
}

.logos-container a img:hover {
  transform: scale(1.1); 
}











.seccion-cetis {

    padding: 80px 0;
    font-family: "Montserrat", sans-serif;
}

.contenedor-cetis {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.logo-cetis {
    height: 80px;
    margin-bottom: 30px;
}

.encabezado-cetis h1 {
    color: #7A1F1F;
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.divisor-cetis{
    width: 100px;
    height: 4px;
    background-color: #7A1F1F; 
    margin: 0 auto 30px;
}

.texto-cetis p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto 40px;
}








/* Responsive */
@media (max-width: 768px) {
    .seccion-cetis {
        padding: 60px 0;
    }
    
    .logo-cetis {
        height: 60px;
    }
    
    .encabezado-cetis h1 {
        font-size: 2rem;
    }
    
    .texto-cetis p {
        font-size: 1rem;
    }
    
 

  }

@media (max-width: 480px) {
    .encabezado-cetis h1 {
        font-size: 1.8rem;
    }
    
    .divisor-cetis {
        width: 80px;
    }
}




        
.seccion-cetis {
 font-size: 20px;
    padding: 60px 0;
    font-family: "Montserrat", sans-serif;
}

.contenedor-cetis {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.encabezado-cetis {
    text-align: center;
    margin-bottom: 40px;
}

.logo-cetis {
    height: 80px;
    margin-bottom: 20px;
}

.divisor-cetis {
    width: 100px;
    height: 3px;
    background-color: #262627;
    margin: 20px auto;
}
.contenido-principal {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 40px;
}

.columna-mision-vision {
    flex: 1;
}

.columna-valores {
    flex: 1;
     align-items: center; 
    text-align: center;
}



.bloque-texto {
    margin-bottom: 30px;
}



.h2valores {
    color: #262627;
    font-size: 1.8rem;
    margin-bottom: 15px;
    
    position: relative;
    padding-bottom: 10px;
}

.h2valores:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #7A1F1F;
    text-align: center;
    
}

p {
   
    line-height: 1.6;
    font-size: 1.1rem;
}






 .floating-windows {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .main-circle-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #7A1F1F;
            color: white;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .main-circle-btn:hover {
            background: #7A1F1F;
            transform: scale(1.1);
        }
        
        .circle-options {
            position: absolute;
            bottom: 60px;
            right: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }
        
        .circle-option {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transform: scale(0);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .circle-option:hover {
            transform: scale(1.1) !important;
        }
        
        .whatsapp { background: #25D366; }
        .instagram { background: #7A1F1F; }
        .facebook { background: #1877F2; }
        .twitter { background: #1DA1F2; }
        .tiktok { background: #000000; }
        
        .show-circle-options .circle-option {
            pointer-events: auto;
            transform: scale(1);
            opacity: 1;
        }
     
        .show-circle-options .circle-option:nth-child(1) {
            transition-delay: 0.1s;
        }
        .show-circle-options .circle-option:nth-child(2) {
            transition-delay: 0.2s;
        }
        .show-circle-options .circle-option:nth-child(3) {
            transition-delay: 0.3s;
        }
        .show-circle-options .circle-option:nth-child(4) {
            transition-delay: 0.4s;
        }
        .show-circle-options .circle-option:nth-child(5) {
            transition-delay: 0.5s;
        }





















        
    
.subject-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 12px;
    
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.styled-table {
 
    border-collapse: separate; 
    border-spacing: 0;
    font-size: 0.9rem;
    border-radius: 12px; 
    overflow: hidden; 
}


center {
    padding: 0;
    margin: 0;
    display: block;
}

.styled-table th {
    background: #7A1F1F; 
    color: white;
    padding: 10px 15px;
    text-align: left;
    font-weight: 600;

}


.styled-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0; 
    vertical-align: top;
}

.styled-table tr:last-child td {
    border-bottom: none;
}

.styled-table tr:nth-child(even) {
    background: #fafafa; 
  
}

.styled-table th:nth-child(1),
.styled-table td:nth-child(1) {
    width: 25%; 
    
}

.styled-table th:nth-child(2),

.styled-table td:nth-child(2) {
  
    width: 70%; 
}

.styled-table th:nth-child(3),
.styled-table td:nth-child(3) {
    width: 5%; 
    text-align: center;
    
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .styled-table {
        font-size: 0.85rem;
          border-radius: 12px;
    }
    
    .styled-table th, 
    .styled-table td {
        padding: 8px 10px;
        
    }
    
    /* Ajustar anchos en móvil */
    .styled-table th:nth-child(1),
    .styled-table td:nth-child(1) {
        width: 30%;
        
    }
    
    .styled-table th:nth-child(2),
    .styled-table td:nth-child(2) {
        width: 65%;
    }
}





