/* src/styles.css */
:root {
  --bs-body-bg: #111111;
  --bs-body-color: #ffffff;
  --hero-overlay: rgba(0, 0, 0, 0.6);
  --hero-content-bg: rgba(255, 254, 254, 0.247);
  --hero-border: rgba(255, 255, 255, 0.1);
  --hero-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body {
  scroll-behavior: smooth;
  padding-top: 0;
  color: var(--bs-body-color);
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}
p {
  font-size: 20px;
}
#mainNavbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1030;
  transition: all 0.3s ease;
}
.navbar-brand img {
  height: 20px;
}
.navbar-dark .navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #006eff !important;
}
.navbar-dark .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: #006eff;
}
.navbar-dark .nav-link i {
  margin-right: 6px;
  color: #666;
}
.navbar-dark .nav-link:hover i,
.navbar-dark .nav-link.active i {
  color: #006eff;
}
.navbar-dark .nav-link.contact-btn,
.navbar-dark .nav-link.contact-btn.active {
  background-color: #006eff;
  color: white !important;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.navbar-dark .nav-link.contact-btn:hover {
  background-color: #005bcc;
  color: white !important;
  transform: translateY(-2px);
}
.navbar-dark .nav-link.contact-btn i {
  color: white !important;
  margin-right: 6px;
}
.navbar-dark .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 1) !important;
}
.navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0.5rem 0;
}
.nav-item {
  white-space: nowrap;
  margin: 0 4px 0.25rem;
  min-width: fit-content;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.8rem !important;
}
.nav-link i {
  margin-right: 6px;
  font-size: 0.9rem;
}
.contact-btn {
  white-space: nowrap;
  padding: 0.5rem 1rem !important;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }
  .nav-item {
    margin: 2px 0;
    width: 100%;
  }
  .nav-link {
    padding: 0.5rem 1rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-brand {
    margin-right: 0.5rem;
  }
  .nav-link {
    padding: 0.5rem 0.6rem !important;
    font-size: 0.9rem;
  }
  .nav-link i {
    margin-right: 4px;
  }
}
body {
  padding-top: 0;
}
.hero-header {
  background-image: url("./media/fondo-tierra-2UXF55RV.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  background: var(--hero-content-bg);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  color: white;
  box-shadow: var(--hero-shadow);
  border: 1px solid var(--hero-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 30px;
}
.hero-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.hero-header h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}
.hero-header .lead {
  animation: fadeInUp 1s ease 0.3s both;
}
.hero-header .lead {
  font-size: 25px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .hero-content {
    padding: 2.5rem !important;
  }
}
@media (max-width: 768px) {
  .hero-header {
    background-attachment: scroll;
    height: 90vh;
  }
  .hero-header h1 {
    font-size: 2.5rem;
  }
  .hero-header .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .hero-content {
    padding: 1.5rem !important;
    margin: 0 1rem;
  }
}
@media (max-width: 576px) {
  .hero-header h1 {
    font-size: 2rem;
  }
}
#quienes-somos {
  background-color: #ffffff;
  color: #333333;
  padding: 5rem 0;
  position: relative;
}
#quienes-somos .container {
  position: relative;
  z-index: 1;
}
#quienes-somos h2 {
  font-size: 65px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}
#quienes-somos .lead {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 1.5rem;
  text-align: justify;
  white-space: normal;
}
.about-img-container {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 0;
}
.about-img-container:hover {
  transform: translateY(-5px);
}
.stats-container {
  border-top: 1px solid #eeeeee;
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}
.stat-item {
  text-align: center;
  padding: 0 1rem;
}
.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006eff;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: #666666;
  font-size: 0.95rem;
  font-weight: 400;
}
@media (max-width: 1200px) {
  #quienes-somos h2 {
    font-size: 2.7rem;
  }
}
@media (max-width: 992px) {
  #quienes-somos {
    text-align: center;
  }
  #quienes-somos .lead {
    text-align: center;
  }
  .highlight-dark::after {
    display: none;
  }
  .about-img-container {
    margin-top: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    width: 45%;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  #quienes-somos h2 {
    font-size: 2.2rem;
  }
  #quienes-somos .lead {
    font-size: 1.1rem;
  }
  .stat-item h3 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  #quienes-somos {
    padding: 3rem 0;
  }
  .stat-item {
    width: 100%;
  }
  .about-img-container {
    max-width: 100%;
  }
}
#productos {
  position: relative;
  color: #111111;
  overflow: hidden;
}
#productos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
#productos::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: -1;
}
#productos .container {
  position: relative;
  z-index: 1;
}
.product-card {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333333;
}
.product-card:hover {
  background-color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
#productos h2,
#productos .lead {
  color: #303030;
}
#productos h2 {
  font-size: 65px;
}
#productos .lead {
  font-size: 25px;
}
.product-icon {
  color: #006eff;
}
.ia-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./media/fondo-tierra-2UXF55RV.jpg") no-repeat center center;
  background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}
.ia-logos-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ia-logo-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ia-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.ia-logo-card img {
  max-height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}
.ia-text-content {
  text-align: justify;
}
.ia-lead {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.ia-paragraph {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .ia-lead {
    font-size: 1.3rem;
  }
  .ia-paragraph {
    font-size: 1.1rem;
  }
}
@media (max-width: 992px) {
  .ia-logos-container {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ia-logo-card {
    width: 45%;
  }
}
@media (max-width: 576px) {
  .ia-logo-card {
    width: 100%;
  }
}
#proceso {
  background-color: #f8f9fa;
  padding: 5rem 0;
}
#proceso h2 {
  color: rgb(63, 63, 63);
  font-size: 65px;
}
#proceso p.lead {
  font-size: 25px;
}
.process-step {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #006eff;
  position: relative;
  overflow: hidden;
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 110, 255, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}
.process-step p {
  text-align: justify;
}
.process-step h3 {
  color: #006eff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 10px;
}
.process-step h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #006eff;
}
.process-step p {
  color: #555;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .process-connector {
    position: relative;
  }
  .process-connector::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background:
      linear-gradient(
        to right,
        #006eff,
        rgba(0, 110, 255, 0.3));
    z-index: 1;
  }
  .process-step {
    position: relative;
    z-index: 2;
  }
}
.garantia-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./media/fondo-tierra-2UXF55RV.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}
.garantia-content {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.garantia-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.garantia-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #006eff;
}
.garantia-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: justify;
}
.garantia-features {
  margin-top: 2rem;
}
.garantia-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.garantia-feature:hover {
  transform: translateX(10px);
}
.garantia-icon {
  font-size: 1.8rem;
  color: #006eff;
  margin-right: 1.5rem;
  min-width: 40px;
}
.garantia-feature-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.garantia-feature-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.garantia-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.garantia-img-container {
  width: 100%;
  height: 400px;
  background: url("./media/garantia-sello-transparente-N77ZOD2T.png") no-repeat center center;
  background-size: contain;
  position: relative;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 992px) {
  .garantia-title::after {
    left: 0;
    transform: none;
  }
  .garantia-img-container {
    height: 300px;
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .garantia-title {
    font-size: 2rem;
  }
  .garantia-text {
    font-size: 1.1rem;
  }
  .garantia-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
}
@media (max-width: 576px) {
  .garantia-content {
    padding: 1.5rem;
  }
  .garantia-feature {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .garantia-feature-text h3,
  .garantia-feature-text p {
    text-align: left;
  }
  .garantia-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
#tecnologias.dark-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./media/fondo-tierra-2UXF55RV.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 5rem 0;
}
#tecnologias.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#tecnologias .container {
  position: relative;
  z-index: 1;
}
.tecnologias-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}
.tecnologias-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00c2ff;
  margin-bottom: 1rem;
}
.tecnologias-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.tecnologias-separator {
  height: 4px;
  width: 100px;
  background:
    linear-gradient(
      90deg,
      #00c2ff,
      #00a8ff);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.tecnologias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.tecnologia-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tecnologia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 170, 255, 0.2);
  border-color: #00a8ff;
}
.tecnologia-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #00c2ff;
}
.tecnologia-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
}
.tecnologia-card.net .tecnologia-icon {
  color: #512bd4;
}
.tecnologia-card.maui .tecnologia-icon {
  color: #3c8dbc;
}
.tecnologia-card.angular .tecnologia-icon {
  color: #dd0031;
}
.tecnologia-card.sql .tecnologia-icon {
  color: #0078d4;
}
.tecnologia-card.android .tecnologia-icon {
  color: #3ddc84;
}
.tecnologia-card.apple .tecnologia-icon {
  color: #c1c1c1;
}
.tecnologia-card.ai .tecnologia-icon {
  color: #ff9900;
}
.tecnologia-card.otras .tecnologia-icon {
  color: #d4d4d4;
}
@media (max-width: 768px) {
  .tecnologias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tecnologias-title {
    font-size: 2rem;
  }
  .tecnologias-subtitle {
    font-size: 1.1rem;
  }
}
#proyectos.light-section {
  background-color: #ffffff;
  padding: 5rem 0;
}
#proyectos .proyectos-title {
  font-size: 2.5rem;
  color: #222;
}
#proyectos .proyectos-slide-title {
  font-size: 1.75rem;
  color: #333;
}
#proyectos .proyectos-slide-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
}
#proyectos .proyectos-slide-text {
  font-size: 1rem;
  color: #495057;
}
#proyectos .proyectos-slide-subtext {
  font-size: 1rem;
  color: #b85b36;
}
.glide__slide {
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  color: #212529;
  padding: 1.5rem;
  margin: 0 10px;
  border-radius: 0.5rem;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.glide__slide:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.25rem);
}
.glide__slide:first-child {
  margin-left: 0;
}
.glide__slide:last-child {
  margin-right: 0;
}
.box-slide-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.box-slide-controls a.btn-slider {
  font-family: sans-serif;
  font-size: 1rem;
  color: #006eff;
  padding: 0.625rem 1rem;
  margin: 0 0.3125rem;
  border-radius: 0.3125rem;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #006eff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.box-slide-controls a.btn-slider:hover {
  background-color: #eef2ff;
  color: #0056b3;
}
.box-slide-controls a.btn-slider.glide__bullet--active {
  background-color: #006eff;
  color: #fff;
  border-color: #006eff;
}
.line-grey {
  height: 2px;
  width: 50%;
  background-color: #dee2e6;
  margin: 20px auto;
}
.contacto-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./media/fondo-tierra-2UXF55RV.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.contacto-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.contacto-container {
  position: relative;
  z-index: 1;
}
.contacto-info {
  color: white;
}
.contacto-form-container {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contacto-card {
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  padding: 0;
  transition: none;
}
.contacto-card:hover {
  box-shadow: none;
}
.contacto-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
  text-align: center;
  margin-bottom: 1rem;
}
.contacto-subtitle {
  font-size: 1.1rem;
  color: #e6e6e6;
  text-align: justify;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.contacto-input,
.contacto-textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid #007bff !important;
  color: #495057 !important;
  padding: 0.5rem 0 !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 0;
}
.contacto-input:focus,
.contacto-textarea:focus {
  border-bottom-color: #00a8ff !important;
  box-shadow: none !important;
  outline: none !important;
  color: #495057 !important;
}
.contacto-input::placeholder,
.contacto-textarea::placeholder {
  color: #6c757d !important;
}
.contacto-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.25rem;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  margin-top: 1rem;
}
.contacto-btn:hover {
  background: #0056b3;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
  .contacto-title {
    font-size: 2rem;
  }
  .contacto-subtitle {
    font-size: 1.1rem;
  }
  .contacto-card {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .contacto-section {
    padding: 3rem 0;
  }
  .contacto-title {
    font-size: 1.8rem;
  }
}
.alternative-contacts {
  border-top: none;
  padding-top: 1rem;
}
.contact-option {
  padding: 0.25rem 0;
  border-radius: 0;
  transition: none;
}
.contact-option:hover {
  background: none;
}
@media (max-width: 576px) {
  .contact-option {
    width: 100%;
    justify-content: center;
  }
  .contact-option > div {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}
.btn-blanco {
  background-color: white;
  color: #212529 !important;
  border: 1px solid white;
}
.btn-blanco:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #212529 !important;
  border: 1px solid white;
}
.btn-outline-blanco {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}
.btn-outline-blanco:hover {
  background-color: white;
  color: #212529 !important;
}
footer.bg-dark3 {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #333 !important;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-text {
  color: #333 !important;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.footer-text a,
.whatsapp-link,
.email-link {
  color: #333 !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.footer-text a:hover,
.whatsapp-link:hover,
.email-link:hover {
  color: #006eff !important;
}
.whatsapp-link,
.email-link {
  display: inline-flex;
  align-items: center;
}
.whatsapp-icon,
.email-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.whatsapp-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884'/%3E%3C/svg%3E");
}
.email-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.whatsapp-link:hover .whatsapp-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23006eff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884'/%3E%3C/svg%3E");
}
.email-link:hover .email-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23006eff' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
@media (max-width: 768px) {
  footer.bg-dark3 {
    text-align: center;
    padding: 1.5rem 0;
  }
  .footer-text,
  .footer-text a,
  .whatsapp-link,
  .email-link {
    font-size: 0.85rem;
    justify-content: center;
  }
  .whatsapp-icon,
  .email-icon {
    width: 18px;
    height: 18px;
  }
}
.gracias-hero {
  background-image: url("./media/fondo-tierra-2UXF55RV.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}
.gracias-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content .lead {
  font-size: 1.5rem;
  line-height: 1.6;
}
html::-webkit-scrollbar {
  width: 12px;
}
html::-webkit-scrollbar-track {
  background: #ffffff;
}
html::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 20px;
  border: 3px solid #ffffff;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: #555555;
}
html {
  scrollbar-width: auto;
  scrollbar-color: #000000 #ffffff;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-R4HRNOEY.css.map */
