*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /* color */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-green: #2c423f;
  --color-orange: #db5c27;
  --color-gray: #666666;

  /* Font family */
  --ff-main: "Poppins", sans-serif;
  --ff-seasons: "the-seasons", sans-serif;

  /* font weight */
  --fw-thin: 100;
  --fw-extraLight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--ff-main);
  font-weight: var(--fw-regular);
  font-style: var(--fs-normal);
  font-synthesis: none; /* don't fake bold/italic */
}

body {
  font-family: var(--ff-main);
  font-weight: var(--fw-regular);
  overflow-x: hidden;
}
ul,
ol {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: inherit;
}

a,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
  display: inline-block;
}

/* Header */

.page-wrapper {
  background: #000;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* TOP BAR -------------------------------------------------- */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s, background-color 0.3s;
  background: transparent;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #ffffff;
}

.menu-toggle span.label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.menu-icon {
  width: 24px;
  height: 14px;
  position: relative;
}

/* Both lines share base style */
.menu-icon-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
  transform-origin: center; /* important for nice rotation */
}

/* Position the two lines */
.menu-icon-line:nth-child(1) {
  top: 0;
}
.menu-icon-line:nth-child(2) {
  top: 12px;
}

/* When menu is open -> transform into X */
.menu-open .menu-icon-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-open .menu-icon-line:nth-child(2) {
  top: 6px;
  transform: rotate(-45deg);
}

/* LOGO PART */
.brand-logo img {
  height: 60px;
  display: block;
}

.brand-logo .logo-dark {
  display: none;
}

/* When menu is open, show dark logo and hide white logo */
.menu-open .logo-white {
  display: none;
}
.menu-open .logo-dark {
  display: block;
}

/* HERO SECTION ---------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  background-image: url("../images/hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.hero-caption {
  position: absolute;
  left: 60px;
  bottom: 80px;
  z-index: 2;
  max-width: 60%;
}

.hero-caption h1 {
  font-size: 70px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: var(--fw-extraLight);
}

.hero-caption .highlight {
  font-weight: 500;
  font-family: var(--ff-seasons);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-meta-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-btn {
  border-radius: 999px;
  padding-inline: 40px;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero-btn:hover {
  background: #ffffff;
  color: var(--color-green);
}

/* OVERLAY MENU --------------------------------------------- */
.overlay-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  display: flex;
  flex-direction: column;
}

.overlay-menu-inner {
  padding: 90px 60px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.overlay-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.overlay-menu li {
  line-height: 2.5;
}

.overlay-menu li.active {
  font-weight: var(--fw-bold);
  color: #134f47;
}

.overlay-menu a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
}
.overlay-menu a:hover {
  font-weight: var(--fw-bold);
}
/* STATES WHEN MENU OPEN ------------------------------------ */
body.menu-open .overlay-menu {
  opacity: 1;
  visibility: visible;
}

body.menu-open .top-bar {
  background: transparent;
}

body.menu-open .brand-logo,
body.menu-open .menu-toggle {
  color: #134f47;
}

.menu-open .menu-icon-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-open .menu-icon-line:nth-child(2) {
  top: 6px;
  transform: rotate(-45deg);
}

/* ABOUT SECTION ---------------------------------------------------- */

.section-about {
  background-color: var(--color-white);
  padding: 40px 0;
  font-family: var(--ff-main);
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  height: 550px;
}

.section-about .about-content {
  margin-left: 60px;
}

.about-title {
  font-size: 34px;
  line-height: 1.3;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 30px;
}

.about-title-highlight {
  padding: 0 4px;
  font-family: var(--ff-seasons);
  font-size: 55px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 14px;
}

.btn-about {
  margin-top: 24px;
  padding: 10px 38px;
  border-radius: 999px;
  border: 1px solid var(--color-orange);
  background-color: transparent;
  color: var(--color-green);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.btn-about:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* EMPREENDIMENTOS FUTUROS -------------------------------------- */

/* EMPREENDIMENTOS FUTUROS -------------------------------------- */

.section-projects {
  padding: 80px 40px 70px;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

.projects-title {
  font-size: 34px;
  font-weight: var(--fw-light);
  color: var(--color-green);
  margin-bottom: 28px;
}

.projects-title-highlight {
  padding: 0 5px;
  font-family: var(--ff-seasons);
  font-size: 55px;
}

/* left column text */
.projects-intro {
  padding-right: 40px;
}
.projects-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 14px;
}

.projects-small-icon {
  display: inline-block;
  font-size: 11px;
  margin-left: 4px;
  color: var(--color-orange);
}

.btn-projects-all {
  margin-top: 26px;
  padding: 9px 32px;
  border-radius: 999px;
  border: 1px solid var(--color-orange);
  background-color: transparent;
  color: var(--color-green);
  font-size: 16px;

  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.btn-projects-all:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* cards */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.project-card-image {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
}

/* green overlay on hover */
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 66, 63, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.btn-projects-overlay {
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
  background: rgba(44, 66, 63, 0.68);
}

/* captions with orange dot */
.project-card-caption {
  font-size: 16px;
  color: var(--color-green);
  margin-top: 8px;
}

.project-card-caption .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: var(--color-orange);
}
/* PORQUÊ PORTUGAL ----------------------------------------- */

.section-why {
  padding-top: 80px;
  font-family: var(--ff-main);
  background-color: var(--color-white);
  position: relative;
}

.why-title {
  font-size: 34px;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 40px;
}

.why-title-highlight {
  padding: 0 5px;
  font-family: var(--ff-seasons);
}

.why-text {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.btn-why {
  margin-top: 40px;
  padding: 10px 36px;
  border-radius: 999px;
  border: 1px solid var(--color-orange);
  background-color: transparent;
  color: var(--color-green);
  font-size: 16px;

  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.btn-why:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* IMAGE */
.why-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  height: 600px;
}

/* BIG AUREN TEXT / BACKGROUND */
.why-bg-text {
  position: absolute;
  bottom: -80px;
  right: 10px;
  width: 80%;
  font-weight: var(--fw-black);
  color: rgba(44, 66, 63, 0.05);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

/* BLOG SECTION -------------------------------------------------- */

/* BLOG SECTION -------------------------------------------------- */

.section-blog {
  margin-top: 80px;
  padding-block: 80px;
  background-image: url("../images/duaba.jpg");
  background-position: center center;
  background-size: cover;
  color: var(--color-white);
  font-family: var(--ff-main);
}

.blog-title {
  font-size: 34px;
  font-weight: var(--fw-regular);
  margin: 0;
}

/* header button */
.btn-blog-all {
  padding: 8px 40px;
  border-radius: 999px;
  border: 1px solid var(--color-orange);
  background-color: transparent;
  color: var(--color-white);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.btn-blog-all:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* Swiper spacing */
.blog-swiper {
  padding-top: 10px;
  padding-bottom: 20px;
}

/* Card */
.blog-card {
  background: transparent;
  color: var(--color-white);
}

/* image + overlay arrow */
.blog-card-image {
  position: relative;
  width: 100%;
  height: 350px;
  object-fit: cover;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding-top: 20px;
  display: flex;
}
.blog-card-body .blog-info {
  flex: 1;
}

.blog-card-body .ri-arrow-right-up-line {
  border: 1px solid var(--color-white);
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-card-title {
  font-size: 22px;
  font-weight: var(--fw-medium);
  margin-bottom: 10px;
}

.blog-card-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.blog-card-line {
  margin-top: 18px;
  height: 1px;
  width: 100%;
  background: var(--color-white);
}

.blog-swiper .swiper-slide {
  max-width: 100%;
}

/* NEWSLETTER SECTION ----------------------------------------- */

.section-newsletter {
  position: relative;
  padding: 80px 40px 110px;
  background-color: var(--color-white);
  font-family: var(--ff-main);
  overflow: hidden;
}

.newsletter-deco {
  position: absolute;
  inset: 0 0 0 auto;
  width: 32%;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-title-top {
  font-size: 34px;
  color: var(--color-green);
  font-weight: var(--fw-regular);
  margin-bottom: 6px;
}

.newsletter-title-main {
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: var(--fw-light);
  color: var(--color-green);
}

.newsletter-highlight {
  padding: 4px 8px;
  font-family: var(--ff-seasons);
  font-size: 44px;
}

.newsletter-subtitle {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 40px;
}

/* form layout */
.newsletter-form {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.newsletter-input-wrapper {
  min-width: 260px;
  max-width: 360px;
  width: 100%;
  border-bottom: 1px solid var(--color-green);
}

.newsletter-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 8px 0 6px;
  background: transparent;
  font-size: 13px;
  color: var(--color-green);
}

.newsletter-input::placeholder {
  color: #cccccc;
}

/* orange pill button */
.newsletter-btn {
  padding: 10px 36px;
  border-radius: 999px;
  border: none;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.newsletter-btn:hover {
  background-color: #f06a2f;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* FOOTER ---------------------------------------------- */

.footer-section {
  position: relative;
  background-color: var(--color-green);
  color: var(--color-white);
  padding-top: 80px;
  font-family: var(--ff-main);
  overflow: hidden;
}

.footer-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li + li {
  margin-top: 10px;
}

.footer-menu a {
  font-size: 16px;
  color: var(--color-white);
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-menu a:hover {
  opacity: 1;
}

.footer-contact p {
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-phone {
  font-weight: var(--fw-medium);
  opacity: 1;
}

/* Social icons */
.footer-socials {
  margin-top: 45px;
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  transition: all 0.25s;
}

.footer-socials a:hover {
  background-color: var(--color-white);
  color: var(--color-green);
  border-color: var(--color-white);
}

/* Separator line */
.footer-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 50px 0 0;
}

/* Big background AUREN text */
.footer-bg-title {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
}
.footer-bg-title img {
  width: 300px;
}

/* ==================== PAGE HEADER  Part Open ============================ */
.pageHeader {
  position: relative;
  background-size: cover;
  background-position: center center;
  height: 90vh;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  isolation: isolate;
}

.pageHeader::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;

  background: linear-gradient(to top, rgba(44, 66, 63, 0.5), transparent);
  z-index: -1;
}

.pageHeader h2 {
  color: var(--color-white);
  font-size: 110px;
  font-family: var(--ff-main);
  font-weight: var(--fw-extraLight);
}

/* ==================== PAGE HEADER  Part Close ============================ */
.why-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.why-title {
  font-size: 34px;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 40px;
}

.why-title-highlight {
  font-size: 55px;
  padding: 0 5px;
  font-family: var(--ff-seasons);
  font-weight: var(--fw-regular);
}

.why-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-gray);
}

.btn-outline-orange {
  border: 1px solid var(--color-orange);
  color: var(--color-green);
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn-outline-orange:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.vm-section {
  padding: 90px 0;
}

.vm-title {
  font-size: 34px;
  font-weight: var(--fw-light);
  color: var(--color-green);
  margin-bottom: 15px;
  position: relative;
}

.vm-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-green);
  margin-top: 8px;
}

.vm-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-gray);
}

.btn-outline-orange {
  border: 1px solid var(--color-orange);
  color: var(--color-green);
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn-outline-orange:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.vm-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
}

.vm-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marginBtm-70 {
  margin-bottom: 70px;
}
.section-responsabilidade {
  padding: 80px 0;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

.responsabilidade-title {
  font-size: 34px;
  font-weight: var(--fw-light);
  color: var(--color-green);
  margin-bottom: 18px;
}

.responsabilidade-highlight {
  font-family: var(--ff-seasons);
  font-size: 55px;
  font-weight: var(--fw-regular);
  margin-left: 6px;
}

.responsabilidade-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-gray);
}

.responsabilidade-btn {
  font-size: 16px;
  text-transform: uppercase;
  padding: 9px 40px;
}

.bigwaImgowa .loja img {
  width: 100%;
  height: 380px;
  display: block;
  object-fit: cover;
}
.section-sustentabilidade {
  padding: 50px 0;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

/* Title */
.sustentabilidade-title {
  font-size: 34px;
  font-weight: var(--fw-light);
  color: var(--color-green);
}

.sustentabilidade-highlight {
  font-family: var(--ff-seasons);
  font-size: 55px;
  font-weight: var(--fw-regular);
}

/* Paragraphs */
.sustentabilidade-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-gray);
  margin-bottom: 18px;
}

/* Image */
.sustentabilidade-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* ===========================================
   PORQUÊ PORTUGAL – CIDADES
   =========================================== */

/* ==================== CIDADES SCROLL CARDS ==================== */

.section-cidades {
  background-color: var(--color-white);
  font-family: var(--ff-main);
  margin-bottom: 80px;
}

/* each full-screen card */
.local-card {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e5e5e5;
  background-color: var(--color-white);
}

.local-card:last-child {
  border-bottom: none;
}

/* make row fill height */
.local-card .row {
  min-height: 100vh;
}

/* text block */
.local-content {
  padding-left: 16%;
  padding-right: 65px;
}

.local-title {
  font-size: 34px;
  line-height: 1.3;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 26px;
}

.local-title-strong {
  font-weight: var(--fw-bold);
}

.local-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-gray);
  margin-bottom: 26px;
}

/* button – same style, a bit more tracking */
.local-btn {
  font-size: 16px;
  padding: 9px 40px;
}

/* image side .local-image {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
} */
.local-image img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
}

/* ==================== CIDADES SCROLL CARDS END ==================== */

/* Blog */

.section-blog-grid {
  padding: 80px 0;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}
.blog-item .blog-link {
  width: 100%;
}
.blog-item {
  background: transparent;
  color: var(--color-gray);
}

/* image */
.blog-item-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  overflow: hidden;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* body */
.blog-item-body {
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.blog-item-info {
  flex: 1;
}

.blog-item-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-gray);
}

.blog-item-text {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 0;
}

/* arrow circle */
.blog-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-gray);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-item-icon i {
  font-size: 16px;
}

.blog-item-icon:hover {
  border-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* bottom line */
.blog-item-line {
  margin-top: 24px;
  height: 1px;
  width: 100%;
  background-color: #e5e5e5;
}

/* SINGLE BLOG SECTION */
.single-blog {
  background-color: var(--color-white);
  padding: 40px 0;
  font-family: var(--ff-main);
	position:relative;
}

.single-blog .about-content {
  margin-left: 60px;
}

.single-blog .about-image img {
  width: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  min-height: 750px;
}

.single-blog .about-title {
  font-size: 34px;
  line-height: 1.3;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 30px;
}

.single-blog .about-title-highlight {
  padding: 0 4px;
  font-family: var(--ff-seasons);
  font-size: 55px;
}

.single-blog .about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 14px;
}

.single-blog .btn-about {
  margin-top: 24px;
  padding: 10px 38px;
  border-radius: 999px;
  border: 1px solid var(--color-orange);
  background-color: transparent;
  color: var(--color-green);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
}

.single-blog .btn-about:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.single-blog .about-image {
  position: sticky;
  top: 10%;
}

.single-blog a{
	text-decoration:underline;
}
/* ==================== CONTACT SECTION ==================== */

.section-contact {
  padding: 80px 40px 110px;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

.contact-title {
  font-size: 34px;
  line-height: 1.3;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 26px;
}

.contact-title-emphasis {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-seasons);
  font-size: 55px;
  font-style: italic;
}

.contact-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 24px;
  max-width: 80%;
}

.contact-info {
  font-size: 16px;
  color: var(--color-gray);
}

.contact-phone {
  margin-bottom: 12px;
}

.contact-email {
  color: var(--color-gray);
}

/* form */

.contact-form {
  width: 100%;
}

.contact-form-group {
  width: 100%;
}

.contact-form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(44, 66, 63, 0.7);
  margin-bottom: 6px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--color-green);
  padding: 6px 0 8px;
  border-bottom: 1px solid rgba(44, 66, 63, 0.3);
}

.contact-input:focus,
.contact-textarea:focus {
  border-bottom-color: var(--color-green);
}

.contact-textarea {
  min-height: 150px;
  resize: none;
}

/* checkbox + button */

.contact-form-footer {
  margin-top: 28px;
}

.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 70%;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-gray);
}

.contact-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-orange);
}

/* pill button like your other CTAs */
.contact-submit {
  padding: 10px 46px;
  border-radius: 999px;
  border: 1px solid var(--color-orange);
  background-color: transparent;
  color: var(--color-green);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-submit:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* ==================== PROJECTS FILTER GRID ==================== */

.section-projects-filter {
  padding: 80px 40px 90px;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

/* filter nav */
.projects-filter-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.projects-filter-btn {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 16px;
  font-family: var(--ff-main);
  color: var(--color-green);
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}

.projects-filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background-color: var(--color-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.projects-filter-btn.active {
  color: var(--color-green);
  font-weight: var(--fw-semiBold);
}

.projects-filter-btn.active::after {
  transform: scaleX(1);
}

/* grid cards */
.projects-grid {
  margin-top: 10px;
}

.project-list-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-list-item.is-hidden {
  opacity: 0;
  transform: translateY(20px);
}

.project-list-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* card itself */
.project-list-card {
  cursor: pointer;
}

.project-list-thumb {
  width: 100%;
  height: 500px;
  border-radius: 0;
  background-color: rgba(58, 239, 215, 0.15); /* placeholder color */
  /* replace with real image later */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-list-thumb a {
  height: 100%;
  width: 100%;
}
.project-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-list-card:hover .project-list-thumb {
  transform: translateY(-6px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
}

.project-list-caption {
  margin-top: 12px;
}

.project-list-title {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-gray);
  margin-bottom: 4px;
}

.project-list-text {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.6;
}

/* responsive */
@media (max-width: 991.98px) {
  .section-projects-filter {
    padding: 30px 20px 30px;
  }

  .projects-filter-nav {
    gap: 28px;
  }
}

@media (max-width: 575.98px) {
  .projects-filter-nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .project-list-thumb {
    height: 260px;
  }
}

/* ==================== BENEFITS SECTION ==================== */

.section-benefits {
  padding: 80px 0;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

.benefits-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.morelessRight {
  padding-left: 40px;
}
.benefits-title {
  font-size: 34px;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 26px;
}

.benefits-title-highlight {
  font-family: var(--ff-seasons);
  font-size: 55px;
  font-style: italic;
  font-weight: var(--fw-regular);
}

.benefits-icons-row {
  margin-bottom: 26px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
}

.benefit-icon img {
  width: 32px;
  height: auto;
  display: block;
}

.benefit-label {
  font-size: 16px;
  color: var(--color-gray);
}

/* text */
.benefits-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-gray);
  margin-bottom: 14px;
}

/* small responsive tweaks */
@media (max-width: 991.98px) {
  .benefits-image {
    min-height: 320px;
  }

  .benefits-title {
    margin-top: 20px;
  }
}
/* ==================== TIPOLOGIAS TABLE ==================== */

.section-tipologias {
  padding: 60px 0 80px;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

.tipologias-title {
  font-size: 28px;
  font-weight: var(--fw-regular);
  color: var(--color-green);
  margin-bottom: 24px;
}

/* wrapper just to control width if needed */
.tipologias-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* table style */
.tipologias-table {
  border-collapse: collapse;
  font-size: 14px;
  text-transform: uppercase;
}

.tipologias-table thead th {
  border-bottom: 1px solid rgba(44, 66, 63, 0.25);
  font-weight: var(--fw-semiBold);
  color: var(--color-gray);
  padding: 10px 20px;
}

.tipologias-table tbody td {
  border-top: none;
  border-bottom: 1px solid rgba(44, 66, 63, 0.15);
  padding: 10px 20px;
  color: var(--color-gray);
  font-weight: var(--fw-regular);
}

/* remove last row border if you want it clean */
.tipologias-table tbody tr:last-child td {
  border-bottom: none;
}

/* center on small screens if user scrolls */
@media (max-width: 575.98px) {
  .tipologias-table thead th,
  .tipologias-table tbody td {
    padding: 8px 12px;
    white-space: nowrap; /* keep them on one line while scrolling */
  }
}
/* ==================== EUTAKURA SECTION (PARENT) ==================== */

.eutakura {
  padding: 80px 0;
  background-color: var(--color-white);
  font-family: var(--ff-main);
}

/* title */
.eutakura-title {
  font-size: 34px;
  color: var(--color-green);
  font-weight: var(--fw-light);
  margin-bottom: 26px;
}

.eutakura-title-highlight {
  font-family: var(--ff-seasons);
  font-size: 55px;
  font-style: italic;
  font-weight: var(--fw-regular);
}

/* text */
.eutakura-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-gray);
  margin-bottom: 14px;
}

/* image block (child) */
.eutakura-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
}

.eutakura-image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  background-color: #00e8f6; /* cyan placeholder like design */
  display: block;
}

.eutakura__left {
  padding-right: 60px;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .eutakura-title {
    margin-top: 10px;
  }

  .eutakura-image {
    min-height: 320px;
  }
}


.wpcf7-list-item label{
    display:flex;
    gap:10px;
}

.wpcf7-spinner{
	display:none;
}
.acceptance .wpcf7-list-item label{
	display: flex;
     gap: unset; 
    align-items: baseline;
}
.newsletter-input-wrapper{
    border-bottom:unset;
}
.newsletter-input-wrapper input{
    border-bottom: 1px solid var(--color-green);
}