body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; /* Se aplica la fuente Montserrat en toda la página */
    background-image: url('../images/fondo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #00000F;
	color: #fff;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 850px;
}

header {
    background-color: transparent;
    color: #fff;
    padding: 20px 0;
    text-align: left;
    position: relative;
}

header img {
    max-width: 90%;
}

/* Estilos para contenido de inicio */
.inicio{
	text-align: center;
}

.inicio h1{
	font-size: 18px;
	display: none;
}

.inicio h2{
	font-size: 40px;
	background: linear-gradient(to right, #fff, #008ad9, #6560E5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.inicio h3{
	font-size: 18px;
}

.productos {
    display: table;
    width: 100%;
	border-spacing: 0; /* Elimina el espacio entre las celdas */
    border-collapse: collapse; /* Combina los bordes de las celdas */
}

.productos .divrow {
    display: table-row;
}

.productos .divcell {
    display: table-cell;
    text-align: center;
	padding-bottom: 5px;
	position: relative; /* Agregado para posicionar el texto encima de la imagen */
}

.productos .divcell img {
    max-width: 98%;
    height: auto;
    cursor: pointer; /* Cambia el cursor al pasar sobre las imágenes */
}

.producto-texto {
    display: none;
    position: absolute;
    top: 50%; /* Modificado para centrar verticalmente el texto */
    left: 50%; /* Modificado para centrar horizontalmente el texto */
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    color: #fff; /* Color del texto */
	width: 85%;
	text-align: justify;
}

/* Estilos del formulario */
.contacto{
	margin-top: 50px;
}

.contacto h1{
	font-size: 18px;
	text-align: center;
	margin-bottom: 30px;
}

form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
	font-size: 14px;
	color: #8b949d;
	max-width: 94%;
	margin: auto;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

a {
    color: #fff; /* Color de fuente para enlaces normales */
}

a:hover {
    color: #008ad9; /* Color de fuente al pasar el mouse por encima del enlace */
}

a:visited {
    color: #fff; /* Color de fuente para enlaces visitados */
}

.telefono-extension{
	width: 100%;
}

/* Alineación horizontal para teléfono y extensión */
.telefono-extension .telefono,
.telefono-extension .extension{
    display: inline-block;
	width: 49%;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 99999; /* Ajuste el z-index según sea necesario */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
	color: #008ad9;
}

/* Estilos para el botón de cerrar */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos para el indicador de carga */
#loading {
    display: none;
    position: fixed;
    z-index: 99999; /* Ajuste el z-index según sea necesario */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.loading-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
	color: #008ad9;
}

/* Estilos para el footer */
footer {
    background-color: rgba(0, 0, 0, 0.3); /* Fondo con transparencia */
    color: #fff;
    padding: 20px 0;
    text-align: center;
	font-size: 12px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #fff; /* Color de los enlaces en el footer */
    text-decoration: none;
    margin: 0 10px; /* Espaciado entre los enlaces */
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

/* Estilos para las redes sociales en el footer */
.redes-sociales a {
    color: #fff;
}

/* Estilos para el checkbox de la política de confidencialidad */
.politica-check {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px; /* Espacio entre el texto y el checkbox */
	margin-bottom: 15px;
}

.politica-check input[type="checkbox"] {
    margin-right: 5px; /* Espacio entre el checkbox y el texto */
	padding: 5px;
}

.politica-check label {
    display: inline;
	font-weight: bold;
}

.politica_privacidad{
	color: #ffffff;
	text-align: justify;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d366; /* verde WhatsApp */
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.floating-buttons a.vcf {
  background-color: #0b5394; /* azul para contacto */
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.banner-bedata {
    background: linear-gradient(to right, #008ad9, #00c3ff);
    color: #fff;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-bedata {
    height: 160px;
    width: auto;
}

.texto-bedata {
    flex: 1;
    min-width: 200px;
}

.eslogan-bedata {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.btn-bedata {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-bedata:hover {
    background-color: #fff;
    color: #000;
}


@media (max-width: 767px) {
	.productos .divcell {
		display: block;
	}
	
	 .banner-bedata {
        flex-direction: column;
        text-align: center;
    }

    .btn-bedata {
        margin-top: 10px;
    }
}