/*=============== 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;
  /*========== COLORES ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --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%);
  /*========== AUTOGRAFIA LETRAS==========*/
 
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --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;
}
p{
  font-size: 20px;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.logo-img {
    height: 40px; /* Ajusta el tamaño del logo */
    margin-right: 8px; /* Espacio entre el logo y el texto */
    vertical-align: middle; /* Alineación con el texto */
  }
/*=============== 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;
}





  .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;
}
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.18;
    background-size: cover;
    background-position: center;
}






.hero-programacion {
  position: relative;
  height: 80vh;
  min-height: 650px;
  
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  clip-path: inset(0 0 15% 0);
  
}

.hero-pro__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/mantautomotrizimg1.png') fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
clip-path: polygon(0 0, 100% 0, 100% 86%, 0 77%);


    

  
}

@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");

svg {
	font-family: "Montserrat", sans-serif;
	width: 100%; height: 100%;
}
svg text {
	animation: stroke 3.5s infinite alternate;
	stroke-width: 2;
	stroke: #365FA0;
	font-size: 100px;
}
@keyframes stroke {
	0%   {
		fill: rgba(72,138,204,0); stroke: rgb(216, 50, 78);
    
		stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
	}
	70%  {fill: rgba(72,138,204,0); stroke: rgb(255, 255, 255); }
	80%  {fill: rgba(72,138,204,0); stroke: rgb(255, 255, 255); stroke-width: 3; }
  
	100% {
    
		fill: rgb(255, 255, 255); stroke: rgba(54,95,160,0);
		stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
    
	}
}



.hero-pro__content {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;

  display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.hero-programacion h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.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;
  }
}


/* PLAN DE ESTUDIOS CSS */


.plan-estudios {
  position: relative;
  padding: 5rem 0;
clip-path: polygon(0 5%, 100% 0, 100% 96%, 0 100%);
  z-index: 0;
  overflow: hidden;
  min-height: 100vh;
}

.plan-estudios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    linear-gradient(
      180deg,
      rgba(41, 41, 43, 0.2) 0%,
      rgba(97, 97, 100, 0.5) 100%
    ),
    url("../img/mantautoimg2.png") fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.6);
}



.plan-estudios .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 50px;
}

.semestres-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.semestre-card {
  background: #201f1f69;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(163, 211, 255, 0.596);
  transition: all 0.3s ease; 
}

.semestre-card:hover {
  transform: scale(1.05) translateY(-5px); 
  box-shadow: 0 15px 30px rgba(46, 45, 45, 0.226);
  background: rgb(42, 44, 46);
}

.semestre-header {
  background: #2d2f36;
  color: rgb(255, 255, 255);
  padding: 1.5rem;
  text-align: center;
}

.semestre-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.materias-list {
  padding: 1.5rem;
  list-style-type: none;
}

.materias-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  color: #ffffff;
  font-weight: 500;
}

.materias-list li:last-child {
  border-bottom: none;
}
/* FIN  PLAN DE ESTUDIOS CSS */




/* Habilidades que Desarrollarás */
.habilidades-programacion {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.habilidades-programacion .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.habilidades-programacion h2 {
  font-size: 2.5rem;
  color: #2d2f36;
  margin-bottom: 1rem;
}

.habilidades-programacion .subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

.habilidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.habilidad-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #702424;
  
}

.habilidad-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.habilidad-icon {
  font-size: 2.5rem;
  color:#702424;
  margin-bottom: 1.5rem;
}

.habilidad-card h3 {
  font-size: 1.3rem;
  color: #2d2f36;
  margin-bottom: 1rem;
}

.habilidad-card p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.habilidad-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.habilidad-tags span {
  background: #313438;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.habilidades-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.extra-content h3 {
  font-size: 1.5rem;
  color: #702424;
  margin-bottom: 1.5rem;
}

.extra-content ul {
  list-style: none;
  padding: 0;
}

.extra-content li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #2c3e50;
  font-weight: 500;
}

.extra-content i {
  color: #8d3939;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.habilidades-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .habilidades-extra {
    grid-template-columns: 1fr;
  }
  
  .extra-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .habilidades-programacion h2 {
    font-size: 2rem;
  }
  
  .habilidades-grid {
    grid-template-columns: 1fr;
  }
}



.p1text {
  padding-bottom: 200px;
  display: block;
  margin-top: 120px;
}

.info2 {

  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/mantautoimg2.png) fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    
 
}

.ptext2 {
  padding-bottom: 70px;
  display: block;
  margin-top:50px;
  text-align: center;
  text-decoration: #2d2f36;
  line-height: 1.8;
 font-size: 19px;

}
.ptext2h{
  display: block;
  margin-top:50px;
  text-align: center;
  font-size: 19px;
}


.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .08;
  background-size: cover;
  background-position: center;
  background:-webkit-repeating-linear-gradient();
  
}















/* Estilos para la sección de Perfil de Egreso */
.perfil-egreso {
  padding: 80px 0;
  background-color: #f9f9f9;
  
}

.perfil-egreso .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.perfil-egreso h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.perfil-egreso .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 50px;
}

.perfil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.competencia-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.competencia-card:hover {
 transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: white;
  
}

.competencia-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 20px;
}

.competencia-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.competencia-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

.perfil-descripcion {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.perfil-descripcion h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.perfil-descripcion ul {
  list-style-type: none;
  padding-left: 0;
}

.perfil-descripcion li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #34495e;
  line-height: 1.6;
}

.perfil-descripcion li:before {
  content: "✓";
  color: #27ae60;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .perfil-grid {
    grid-template-columns: 1fr;
  }
  
  .perfil-egreso {
    padding: 50px 0;
  }
}













/* DISEÑO DE CREAR PAGINAS Y*/
.web-design-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
}

.web-design-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  
}

.web-design-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.web-design-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--first-color);
}

.web-design-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  
  
}

.web-design-card h3 {
  font-size: 1.3rem;
  color: var(--title-color1);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.web-design-card h3 i {
  color: var(--first-color);
  font-size: 1.5rem;
}

.web-design-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.tech-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tech-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: var(--font-semi-bold);
  width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.tech-badge.html { background: #e34f26; }
.tech-badge.css { background: #2965f1; }
.tech-badge.js { background: #f7df1e; color: #333; }
.tech-badge.php { background: #777bb4; }
.tech-badge.mysql { background: #4479a1; }



.web-design-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  
}

.web-design-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.web-design-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.web-design-image:hover img {
  transform: scale(1.05);
}

.web-design-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.web-design-image:hover .web-design-overlay {
  transform: translateY(0);
}

.web-design-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.web-design-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.web-design-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--first-color);
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--first-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: var(--title-color1);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-color);
}

.web-design-projects h3 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--title-color1);
  margin-bottom: 2rem;
  font-weight: var(--font-semi-bold);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: white;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--first-color);
}

.project-icon {
  width: 60px;
  height: 60px;
  background: var(--first-color);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.project-card h4 {
  font-size: 1.1rem;
  color: var(--title-color1);
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
  
 
}

/* Responsive */
@media (max-width: 992px) {
  .web-design-content {
    grid-template-columns: 1fr;
  }
  
  .web-design-visual {
    order: -1;
  }
  
  .web-design-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .web-design-features {
    grid-template-columns: 1fr;
  }
  
  .web-design-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .web-design-section {
    padding: 3rem 0;
  }
  
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    
  }
}




















.semestre-header {
  background: linear-gradient(17www0deg, var(--first-color), hsl(210, 4%, 19%));
  
}




.habilidad-card:hover,
.web-design-card:hover,
.project-card:hover {
  box-shadow: 0 0 7px #8a4444;
  border-color: var(--first-color);
}



/* Versión móvil */
@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: 500px) {
  .hero-pro__content {
    position: absolute;
    left: 0;
    top: 200px;
    width: 100%;
    height: auto;
    overflow: visible; 
    padding: 20px; 
    transition: height 0.7s ease;
  }

  .hero-pro__content h1, .hero-pro__content p {
    font-size: 50px; 
    word-wrap: break-word; 
    text-align: center; 
  }
}








 .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; }
        
        /* Animación cuando está abierto */
        .show-circle-options .circle-option {
            pointer-events: auto;
            transform: scale(1);
            opacity: 1;
        }
        
        /* Animaciones individuales con delays */
        .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;
        }