ASFSAFSAFSAF
Entradas
Bienvenido a un mundo de posibilidades ilimitadas, donde el viaje es tan emocionante como el destino, y donde cada momento es una oportunidad para dejar huella.
iNICIO DE LA ENTRADA DE PRUEBA SEGUIR MÁS O ALGO ASÍ NO SÉ ES DE PROBAR PORQUE TIENE QUE SALIR BIEN Y MOSTRARSE TODO
Fletes Marítimos
CHI / USA / ITA / ESP / Resto del Mundo
Transportamos tu carga a través de las principales rutas marítimas, optimizando costos y tiempos.
Saber más
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
}
.popup-content {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px gray;
text-align: center;
}
.close {
cursor: pointer;
font-size: 20px;
float: right;
}
.wp-block-button__link {
border-radius: 25px;
padding: 10px 20px;
background: #0073aa;
color: white;
text-decoration: none;
}
document.querySelectorAll(«.saber-mas»).forEach(button => {
button.addEventListener(«click», function() {
document.getElementById(this.getAttribute(«data-target»)).style.display = «flex»;
});
});
document.querySelectorAll(«.close»).forEach(closeBtn => {
closeBtn.addEventListener(«click», function() {
this.closest(«.popup»).style.display = «none»;
});
});
Sección con Popup
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
text-align: center;
}
.btn {
background-color: #0073e6;
color: white;
padding: 10px 20px;
border-radius: 25px;
border: none;
cursor: pointer;
transition: background 0.3s;
}
.btn:hover {
background-color: #005bb5;
}
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 20px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
width: 50%;
max-width: 500px;
}
.popup img {
width: 100%;
border-radius: 10px;
}
.popup h2 {
margin-top: 0;
}
.close-btn {
background-color: red;
color: white;
border: none;
padding: 10px;
cursor: pointer;
border-radius: 5px;
margin-top: 10px;
}
Sobre Nosotros
Descubre más sobre nuestra misión y valores.
Saber más
function openPopup() {
document.getElementById(«popup»).style.display = «block»;
}
function closePopup() {
document.getElementById(«popup»).style.display = «none»;
}
Saber más
.btn-saber-mas {
display: inline-block;
padding: 10px 20px;
border-radius: 30px;
background-color: #0073e6;
color: white;
text-decoration: none;
font-weight: bold;
}
.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
display: none;
justify-content: center;
align-items: center;
}
.popup:target {
display: flex;
}
.popup-content {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 300px;
position: relative;
}
.close {
position: absolute;
top: 10px;
right: 15px;
font-size: 20px;
text-decoration: none;
color: black;
}
.btn-accion {
margin-top: 10px;
padding: 8px 15px;
background: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.wp-block-button__link {
display: inline-block;
padding: 10px 20px;
border-radius: 30px;
background-color: #0073e6;
color: white;
text-decoration: none;
font-weight: bold;
}
.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
display: none;
justify-content: center;
align-items: center;
}
.popup:target {
display: flex;
}
.popup-content {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 300px;
position: relative;
}
.close {
position: absolute;
top: 10px;
right: 15px;
font-size: 20px;
text-decoration: none;
color: black;
}
.btn-accion {
margin-top: 10px;
padding: 8px 15px;
background: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
Saber más
.wp-block-button__link {
display: inline-block;
padding: 10px 20px;
border-radius: 30px;
background-color: #0073e6;
color: white;
text-decoration: none;
font-weight: bold;
border: none;
cursor: pointer;
}
.popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
display: none;
justify-content: center;
align-items: center;
}
.popup-content {
background: white;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 300px;
position: relative;
}
.close {
position: absolute;
top: 10px;
right: 15px;
font-size: 20px;
cursor: pointer;
}
.btn-accion {
margin-top: 10px;
padding: 8px 15px;
background: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
document.addEventListener(«DOMContentLoaded», function() {
var popup = document.getElementById(«popup»);
var openPopup = document.getElementById(«openPopup»);
var closePopup = document.getElementById(«closePopup»);
openPopup.addEventListener(«click», function() {
popup.style.display = «flex»;
});
closePopup.addEventListener(«click», function() {
popup.style.display = «none»;
});
window.addEventListener(«click», function(event) {
if (event.target === popup) {
popup.style.display = «none»;
}
});
});