[{"id":"html","name":"Html","className":"HtmlPlugin","icon":"fas fa-code","hash":["t3ovfbo3n9"],"parent":null,"type":"draggable","classType":"section-htmlPlugin","value":"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>News | InModerna GSI</title>\n\n<style>\nbody{\n margin:0;\n font-family:'Segoe UI', sans-serif;\n background:#f5f7fb;\n color:#1f2937;\n}\n\n/* HERO */\n.hero{\n min-height:55vh;\n background:linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),\n url('https://images.unsplash.com/photo-1495020689067-958852a7765e?q=80&w=1600&auto=format&fit=crop') center/cover;\n display:flex;\n align-items:center;\n justify-content:center;\n text-align:center;\n color:white;\n padding:50px 20px;\n}\n\n.hero-content{\n max-width:900px;\n}\n\n.hero h1{\n font-size:56px;\n margin-bottom:15px;\n letter-spacing:3px;\n text-transform:uppercase;\n}\n\n.hero p{\n font-size:20px;\n line-height:1.7;\n opacity:0.95;\n max-width:760px;\n margin:0 auto;\n}\n\n/* SECTIONS */\n.section{\n max-width:1200px;\n margin:80px auto;\n padding:0 20px;\n}\n\n.title{\n text-align:center;\n font-size:40px;\n margin-bottom:10px;\n color:#1f2937;\n}\n\n.line{\n width:90px;\n height:4px;\n background:#1e40af;\n margin:0 auto 40px;\n border-radius:20px;\n}\n\n.intro{\n max-width:900px;\n margin:0 auto 45px;\n text-align:center;\n font-size:18px;\n line-height:1.9;\n color:#555;\n}\n\n/* NEWS GRID */\n.news-grid{\n display:grid;\n grid-template-columns:repeat(2, minmax(0,1fr));\n gap:40px;\n align-items:stretch;\n}\n\n/* NEWS CARD */\n.news-card{\n background:white;\n border-radius:24px;\n overflow:hidden;\n box-shadow:0 12px 35px rgba(0,0,0,0.07);\n transition:0.3s;\n display:flex;\n flex-direction:column;\n}\n\n.news-card:hover{\n transform:translateY(-7px);\n}\n\n.news-card img{\n width:100%;\n height:340px;\n object-fit:cover;\n object-position:center top;\n}\n\n/* Image with data side panel */\n.news-media-split{\n display:grid;\n grid-template-columns:1fr 150px;\n height:340px;\n background:#eff6ff;\n}\n\n.news-media-split img{\n height:340px;\n width:100%;\n object-fit:cover;\n}\n\n.euribor-side{\n background:#1e40af;\n color:white;\n padding:22px 16px;\n display:flex;\n flex-direction:column;\n justify-content:center;\n align-items:center;\n text-align:center;\n}\n\n.euribor-side .small{\n font-size:13px;\n text-transform:uppercase;\n letter-spacing:0.8px;\n opacity:0.9;\n margin-bottom:10px;\n}\n\n.euribor-side .big{\n font-size:34px;\n font-weight:800;\n line-height:1;\n margin-bottom:8px;\n}\n\n.euribor-side .text{\n font-size:14px;\n line-height:1.4;\n opacity:0.95;\n}\n\n/* Special adjustment to avoid cropping José's head */\n.news-card img.persona{\n object-position:center top;\n}\n\n.news-content{\n padding:30px;\n display:flex;\n flex-direction:column;\n flex:1;\n}\n\n.tag{\n display:inline-block;\n width:max-content;\n background:#eff6ff;\n color:#1e40af;\n border:1px solid #93c5fd;\n padding:8px 16px;\n border-radius:30px;\n font-size:13px;\n font-weight:700;\n margin-bottom:15px;\n text-transform:uppercase;\n letter-spacing:0.5px;\n}\n\n.date{\n color:#6b7280;\n font-size:14px;\n margin-bottom:12px;\n}\n\n.news-content h2{\n font-size:25px;\n line-height:1.35;\n color:#1f2937;\n margin:0 0 16px;\n}\n\n.news-content p{\n color:#555;\n font-size:16px;\n line-height:1.8;\n margin-bottom:25px;\n}\n\n.news-content a{\n margin-top:auto;\n display:inline-block;\n width:max-content;\n background:#1e40af;\n color:white;\n padding:13px 26px;\n border-radius:30px;\n text-decoration:none;\n font-weight:600;\n transition:0.3s;\n}\n\n.news-content a:hover{\n transform:scale(1.05);\n background:#17358f;\n}\n\n/* HIGHLIGHT */\n.highlight{\n background:#1e40af;\n color:white;\n padding:60px 35px;\n border-radius:24px;\n text-align:center;\n box-shadow:0 12px 35px rgba(30,64,175,0.22);\n}\n\n.highlight h2{\n font-size:36px;\n margin-bottom:15px;\n}\n\n.highlight p{\n font-size:18px;\n line-height:1.8;\n max-width:850px;\n margin:0 auto;\n}\n\n/* INFORMATION GRID */\n.grid{\n display:grid;\n grid-template-columns:repeat(auto-fit,minmax(250px,1fr));\n gap:20px;\n margin-top:40px;\n}\n\n.card{\n background:white;\n padding:30px;\n border-radius:18px;\n box-shadow:0 10px 25px rgba(0,0,0,0.06);\n text-align:center;\n transition:0.3s;\n}\n\n.card:hover{\n transform:translateY(-7px);\n}\n\n.icon{\n font-size:32px;\n margin-bottom:12px;\n}\n\n.card h3{\n font-size:21px;\n margin:10px 0;\n color:#1f2937;\n}\n\n.card p{\n color:#555;\n line-height:1.7;\n font-size:16px;\n}\n\n/* BENEFITS */\n.benefits{\n display:flex;\n flex-wrap:wrap;\n justify-content:center;\n gap:18px;\n margin-top:35px;\n}\n\n.benefit{\n background:#eff6ff;\n border:1px solid #93c5fd;\n color:#1e40af;\n padding:14px 24px;\n border-radius:30px;\n font-weight:600;\n}\n\n/* RESPONSIVE */\n@media(max-width:900px){\n .hero h1{\n font-size:38px;\n }\n\n .hero p{\n font-size:17px;\n }\n\n .title{\n font-size:32px;\n }\n\n .section{\n margin:60px auto;\n }\n\n .news-grid{\n grid-template-columns:1fr;\n gap:30px;\n }\n\n .news-card img{\n height:300px;\n object-position:center top;\n }\n\n .news-media-split{\n grid-template-columns:1fr;\n height:auto;\n }\n\n .news-media-split img{\n height:260px;\n }\n\n .euribor-side{\n padding:22px;\n }\n}\n</style>\n</head>\n\n<body>\n\n<!-- HERO -->\n<div class=\"hero\">\n <div class=\"hero-content\">\n <h1>News</h1>\n <p>\n Real estate news, interviews and sector updates to better understand the market and make more informed decisions.\n </p>\n </div>\n</div>\n\n<!-- INTRODUCTION -->\n<div class=\"section\">\n <h2 class=\"title\">Real Estate News</h2>\n <div class=\"line\"></div>\n\n <p class=\"intro\">\n At InModerna GSI, we closely follow the most relevant news about the real estate market, housing,\n rental regulation and the evolution of the sector in Barcelona and Catalonia.\n </p>\n\n <div class=\"news-grid\">\n\n <!-- LATEST NEWS - SPECULATIVE PURCHASES -->\n <div class=\"news-card\">\n <img src=\"https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1600&auto=format&fit=crop\" alt=\"Real estate documents, keys and analysis on housing purchase regulation\">\n <div class=\"news-content\">\n <span class=\"tag\">Regulation</span>\n <div class=\"date\">July 13, 2026</div>\n <h2>Catalonia moves forward with a law to limit speculative housing purchases</h2>\n <p>\n The Parliament of Catalonia has started the process of a bill aimed at limiting\n certain housing purchases in stressed residential market areas. The proposal seeks to control\n the subsequent use of acquired properties, especially when they are not intended as a main residence\n or for stable residential rental. The process is not yet closed, and Junts and PP have announced\n that they will take the text to the Consell de Garanties Estatutàries, which may delay its final approval.\n This news confirms that the real estate market is entering a stage in which legal certainty, the use of housing\n and regulatory analysis are gaining importance in any transaction.\n </p>\n <a href=\"https://elpais.com/expres/2026-07-09/el-govern-catalan-da-el-primer-paso-para-atajar-la-compra-especulativa-de-viviendas-y-pp-y-junts-anuncian-que-recurriran.html\" target=\"_blank\">\n Read news\n </a>\n </div>\n </div>\n\n <!-- NEWS - REHABILITATION -->\n <div class=\"news-card\">\n <img src=\"https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1600&auto=format&fit=crop\" alt=\"Building rehabilitation and energy efficiency improvements in homes\">\n <div class=\"news-content\">\n <span class=\"tag\">Rehabilitation</span>\n <div class=\"date\">July 6, 2026</div>\n <h2>The 2026-2030 State Housing Plan strengthens rehabilitation grants</h2>\n <p>\n The new 2026-2030 State Housing Plan focuses on improving the residential housing stock,\n with measures aimed at rehabilitation, accessibility and energy efficiency.\n According to information published by the Ministry of Housing, grants may reach up to\n 13,000 euros per dwelling for accessibility works and up to 20,500 euros per dwelling\n for energy rehabilitation, depending on the type of intervention and the reduction in consumption.\n These measures may be relevant for owners and communities wishing to improve\n the condition of their buildings or better prepare a property before selling or renting it.\n </p>\n <a href=\"https://www.mivau.gob.es/vivienda/info-plan-estatal-de-vivienda-2026-2030\" target=\"_blank\">\n Read news\n </a>\n </div>\n </div>\n\n <!-- EURIBOR NEWS -->\n <div class=\"news-card\">\n <div class=\"news-media-split\">\n <img src=\"https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1600&auto=format&fit=crop\" alt=\"Mortgage documents and financial calculations related to the evolution of Euribor\">\n <div class=\"euribor-side\">\n <div class=\"small\">Euribor</div>\n <div class=\"big\">2.78%</div>\n <div class=\"text\">June 2026<br>after three months of rises</div>\n </div>\n </div>\n\n <div class=\"news-content\">\n <span class=\"tag\">Mortgages</span>\n <div class=\"date\">July 2, 2026</div>\n <h2>Euribor falls to 2.78% in June after three months of increases</h2>\n <p>\n The 12-month Euribor closed June at around 2.78%, slightly below the 2.804%\n recorded in May. Despite this small decrease, variable-rate mortgages being reviewed now may still\n become more expensive, as the index remains above the level recorded one year ago.\n For an average mortgage of 150,000 euros over 25 years with a 1% spread, the increase could\n be around 57-58 euros per month in an annual review.\n </p>\n <a href=\"https://cadenaser.com/nacional/2026/06/30/el-euribor-se-estabiliza-en-junio-y-acaba-con-tres-meses-seguidos-de-subidas-cadena-ser/\" target=\"_blank\">\n Read news\n </a>\n </div>\n </div>\n\n <!-- NEWS 1 -->\n <div class=\"news-card\">\n <img src=\"https://images.unsplash.com/photo-1583422409516-2895a77efded?q=80&w=1600&auto=format&fit=crop\" alt=\"Urban view of Barcelona related to the real estate market\">\n <div class=\"news-content\">\n <span class=\"tag\">Real estate market</span>\n <div class=\"date\">June 26, 2026</div>\n <h2>Housing in Barcelona reaches a record high and exceeds €5,200/m²</h2>\n <p>\n The price of second-hand housing in Barcelona continues to rise and reaches new record highs, standing\n at €5,243/m² in May 2026, with an annual increase of 7.1%. This evolution reinforces the importance\n of having a professional valuation before selling a property.\n </p>\n <a href=\"https://www.idealista.com/news/inmobiliario/vivienda/2026/06/03/900397-la-vivienda-en-barcelona-bate-record-y-supera-los-5-200-euros-m2-en-mayo\" target=\"_blank\">\n Read news\n </a>\n </div>\n </div>\n\n <!-- NEWS 2 -->\n <div class=\"news-card\">\n <img class=\"persona\" src=\"https://inmoderna.es/images/Screenshot_61.jpg\" alt=\"José Cazorla InModerna GSI\">\n <div class=\"news-content\">\n <span class=\"tag\">Interview</span>\n <div class=\"date\">February 6, 2025</div>\n <h2>José Cazorla from InModerna GSI: real estate and home services, 360º in Gràcia</h2>\n <p>\n Interview about the trajectory of InModerna GSI, its local real estate service and the importance\n of offering complete solutions for owners, buyers and residents of Gràcia.\n </p>\n <a href=\"https://totgracia.com/jose-cazorla-de-inmoderna-gsi-serveis-inmobiliaris-i-per-a-la-llar-360o-a-gracia/\" target=\"_blank\">\n Read news\n </a>\n </div>\n </div>\n\n <!-- NEWS 3 -->\n <div class=\"news-card\">\n <img src=\"https://inmoderna.es/images/57789_20250212142726.jpg\" alt=\"Real estate sector news\">\n <div class=\"news-content\">\n <span class=\"tag\">Real estate sector</span>\n <div class=\"date\">February 12, 2025</div>\n <h2>Real estate agencies call for a national “Marshall Plan” amid the biggest housing crisis in 40 years</h2>\n <p>\n The real estate sector is calling for structural measures to address the shortage of housing, rising prices\n and the need for a stable framework that can help balance supply and demand.\n </p>\n <a href=\"https://www.idealista.com/news/inmobiliario/vivienda/2025/02/12/832024-las-inmobiliarias-piden-un-plan-marshall-nacional-ante-la-mayor-crisis-de-vivienda\" target=\"_blank\">\n Read news\n </a>\n </div>\n </div>\n\n </div>\n</div>\n\n<!-- HIGHLIGHT -->\n<div class=\"section\">\n <div class=\"highlight\">\n <h2>Useful information to make better decisions</h2>\n <p>\n The real estate market is constantly changing. That is why it is important to have clear information,\n professional criteria and close advice before selling, buying, renting or investing.\n </p>\n </div>\n</div>\n\n<!-- EXTRA CONTENT -->\n<div class=\"section\">\n <h2 class=\"title\">What will you find in this section?</h2>\n <div class=\"line\"></div>\n\n <div class=\"grid\">\n\n <div class=\"card\">\n <div class=\"icon\">📰</div>\n <h3>Sector news</h3>\n <p>\n Articles and updates about the real estate market, housing, sales, rentals and regulation.\n </p>\n </div>\n\n <div class=\"card\">\n <div class=\"icon\">🏙️</div>\n <h3>Local market</h3>\n <p>\n Information related to Barcelona, Gràcia and the area where we work every day with owners and clients.\n </p>\n </div>\n\n <div class=\"card\">\n <div class=\"icon\">📊</div>\n <h3>Real estate analysis</h3>\n <p>\n Reflections on the evolution of prices, demand, rentals and market opportunities.\n </p>\n </div>\n\n <div class=\"card\">\n <div class=\"icon\">🤝</div>\n <h3>InModerna GSI</h3>\n <p>\n News, interviews and content linked to our professional activity and the service we offer.\n </p>\n </div>\n\n </div>\n</div>\n\n<!-- BENEFITS -->\n<div class=\"section\">\n <h2 class=\"title\">Follow the latest news with us</h2>\n <div class=\"line\"></div>\n\n <div class=\"benefits\">\n <div class=\"benefit\">Real estate market</div>\n <div class=\"benefit\">Housing</div>\n <div class=\"benefit\">Rentals</div>\n <div class=\"benefit\">Sales and purchases</div>\n <div class=\"benefit\">Barcelona and Gràcia</div>\n </div>\n</div>\n\n</body>\n</html>","limit":-1,"order":101}]
News | InModerna GSI
News
Real estate news, interviews and sector updates to better understand the market and make more informed decisions.
Real Estate News
At InModerna GSI, we closely follow the most relevant news about the real estate market, housing,
rental regulation and the evolution of the sector in Barcelona and Catalonia.
Regulation
July 13, 2026
Catalonia moves forward with a law to limit speculative housing purchases
The Parliament of Catalonia has started the process of a bill aimed at limiting
certain housing purchases in stressed residential market areas. The proposal seeks to control
the subsequent use of acquired properties, especially when they are not intended as a main residence
or for stable residential rental. The process is not yet closed, and Junts and PP have announced
that they will take the text to the Consell de Garanties Estatutàries, which may delay its final approval.
This news confirms that the real estate market is entering a stage in which legal certainty, the use of housing
and regulatory analysis are gaining importance in any transaction.
The 2026-2030 State Housing Plan strengthens rehabilitation grants
The new 2026-2030 State Housing Plan focuses on improving the residential housing stock,
with measures aimed at rehabilitation, accessibility and energy efficiency.
According to information published by the Ministry of Housing, grants may reach up to
13,000 euros per dwelling for accessibility works and up to 20,500 euros per dwelling
for energy rehabilitation, depending on the type of intervention and the reduction in consumption.
These measures may be relevant for owners and communities wishing to improve
the condition of their buildings or better prepare a property before selling or renting it.
Euribor falls to 2.78% in June after three months of increases
The 12-month Euribor closed June at around 2.78%, slightly below the 2.804%
recorded in May. Despite this small decrease, variable-rate mortgages being reviewed now may still
become more expensive, as the index remains above the level recorded one year ago.
For an average mortgage of 150,000 euros over 25 years with a 1% spread, the increase could
be around 57-58 euros per month in an annual review.
Housing in Barcelona reaches a record high and exceeds €5,200/m²
The price of second-hand housing in Barcelona continues to rise and reaches new record highs, standing
at €5,243/m² in May 2026, with an annual increase of 7.1%. This evolution reinforces the importance
of having a professional valuation before selling a property.
José Cazorla from InModerna GSI: real estate and home services, 360º in Gràcia
Interview about the trajectory of InModerna GSI, its local real estate service and the importance
of offering complete solutions for owners, buyers and residents of Gràcia.
Real estate agencies call for a national “Marshall Plan” amid the biggest housing crisis in 40 years
The real estate sector is calling for structural measures to address the shortage of housing, rising prices
and the need for a stable framework that can help balance supply and demand.
The real estate market is constantly changing. That is why it is important to have clear information,
professional criteria and close advice before selling, buying, renting or investing.
What will you find in this section?
📰
Sector news
Articles and updates about the real estate market, housing, sales, rentals and regulation.
🏙️
Local market
Information related to Barcelona, Gràcia and the area where we work every day with owners and clients.
📊
Real estate analysis
Reflections on the evolution of prices, demand, rentals and market opportunities.
🤝
InModerna GSI
News, interviews and content linked to our professional activity and the service we offer.