body{
	font-family: montserrat;
}

.contacto-section{
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    background: transparent;
}

.titulo{
    font-size: 48px;
    font-weight: 800;
    color: #2f4fa2;
    margin-bottom: -60px;
    padding: 60px 20px;
	 margin-left: -520px;
}

.section.group {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contacto form {
  max-width: 600px;
  margin: 0 auto; /* centra sin romper layout */
}

form {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 0px solid #ccc;
    border-radius: 8px;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

.col.span_2_of_2 {
  width: 100%;
  float: left;
  padding: 20px;
  box-sizing: none;
}

.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 20px;
  background: transparent;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contacto form input,
.contacto form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 0px solid #ccc;
    border-radius: 24px;
    box-sizing: border-box;
    background-color: #fff3cd;
}

input:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.campo{
   display:flex;
   align-items:center;
   justify-content:flex-start; /* todo a la izquierda */
   gap:5px;
}

.campo label{
   font-weight:bold;
	width:280px;
	align-items:left;
   white-space:nowrap; /* evita salto de línea */
}

.campo input{
   width:480px; /* tamaño fijo (ajústalo a tu gusto) */
}

button {
    background-color: #F39A2B;
    color: #fff;
    border: none;
    font-size: 16px;
	 width: 115px;
	 margin-left: 445px;
    cursor: pointer;
    transition: background-color 0	margin-top: 10	padding: 15px 5	background-color: #007bff; 
	 color: wh	border-radius: 45px;
	 border-radius: 24px;
}

button:hover {
    background-color: #28a745;
}

.optional {
    font-weight: normal;
    color: #888;
}

#to {
  background-color: #fff3cd;
  border: 0 solid; /*#ff9800*/
  border-radius: 24px;
  padding: 10px;
  outline: none;
}

#to:focus {
  background-color: #e3f2fd;
  border-color: #ff5722;
}

.section.mapa_implan {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  align-items:center;
}

.mapa_implan h3{
	background-color: #ffffff;
}

.mapa_implan iframe{
   display:block;
   margin:0 auto;
}

.banner-contacto {
  position: relative;
  width: 100vw;
  height: 750px; /* 👈 ajusta altura */
  margin-left: calc(-48.5vw + 50%);
  overflow: hidden;
  margin-top: 180px;
}

.banner-contacto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-contacto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.notem {
  position: absolute;
  bottom: 290px;
  left: 240px;
  z-index: 2;

  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 20px 25px;
  border-radius: 65px;
  max-width: 600px;

  color: #0d47a1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.notem dt {
  font-weight: bold;
  margin-bottom: 10px;
}

.notem dd {
  margin: 5px 0;
}

.notem a {
  color: #0d47a1;
  text-decoration: none;
}

.notem a:hover {
  text-decoration: underline;
}

.notem h2{
	color: #1565c0;
	font-weight: bold;
	font-family: montserrat;
	font-size: 38px;
}

#mensaje-exito {
   opacity: 0;
   transition: opacity 0.5s ease;
}

#mensaje-exito.mostrar {
   opacity: 1;
}

@media (max-width: 768px) {
  .banner-contacto {
    height: 350px;
  }

  .notem {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}

@media (max-width: 600px) {
  
   .contacto-section h1{
	   margin-left:25px;  
   }
   
	.banner-contacto {
      height: 350px;
   }

  .notem {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}