Contactar con Santheos

/* =========================================
SANTHEOS —
========================================= */
.santheos-enquiry,
.santheos-enquiry * {
box-sizing: border-box;
}
.santheos-enquiry {
–background: #191a1c;
–panel: #151719;
–field: #171a1e;
–gold: #c9a64b;
–gold-hover: #d6b65b;
–white: #f6f6f6;
–grey: #d2d2d2;
–line: rgba(255, 255, 255, 0.2);
–black: #101214;
width: 100vw;
margin-left: calc(50% – 50vw);
padding: 26px;
overflow: hidden;
color: var(–white);
background: var(–background);
font-family: Roboto, Arial, sans-serif;
}
.santheos-enquiry__inner {
display: grid;
grid-template-columns: minmax(0, 56%) minmax(0, 44%);
width: min(100%, 1700px);
min-height: 890px;
margin: 0 auto;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
}
/* PROPERTY IMAGE */
.santheos-enquiry__image {
position: relative;
min-height: 890px;
overflow: hidden;
background: #111315;
}
.santheos-enquiry__image img {
display: block;
width: 100%;
height: 100%;
min-height: 890px;
object-fit: cover;
object-position: center;
}
.santheos-enquiry__image::after {
position: absolute;
inset: 0;
content: «»;
pointer-events: none;
background:
linear-gradient(
90deg,
rgba(16, 18, 20, 0.05) 60%,
rgba(16, 18, 20, 0.24) 100%
);
}
/* FORM PANEL */
.santheos-enquiry__panel {
display: flex;
align-items: center;
background: var(–panel);
}
.santheos-enquiry__content {
width: 100%;
padding: 58px 76px;
}
.santheos-enquiry__eyebrow {
margin: 0 0 24px;
color: var(–gold);
font-size: 15px;
font-weight: 600;
line-height: 1.4;
letter-spacing: 4px;
text-transform: uppercase;
}
.santheos-enquiry__title {
max-width: 620px;
margin: 0 0 19px;
color: var(–white);
font-size: clamp(37px, 3vw, 50px);
font-weight: 600;
line-height: 1.13;
letter-spacing: -0.8px;
}
.santheos-enquiry__intro {
max-width: 570px;
margin: 0 0 32px;
color: var(–grey);
font-size: 18px;
font-weight: 400;
line-height: 1.55;
}
/* FORM */
.santheos-enquiry__form {
width: 100%;
margin: 0;
}
.santheos-enquiry__field {
margin-bottom: 19px;
}
.santheos-enquiry__field label {
display: block;
margin-bottom: 8px;
color: var(–white);
font-size: 15px;
font-weight: 500;
line-height: 1.3;
}
.santheos-enquiry__field input,
.santheos-enquiry__field textarea {
display: block;
width: 100%;
margin: 0;
color: var(–white);
background: var(–field);
border: 1px solid var(–line);
border-radius: 2px;
outline: none;
box-shadow: none;
font-family: Roboto, Arial, sans-serif;
font-size: 16px;
font-weight: 400;
transition:
border-color 0.2s ease,
background-color 0.2s ease;
}
.santheos-enquiry__field input {
height: 52px;
padding: 0 15px;
}
.santheos-enquiry__field textarea {
min-height: 112px;
padding: 15px;
line-height: 1.5;
resize: vertical;
}
.santheos-enquiry__field input::placeholder,
.santheos-enquiry__field textarea::placeholder {
color: #999da2;
opacity: 1;
}
.santheos-enquiry__field input:hover,
.santheos-enquiry__field textarea:hover {
border-color: rgba(201, 166, 75, 0.55);
}
.santheos-enquiry__field input:focus,
.santheos-enquiry__field textarea:focus {
background: #181c20;
border-color: var(–gold);
}
/* CONSENT CHECKBOX */
.santheos-enquiry__consent {
display: flex;
align-items: flex-start;
gap: 11px;
margin: 7px 0 25px;
color: var(–grey);
cursor: pointer;
}
.santheos-enquiry__consent input {
flex: 0 0 auto;
width: 19px;
height: 19px;
margin: 1px 0 0;
cursor: pointer;
accent-color: var(–gold);
}
.santheos-enquiry__consent span {
font-size: 14px;
font-weight: 400;
line-height: 1.45;
}
/* BUTTON */
.santheos-enquiry__button {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 58px;
padding: 15px 24px;
color: var(–black);
background: var(–gold);
border: 1px solid var(–gold);
border-radius: 2px;
cursor: pointer;
font-family: Roboto, Arial, sans-serif;
font-size: 17px;
font-weight: 700;
line-height: 1.2;
text-align: center;
transition:
background-color 0.2s ease,
border-color 0.2s ease,
transform 0.2s ease;
}
.santheos-enquiry__button:hover {
color: var(–black);
background: var(–gold-hover);
border-color: var(–gold-hover);
transform: translateY(-2px);
}
.santheos-enquiry__button:focus-visible {
outline: 2px solid var(–white);
outline-offset: 3px;
}
/* TABLET */
@media (max-width: 1024px) {
.santheos-enquiry {
padding: 22px;
}
.santheos-enquiry__inner {
grid-template-columns: 1fr;
min-height: 0;
}
.santheos-enquiry__image {
min-height: 500px;
}
.santheos-enquiry__image img {
min-height: 500px;
max-height: 560px;
}
.santheos-enquiry__image::after {
background:
linear-gradient(
180deg,
rgba(16, 18, 20, 0) 70%,
rgba(16, 18, 20, 0.22) 100%
);
}
.santheos-enquiry__content {
max-width: 800px;
margin: 0 auto;
padding: 65px 55px;
}
.santheos-enquiry__title {
font-size: clamp(39px, 6vw, 50px);
}
}
/* MOBILE */
@media (max-width: 767px) {
.santheos-enquiry {
padding: 0;
}
.santheos-enquiry__inner {
border-right: 0;
border-left: 0;
}
.santheos-enquiry__image {
min-height: 300px;
}
.santheos-enquiry__image img {
min-height: 300px;
max-height: 360px;
object-position: center;
}
.santheos-enquiry__content {
padding: 48px 20px 52px;
}
.santheos-enquiry__eyebrow {
margin-bottom: 18px;
font-size: 12px;
letter-spacing: 3px;
}
.santheos-enquiry__title {
margin-bottom: 16px;
font-size: clamp(34px, 10vw, 43px);
line-height: 1.13;
}
.santheos-enquiry__intro {
margin-bottom: 28px;
font-size: 16px;
line-height: 1.55;
}
.santheos-enquiry__field {
margin-bottom: 17px;
}
.santheos-enquiry__field input {
height: 50px;
}
.santheos-enquiry__field textarea {
min-height: 120px;
}
.santheos-enquiry__consent {
margin-bottom: 23px;
}
.santheos-enquiry__consent span {
font-size: 13px;
}
.santheos-enquiry__button {
min-height: 56px;
font-size: 16px;
}
}

Santheos Golden Visa residential development

Consulta sobre un proyecto

Contacte con Santheos sobre un proyecto de conversión para la Golden Visa

Solicite información actualizada del proyecto y coordine el siguiente paso con nuestro equipo de Atenas.

.st-faq,
.st-faq * {
box-sizing: border-box;
}
.st-faq {
–st-background: #191a1c;
–st-white: #f6f6f6;
–st-gray: #b8b8b8;
–st-gold: #c9a64b;
–st-divider: #404144;
width: 100%;
margin: 0;
background: var(–st-background);
color: var(–st-white);
font-family: «Roboto», Arial, sans-serif;
}
.st-faq-inner {
width: min(100%, 1720px);
min-height: 760px;
margin: 0 auto;
padding: 96px 72px;
display: grid;
grid-template-columns: minmax(250px, 34%) minmax(0, 66%);
gap: 80px;
align-items: start;
}
/* Left title */
.st-faq-heading {
margin: 10px 0 0;
color: var(–st-white);
font-family: «Roboto», Arial, sans-serif;
font-size: clamp(58px, 5vw, 82px);
font-weight: 400;
line-height: 1;
letter-spacing: -2px;
}
/* Accordion */
.st-faq-list {
width: 100%;
border-top: 1px solid var(–st-divider);
}
.st-faq-item {
border-bottom: 1px solid var(–st-divider);
}
.st-faq-question {
width: 100%;
min-height: 112px;
margin: 0;
padding: 30px 86px 30px 8px;
position: relative;
display: flex;
align-items: center;
border: 0;
border-radius: 0;
outline: none;
background: transparent;
color: var(–st-white);
font-family: «Roboto», Arial, sans-serif;
font-size: clamp(20px, 1.45vw, 25px);
font-weight: 500;
line-height: 1.4;
text-align: left;
cursor: pointer;
appearance: none;
transition: color 250ms ease;
}
.st-faq-question:hover,
.st-faq-question:focus-visible {
color: var(–st-gold);
}
.st-faq-question:focus-visible {
outline: 2px solid var(–st-gold);
outline-offset: -4px;
}
/* Gold plus/minus circle */
.st-faq-symbol {
width: 50px;
height: 50px;
position: absolute;
top: 50%;
right: 4px;
flex: 0 0 50px;
border: 2px solid var(–st-gold);
border-radius: 50%;
transform: translateY(-50%);
transition:
background-color 250ms ease,
transform 250ms ease;
}
.st-faq-symbol::before,
.st-faq-symbol::after {
content: «»;
position: absolute;
top: 50%;
left: 50%;
background: var(–st-gold);
transform: translate(-50%, -50%);
transition:
opacity 250ms ease,
transform 250ms ease;
}
.st-faq-symbol::before {
width: 21px;
height: 2px;
}
.st-faq-symbol::after {
width: 2px;
height: 21px;
}
.st-faq-question[aria-expanded=»true»] .st-faq-symbol::after {
opacity: 0;
transform: translate(-50%, -50%) rotate(90deg);
}
.st-faq-question:hover .st-faq-symbol,
.st-faq-question:focus-visible .st-faq-symbol {
transform: translateY(-50%) scale(1.06);
}
/* Animated answer */
.st-faq-answer {
display: grid;
grid-template-rows: 0fr;
opacity: 0;
visibility: hidden;
transition:
grid-template-rows 450ms ease,
opacity 350ms ease,
visibility 0s linear 450ms;
}
.st-faq-item.is-open .st-faq-answer {
grid-template-rows: 1fr;
opacity: 1;
visibility: visible;
transition:
grid-template-rows 450ms ease,
opacity 350ms ease,
visibility 0s;
}
.st-faq-answer-inner {
min-height: 0;
overflow: hidden;
}
.st-faq-answer p {
max-width: 900px;
margin: 0;
padding: 0 86px 38px 8px;
color: var(–st-gray);
font-family: «Roboto», Arial, sans-serif;
font-size: clamp(17px, 1.15vw, 20px);
font-weight: 400;
line-height: 1.65;
}
/* Tablet */
@media (max-width: 1024px) {
.st-faq-inner {
min-height: auto;
padding: 72px 42px;
grid-template-columns: minmax(190px, 27%) minmax(0, 73%);
gap: 44px;
}
.st-faq-heading {
margin-top: 6px;
font-size: 58px;
}
.st-faq-question {
min-height: 96px;
padding: 25px 70px 25px 4px;
font-size: 20px;
}
.st-faq-symbol {
width: 44px;
height: 44px;
right: 2px;
}
.st-faq-answer p {
padding: 0 65px 30px 4px;
font-size: 17px;
}
}
/* Mobile */
@media (max-width: 767px) {
.st-faq-inner {
padding: 54px 22px;
display: block;
}
.st-faq-heading {
margin: 0 0 46px;
font-size: 50px;
letter-spacing: -1px;
}
.st-faq-question {
min-height: 88px;
padding: 22px 60px 22px 0;
font-size: 18px;
line-height: 1.45;
}
.st-faq-symbol {
width: 40px;
height: 40px;
right: 0;
}
.st-faq-symbol::before {
width: 17px;
}
.st-faq-symbol::after {
height: 17px;
}
.st-faq-answer p {
padding: 0 4px 28px 0;
font-size: 16px;
line-height: 1.6;
}
}

Preguntas frecuentes

Santheos presenta proyectos de conversión de uso comercial a residencial
destinados a la categoría especial de 250.000 EUR. La elegibilidad
es específica de cada inmueble y debe confirmarse mediante una revisión jurídica,
técnica y de inmigración independiente antes de asumir cualquier compromiso.

Puede solicitar el resumen actualizado del proyecto, información de ubicación,
lista de unidades disponibles, planos, superficies y especificaciones,
precios orientativos y estado de reserva. La documentación disponible
puede variar de un proyecto a otro y siempre debe
ser revisada de forma independiente.

No. La disponibilidad del sitio web es información general y puede cambiar
sin aviso inmediato. Contacte con Santheos para solicitar
la lista de unidades más reciente y confirmar si un inmueble concreto
está disponible o reservado actualmente.

Los documentos del inmueble deben ser revisados por profesionales cualificados
e independientes designados por el comprador. Según la
operación, pueden intervenir un abogado griego, un ingeniero, un notario,
un contable y un asesor de inmigración. La información del proyecto proporcionada por Santheos
no sustituye el asesoramiento jurídico o técnico profesional.

Muchas etapas de la operación pueden coordinarse desde el extranjero mediante
representantes debidamente autorizados y un poder notarial válido.
No obstante, el proceso exacto depende del comprador, del inmueble
y de la solicitud de residencia. Su abogado, notario y asesor de inmigración
deben confirmar qué firmas, documentos o comparecencias presenciales
son necesarios.