body{
	margin: 50px;
  background: linear-gradient(to right, #3b82f6, #ffffff, #000000);
	font-family: arial;
}

    

       .navbar {
            background-color: #333;
            display: flex;
            justify-content: center; /* Centrar horizontalmente los enlaces */
            padding: 10px 20px;
            border-radius: 60%;
        }

        /* Estilos para los enlaces */
        .navbar a {
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            margin-right: 15px;
            font-family: Arial, sans-serif;
            font-size: 16px;
            border-radius: 4px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Remover margin-right en el último enlace para evitar espacio extra */
        .navbar a:last-child {
            margin-right: 0;
        }

        /* Cambio al pasar el cursor */
        .navbar a:hover {
            background-color: #ddd;
            color: #333;
            cursor: pointer;
        }

/* Estilo para la sección de descripción */
        .descripcion-casa {
            background-color: #f9f9f9;
            max-width: 700px;
            margin: 30px auto;
            padding: 25px 30px;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
        }

        .descripcion-casa h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 28px;
            letter-spacing: 1.2px;
        }

        .descripcion-casa p {
            margin-bottom: 15px;
            font-size: 16px;
        }

        .descripcion-casa strong {
            color: #2c3e50;
            font-weight: 600;
        }

     
        #map {
            width: 100%;
            max-width: 700px;
            height: 400px;
            margin: 30px auto;
            border: 1px solid #ccc;
            border-radius: 8px;
        }

.galeria-interactiva {
    max-width: 700px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    user-select: none;
  }

  .galeria-contenedor {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    flex: 1;
    padding: 10px 0;
  }

  .galeria-foto {
    flex: 0 0 auto;
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
    user-select: none;
  }

  /* Zoom al pasar el cursor */
  .galeria-foto:hover,
  .galeria-foto:focus {
    transform: scale(1.1);
    outline: 2px solid #888;
  }

  /* Botones de navegación */
  .btn-nav {
    background-color: #333;
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-nav:hover,
  .btn-nav:focus {
    background-color: #555;
    outline: none;
  }

  .btn-nav.left {
    margin-right: 10px;
  }

  .btn-nav.right {
    margin-left: 10px;
  }

  /* Modal para imagen ampliada */
  .modal-galeria {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .modal-galeria.active {
    display: flex;
  }

  .modal-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    pointer-events: none; /* evita interacciones */
    user-select: none;
  }

  /* Botón cerrar modal */
  .modal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
  }

  .modal-close:hover,
  .modal-close:focus {
    color: #ddd;
    outline: none;
  }

  /* Deshabilitar menú contextual en imágenes */
  .galeria-foto, .modal-img {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
  }

  .galeria-foto {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .galeria-foto, .modal-img {
    pointer-events: auto;
  }

  /* Ocultar scrollbar pero permitir scroll */
  .galeria-contenedor {
    scrollbar-width: none; /* Firefox */
  }
  .galeria-contenedor::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  /* Responsive */
  @media (max-width: 500px) {
    .galeria-foto {
      width: 100px;
      height: 70px;
    }
    .btn-nav {
      font-size: 20px;
      padding: 7px 10px;
    }
  }


.imagen{
	width: 25%;
	height: 150px;
	border-radius: 25%;
	margin-left: 15%;
	
}



.contact-form-container {
    max-width: 600px;
    background: white;
    margin: 30px auto;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    
}
h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;

}
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}
input[type="text"], input[type="email"], textarea, input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: vertical;
    font-size: 16px;
}
textarea {
    min-height: 100px;
}
input[type="submit"] {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
    background-color: #46627f;
}
.extra-info {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-size: 16px;
    color: #2c3e50;
}
.extra-info p {
    margin: 8px 0;
}
.whatsapp-contact {
    font-weight: bold;
    color: #25D366;
}
  /* Responsive */
@media (max-width: 640px) {
.contact-form-container, .extra-info {
      margin: 15px;
      padding: 15px;
    }
}

.Forma {
  background: #fff;
  border-radius: 20px;           /* Bordes suaves */
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* Sombra suave */
  margin: 60px auto;             /* Centra el cuadro */
  width: 400px;                  /* Cuadrado: puedes ajustar el tamaño */
  min-height: 400px;             /* Alto mínimo para cuadrar */
  padding: 30px 20px;
  display: flex;
  flex-direction: column;        /* Apila los hijos verticalmente */
  align-items: center;           /* Centra el contenido horizontalmente */
  box-sizing: border-box;
}

.Forma label,
.Forma input,
.Forma textarea {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.Forma input, 
.Forma textarea {
  border-radius: 8px;   /* Bordes suaves para controles */
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 1em;
  box-sizing: border-box;
}

.contact-form-container h2 {
  margin-bottom: 16px;
  text-align: center;
}

.extra-info {
  width: 100%;
  margin-top: 16px;
  font-size: 0.95em;
  text-align: center;
}