@charset "utf-8";
/* CSS Document */

/* Estilos generales */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
	font-size: 140%;
	color: #333;
	background-image: url("img/fondo4.png");
}

/* Encabezado */
header {
	
  			
            background-color: #f4f4f4;
			background-color: transparent;
            color: white;
            padding: 5px 0;
            text-align: right;
            /*font-size: 2em;*/
 			/*background-repeat: no-repeat;*/
  			background-size: cover;
			position: sticky;   
    top: 0; 
        }

nav ul {
    list-style: none;
    padding: 0;
	
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    /*color: #fff;
    text-decoration: none;*/
	color: black;
            padding: 10px 20px; 
            text-decoration: none;
            display: inline-block;
            background-color: #FFFFFF; 
            margin: 0 10px;
}

nav ul li a:hover {
    text-decoration: underline;
}
nav a:hover {
            background-color: #EDEDED; 
        }


/* Secciones */
section {
    padding: 60px 20px;
    text-align: center;
	background-image: url("img/fondo4.png");
	max-width: 100%;	
    height: auto;
    border-radius: 5px;
}

/* Sección Hero */
.hero {
    background: url('fondopagina.png') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Estilos para la sección Enfoque */
/*.enfoque {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
	color:black
	background-image: url("img/fondo3.png");
}

.enfoque img {
	float: right;
    width: 50%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.enfoque .contenido {
    width: 50%;
    text-align: right;
	background-image: url("img/fondo3.png");
	background-position: bottom;
}

@media (max-width: 768px) {
    .enfoque {
        flex-direction: column;
        text-align: center;
    }
    .nosotros img, .nosotros .contenido {
        width: 100%;
        margin: 0;
    }
}*/

/* Estilos para la sección Nosotros */
.nosotros {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
	/*background-color: #0D0D0D;*/
	color:black
	background-image: url("img/fondo4.png");
}

.nosotros img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.nosotros .contenido {
    width: 50%;
    text-align: left;
	background-image: url("img/fondo4.png");
	background-position: bottom;
}

@media (max-width: 768px) {
    .nosotros {
        flex-direction: column;
        text-align: center;
    }
    .nosotros img, .nosotros .contenido {
        width: 100%;
        margin: 0;
    }
}

/* Sección Productos */
.productos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
	background-image: url("img/fondo4.png");
}

.producto {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 300px;
    text-align: center;
}

.producto img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Sección Contacto */
.contacto {
    background-color: #f9f9f9;
}

.formulario-contacto {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.formulario-contacto label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.formulario-contacto input,
.formulario-contacto textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulario-contacto button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.formulario-contacto button:hover {
    background: #0056b3;
}


.boton-regresar {
            display: inline-block;
            padding: 10px 20px;
            margin: 20px 0;
            font-size: 16px;
            color: #fff;
            background-color: #007BFF;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .boton-regresar:hover {
            background-color: #0056b3;
        }


/* Estilos para la barra lateral */
        .sidebar {
            height: 100%;
            width: 250px;
            position: fixed;
            top: 0;
            left: -250px;
            background-color: #111;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
            z-index: 1000;
        }
        .sidebar a {
            padding: 10px 15px;
            text-decoration: none;
            font-size: 18px;
            color: #818181;
            display: block;
            transition: 0.3s;
        }
        .sidebar a:hover {
            color: #f1f1f1;
        }
        /* Estilo para el botón que abre la barra lateral */
        .openbtn {
            font-size: 20px;
            cursor: pointer;
            background-color: #111;
            color: white;
            padding: 10px 15px;
            border: none;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
        }
        .openbtn:hover {
            background-color: #444;
        }
        /* Estilo para el contenido principal */
        #hero {
            transition: margin-left 0.5s;
            padding: 16px;
        }


/* Pie de página */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsividad */
@media (max-width: 768px)
