@font-face {
    font-family: 'blackmango';
    src: url(/Fuentes/black-mango-regular.ttf) format("truetype");
}

body {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    background-color:   #3acdc7;
}


.div-nav-princ {
    margin-top: -50px;
    background-color: #fe96ce;
    width: 100%;
    height: 50px;
    display: flex;
    position: fixed;
    justify-content: space-around;
    z-index: 1;
}

.div-nav-items {
    width: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.vinculo {
    color: #010831;
    text-decoration: none;
    font-family: 'blackmango';
}

.img-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 50px;
}


.texto-banner {
  position: absolute;
  margin-top: -45%;
  padding-left: 30%;
  font-family: 'blackmango';
  font-size: xx-large;
  color: #6d4233;
  
}

.div-banner1 {
    margin-top: 50px;
    position: relative;
}

.img-banner1 {
    width: 100%;
    max-height: 100%;
}

.section-servicios {
    display: flex;
    justify-content: center;
    align-items: center;
}

.h2-servicios {
    text-align: center;
    font-family: 'blackmango';
    font-size: xx-large;
    color: #f3dfd8;
}

.div-img-servicios {
    position: relative;
    width: 33%;
}

.img-servicios {
    width: 50%;
    margin-left: 25%;
    border-radius: 50%;
}

.text-servicios {
    text-align: center;
    font-family: 'blackmango';
    font-size: xx-large;
    color: #f3dfd8;
}


.hr-linea {
    height: 1px;
    width: 80%;
    background-color: #f3dfd8;
}


/* ===== Footer general ===== */
footer {
  background-color: #fff8f6;
  padding: 40px 20px 20px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== Columnas ===== */
.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: #d47a7a;
  margin-bottom: 15px;
  font-size: 18px;
}

/* ===== Redes sociales ===== */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin-bottom: 8px;
}

.social-links a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #d47a7a;
}

/* ===== Logo ===== */
.logo-column {
  padding-right: 10%;
  padding-top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

/* ===== Formulario ===== */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.footer-form button {
  background-color: #d47a7a;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.footer-form button:hover {
  background-color: #c06666;
}

/* ===== Línea y copy ===== */
.footer-line {
  margin: 30px 0 15px;
  border: none;
  border-top: 1px solid #e6d4d4;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-form {
    align-items: center;
  }

  .footer-form input {
    width: 80%;
    max-width: 300px;
  }

  .footer-form button {
    width: 80%;
    max-width: 150px;
  }
  .vinculo {
  font-size: xx-small;
}
.texto-banner {
  font-size: small;
}
.h2-servicios {
  font-size: small;
}
.text-servicios {
  font-size: small;
}

}

.copy {
    text-align: center;
    font-size: large;
}



