.header-login-signup {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 3px),
        linear-gradient(to top, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 3px),
        #192529; /* Color base personalizado */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    height: 60px;
    color: #f5f5f5;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}










.header-login-signup .header-limiter {
	max-width: 1200px;
	width: 98%;
	text-align: center;
	margin: 0 auto;
}

/* The navigation links */


.header-login-signup .header-limiter nav {
	font:16px Arial, Helvetica, sans-serif;
	line-height: 50px;
	float: left;
	margin: 0 0 0 0px;
	padding: 0;
}

.header-login-signup .header-limiter nav [class^="icon-"] {
	margin-right:4px;
	font-size: 20px;
	float: left;
    margin-top: -3px;
}

.header-login-signup .header-limiter nav a{
	color: rgba(255,255,255,1);
	font-weight: 600;
	font-size: 14px;
	display: inline-block;
	padding: 0 5px;
	opacity: 1;
	text-decoration:none;
	line-height: 1;
}

.header-login-signup .header-limiter nav a:hover {
	opacity: 0.9;
}

.header-login-signup .header-limiter nav a.selected {
	color: #608bd2;
}


/* Login/Sign up buttons */

.header-login-signup .header-limiter ul {
	font: 18px Arial, Helvetica, sans-serif;
	list-style: none;
	line-height: 20px;
	float: right;
}


.header-login-signup .header-limiter ul li {
	display: inline-block;
	margin-left: 5px;
	opacity:1;
}

.header-login-signup .header-limiter ul li [class^="icon-"]{
	display: inline-block;
	color: rgba(255,255,255,1);
	text-decoration: none;
	font-size: 25px;
	margin-top:15px;
}


.text-image-section {
  background-color: #111;
  color: #eee;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.text-image-section .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.text-image-block {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.text-image-block.reverse {
  flex-direction: row-reverse;
}

.text-image-block .text {
  flex: 1 1 400px;
  min-width: 280px;
}

.text-image-block .text h3 {
  color: #be1d2d;
  font-size: 2em;
  margin-bottom: 15px;
}

.text-image-block .text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #ccc;
}

.text-image-block .image {
  flex: 1 1 400px;
  min-width: 280px;
}

.text-image-block .image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.7);
  object-fit: cover;
  height: 280px;
  transition: transform 0.3s ease;
}

.text-image-block .image img:hover {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 900px) {
  .text-image-block {
    flex-direction: column;
  }

  .text-image-block.reverse {
    flex-direction: column;
  }

  .text-image-block .image img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .text-image-block .image img {
    height: 180px;
  }

  .text-image-block .text h3 {
    font-size: 1.5em;
  }

  .text-image-block .text p {
    font-size: 1em;
  }
}





.header-login-signup .header-limiter ul li:hover{
	opacity: 0.9;
}



/* Making the header responsive */

@media all and (max-width: 650px) {

    .header-login-signup {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

	

	.header-login-signup .header-limiter h1 {
		float: none;
		margin: -8px 0 2px;
		text-align: center;
		font-size: 24px;
		line-height: 1;
	}

.header-login-signup .header-limiter nav {
	font:16px Arial, Helvetica, sans-serif;
	line-height: 10px;
	float: none;
	margin: 0;
	padding: 0;
}

.header-login-signup .header-limiter nav a{
	color: rgba(255,255,255,1);
	font-size: 13px;
	display: inline-block;
	padding: 0 5px;
	opacity: 0.9;
	text-decoration:none;
	line-height: 1;
}



	.header-login-signup .header-limiter nav li a {
		font-size: 13px;
	}

	.header-login-signup .header-limiter ul {
		display: none;
	}

}


.modern-hero-section {
  background: url('../img/fondo.jpg') no-repeat center center/cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.modern-hero-section .overlay {
  background: rgba(0, 0, 0, 0.6); /* oscurece la imagen para mejor lectura */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.section-content {
  max-width: 800px;
  padding: 20px;
}

.section-content h2 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.section-content p {
  font-size: 1.2em;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-button {
  background-color: #be1d2d;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #a11623;
}

/* Responsive: tablet y móvil */
@media (max-width: 768px) {
  .section-content h2 {
    font-size: 2em;
  }

  .section-content p {
    font-size: 1em;
  }

  .cta-button {
    font-size: 15px;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .section-content h2 {
    font-size: 1.6em;
  }

  .section-content p {
    font-size: 0.95em;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 24px;
  }
}
