Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added +15
Empty file.
Empty file added +18
Empty file.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense para saber los atributos posibles.
// Mantenga el puntero para ver las descripciones de los existentes atributos.
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Iniciar Chrome para localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
Binary file added App/assets/img1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added App/assets/img2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added App/assets/img3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added App/assets/maquina.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added App/assets/maquina2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions App/scripts/form.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
document.getElementById("formulario_contacto").addEventListener("submit", function(e){
e.preventDefault();

// Simulación envío
alert("Formulario enviado (conecta backend después)");
});
76 changes: 76 additions & 0 deletions App/styles/beneficios.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
.beneficios {
background: #f4f4f4;
padding: 80px 60px;
}

.beneficios-contenido {
display: flex;
justify-content: space-between;
align-items: center;
gap: 60px;
}

/* TEXTO */
.beneficios-texto {
max-width: 500px;
}

.beneficios-texto h2 {
font-size: 36px;
font-weight: 800;
margin-bottom: 40px;
}

.bloque {
margin-bottom: 30px;
}

.bloque h3 {
font-size: 16px;
font-weight: 700;
margin-bottom: 10px;
}

.bloque p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
}

/* BOTÓN IMPORTANTE */
.btn-beneficios {
background: #20c58f;
color: #fff;
border: none;
padding: 12px 28px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.btn-beneficios:hover {
background: #18a877;
}

.link {
font-size: 13px;
color: #000;
cursor: pointer;
}

/* IMAGEN */
.beneficios-imagen img {
width: 420px;
height: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
.beneficios-contenido {
flex-direction: column;
}

.beneficios-imagen img {
width: 100%;
}
}
128 changes: 128 additions & 0 deletions App/styles/form.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body {
background: #f4f4f4;
display: flex;
flex-direction: column;
min-height: 100vh;
}

.contenedor {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 60px 20px;
}

.formulario {
max-width: 500px;
width: 100%;
text-align: center;
}

.formulario h1 {
font-size: 40px;
font-weight: 800;
color: #000;
line-height: 1.2;
margin-bottom: 20px;
}

.formulario p {
font-size: 14px;
color: #666;
margin-bottom: 30px;
}

.campo {
text-align: left;
margin-bottom: 20px;
}

.campo label {
font-size: 13px;
display: block;
margin-bottom: 6px;
color: #000;
}

.campo input,
.campo textarea {
width: 100%;
padding: 10px;
border: 1px solid #999;
border-radius: 4px;
font-size: 14px;
outline: none;
}

.campo textarea {
resize: none;
height: 80px;
}

.boton {
display: inline-block;
background: #3c7a57;
color: #fff;
border: none;
padding: 10px 25px;
border-radius: 20px;
cursor: pointer;
font-size: 14px;
transition: 0.2s;
}

.boton:hover {
background: #2e5f44;
}

/* Footer */
.footer {
background: #000;
color: #fff;
text-align: center;
padding: 30px 20px;
}

.footer nav {
margin-bottom: 15px;
}

.footer nav a {
color: #ccc;
margin: 0 10px;
text-decoration: none;
font-size: 13px;
}

.footer nav a:hover {
color: #fff;
}

.redes {
margin-bottom: 10px;
}

.redes span {
margin: 0 5px;
font-size: 14px;
cursor: pointer;
}

.footer p {
font-size: 12px;
color: #aaa;
}

@media (max-width: 500px) {
.formulario h1 {
font-size: 30px;
}
}
98 changes: 98 additions & 0 deletions App/styles/hero.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/* HEADER */
.header {
position: absolute;
top: 0;
width: 100%;
padding: 20px 60px;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
z-index: 10;
}

.logo {
font-weight: 600;
}

.nav a {
margin-left: 25px;
text-decoration: none;
color: #eaeaea;
font-size: 14px;
}

.nav a:hover {
color: #fff;
}

/* HERO */
.hero {
background: #3f7a4f;
min-height: 100vh;
display: flex;
align-items: center;
padding: 80px 60px;
}

.hero-contenido {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}

/* IMAGEN */
.hero-imagen img {
width: 420px;
border-radius: 200px 200px 0 0;
}

/* TEXTO */
.hero-texto {
max-width: 500px;
color: #fff;
}

.hero-texto h1 {
font-size: 52px;
font-weight: 800;
line-height: 1.1;
margin-bottom: 20px;
}

.hero-texto p {
font-size: 14px;
color: #dcdcdc;
margin-bottom: 25px;
}

.btn-hero {
background: #e6e6e6;
color: #000;
border: none;
padding: 10px 25px;
border-radius: 20px;
cursor: pointer;
}

.btn-hero:hover {
background: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
.hero-contenido {
flex-direction: column;
text-align: center;
}

.hero-imagen img {
width: 300px;
margin-bottom: 30px;
}

.header {
padding: 20px;
}
}
55 changes: 55 additions & 0 deletions App/styles/intro.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
.intro {
background: #f4f4f4;
padding: 80px 60px;
}

/* TEXTO SUPERIOR */
.intro-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 50px;
gap: 40px;
}

.intro-top h2 {
font-size: 38px;
font-weight: 800;
color: #000;
line-height: 1.2;
max-width: 500px;
}

.intro-top p {
font-size: 14px;
color: #666;
max-width: 400px;
}

/* GRID IMÁGENES */
.intro-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.intro-grid img {
width: 100%;
height: 280px;
object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
.intro-top {
flex-direction: column;
}

.intro-grid {
grid-template-columns: 1fr;
}

.intro-grid img {
height: auto;
}
}
Loading