:root {
  --primary-color: #86cb27;
  --primary-dark: #6fb01f;
  --text-color: #333;
  --text-light: #fff;
  --bg-dark: #2d3e33;
  --bg-light: #f9f9f9;
  --bg-brown: #ac6d40;
  --font-main: "Montserrat", sans-serif;
  --container-width: 1200px;
  --container-narrow: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 35px;
}

/* Header & Nav */
.main-header {
  background: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;  
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}


.logo img {
  height: 100px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  transition: 0.3s;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/index/desde arriba.JPG") center/cover no-repeat;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #87cb276a; /* #86cb27 with transparency */
  padding: 60px 40px;
  max-width: 1350px;
  text-align: center;
  color: white;
  border-radius: 6px;
}

.hero-card h1 {
  font-weight: 900;
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-card h1 span {
  font-weight: 900;
}

.hero-card p {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.btn-primary {
  background: #fff;
  color: #c55317; /* Specific reddish-orange from design */
  border: none;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Vivir en equilibrio */
.vivir-equilibrio {
  background: var(--bg-dark);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.section-icon {
  width: 210px;
  margin: 0 auto 30px;
  color: #fff;
}

.vivir-equilibrio h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: capitalize;
}

/* Typography Utilities */
.font-49-black {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 25px;
  line-height: 1.1;
}

.font-29-bold {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 29px;
  line-height: 1.3;
}

.font-29-regular {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 29px;
  line-height: 1.6;
}

.font-24-regular {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
}

.font-22-bold {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
}
.font-25-regular{
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.4;
}
.vivir-equilibrio .content p {
  margin-bottom: 30px;
  text-align: justify;
}

/* Media Section */
.media-section {
  background: var(--bg-dark);
  padding-bottom: 100px;
}

.media-section .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.video-container,
.gallery-container {
  flex: 1 1 450px;
  max-width: 100%;
  position: relative;
  padding: 4px;
}

.video-placeholder,
.gallery-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-caption,
.gallery-caption {
  background: rgba(45, 62, 51, 0.8);
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 30px;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ProMendoza Section */
.promendoza-section {
  background-image: url("img/index/fondo-banco-de-inversion.png");
  background-size: cover;
  background-position: center;
}
.container-promendoza{
  background-color: #ac6d40c5; /* Slightly more opaque background */
  padding: 60px 15px; /* Add horizontal padding for mobile */
}
.logo-promendoza {
  width: 50% !important;
  height: 50% !important;
  border-radius: 25px;
  object-fit: contain !important;
}
.logo-promendoza:hover {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  width: 50% !important;
  height: 50% !important;
  }
.promendoza-content {
  background-color: #ac6d409a;

}

.promendoza-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
}

.promendoza-title em {
  font-style: italic;
  font-weight: 900;
}
.seccion-links{
  background-color: var(--bg-brown);
  padding: 100px 50px;
}

.btn-promendoza {
  display: inline-block;
  background: #fff;
  color: #c55317;
  border: none;
  padding: 15px 45px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  width: fit-content;
  margin-bottom: 30px;
}

.btn-promendoza:hover {
  background: #c55317;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.promendoza-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}

/* News/Links Section */
.news-section {
  background: #c9a77d;
  padding: 60px 0;
  text-align: center;
}

.news-section h2 {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 42px;
  color: #333;
  margin-bottom: 30px;
}

.news-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Notas de Prensa Premium Styles */
.notas-seccion {
  background-color: #fcfcfc;
}

.nota-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.nota-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.nota-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.notacard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nota-card:hover .notacard-img {
  transform: scale(1.1);
}

.nota-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nota-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3e33;
  margin-bottom: 12px;
  line-height: 1.4;
}

.nota-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.nota-link {
  font-weight: 700;
  color: #c55317;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nota-link:hover {
  color: #a04212;
  gap: 8px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #bababa ;
  color: #101010;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  
}

.footer-logo {
  height: 120px;
  margin-bottom: 30px;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.contact-info p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.4;
}

.contact-form {
  background: #fff;
  padding: 25px 35px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  width: 100%;
  max-height: 500px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-weight: 700;
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: all 0.3s;
}

.form-group textarea {
  height: 80px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(134, 203, 39, 0.1);
}

.btn-submit {
  width: 100%;
  background: #c55317;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: #a04212;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 83, 23, 0.2);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.download-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 5px;
  transition: background 0.3s;
}

.download-item:hover {
  background: #e0e0e0;
}

.link-section{
text-align: center;
height: 600px;
background: rgba(45, 62, 51, 0.85);;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
padding: 50px 0;
}
.link{
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.link:hover{
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: all 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
  .promendoza-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .promendoza-image {
    min-height: 350px;
  }
  .promendoza-content {
    padding: 40px 30px;
  }
  .promendoza-title {
    font-size: 32px;
  }
  .promendoza-text {
    font-size: 18px;
  }
  .hero-card h1 {
    font-size: 35px;
  }
  .hero-card p {
    font-size: 20px;
  }

  /* Responsive Nav */
  .header-content {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    padding: 100px 40px;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .main-nav a {
    font-size: 18px;
  }
}

/* Projects Page Styles */
.hero-projects {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-projects-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/index/desde arriba.JPG") center/cover no-repeat;
}

.hero-projects-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 50, 17, 0.6); /* Dark green overlay */
}

.hero-projects-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.hero-projects-text {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-projects-text p {
  margin-bottom: 30px;
  line-height: 1.4;
}

.etapas-section {
  padding: 60px 50px;
  background-color: var(--bg-brown);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.header-divider {
  width: 80px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
}

.etapa-row {
  margin-bottom: 80px !important;
}

.etapa-text {
  padding-right: 50px;
}

.etapa-badge {
  display: inline-block;
  padding: 6px 15px;
  background-color: #87cb27;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
}

.etapa-badge.status-progress {
  background-color: #c55317;
}

.etapa-titulo {
  font-family: var(--font-main);
  font-size: 29px;
  font-weight: 700;
  text-transform: uppercase;
}

.etapa-desc {
  opacity: 0.9;
  line-height: 1.5;
}

.etapa-img-container {
  width: 70%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.etapa-img-container img {
  border-radius: 12px;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.etapa-img-container:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.etapa-img-container:hover img {
  transform: scale(1.05);
}

.shadow-premium {
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.shadow-button {
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary-alt {
  background: #c55317;
  color: #fff;
  border: none;
  padding: 18px 50px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-alt:hover {
  background: #fff;
  color: #c55317;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.etapas-visuals {
  position: relative;
  height: 500px;
  width: 100%;
}

.etapas-img{
  width: 60%;
  height: 50%;
}

.render-box {
  background: #fff;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: absolute;
  max-width: 80%;
  transition: transform 0.3s;
}

.render-box:hover {
  z-index: 3 !important;
  transform: scale(1.05);
}

.first-render {
  top: 0;
  right: 0;
  z-index: 2;
}

.second-render {
  bottom: 0;
  left: 0;
  z-index: 1;
}

.render-img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* Pro-Inversion Section Styles */
.pro-inversion-section {
  padding: 100px 0;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.pro-inversion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/index/imagenfondo4.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pro-inversion-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 62, 51, 0.85); /* Deep green overlay */
}

.pro-inversion-content {
  position: relative;
  z-index: 10;
}

.pro-inversion-content a {
  color: #fff;
  text-decoration: underline;
}

.font-20-regular {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

.font-42-black {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.2;
}
/*proyecto*/
.text-proyecto{
  text-align: justify;
  padding: 20px 35px;
}
/* Ubicacion Hero Detail Styles */
.ubicacion-hero-proyectos {
  padding: 120px 0;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ubicacion-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/index/desde arriba.JPG");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ubicacion-hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 50, 17, 0.65); /* Medium green overlay */
}

.ubicacion-hero-content {
  position: relative;
  z-index: 10;
}

/* Entorno and Obras Styles */
.entorno-obras-section {
  padding: 100px 40px !important;
  background-color: var(--bg-dark);
}

.entorno-obras-section ul li {
  margin-bottom: 12px;
}

/* Footer & Logo in Projects */
.footer-logo {
  object-fit: cover;
  height: 210px;
  margin-bottom: 30px;
  margin:auto;
}

/* Surroundings Characteristics Section Styles */
.surroundings-characteristics-section {
  padding: 120px 0;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.surroundings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/ubicacion/caracteristicas-de-entorno.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.surroundings-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 50, 17, 0.7); /* Deep green overlay */
}

.surroundings-content {
  position: relative;
  z-index: 10;
}

.surroundings-highlights {
  line-height: 1.8;
}

.btn-primary-white {
  background: #fff;
  color: #c55317; /* Same orange as other primary buttons */
  border: none;
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none !important;
}

.btn-primary-white:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive fixes for Projects */
@media (max-width: 991px) {
  .etapas-content {
    text-align: center;
  }
  .etapas-visuals {
    height: 400px;
    margin-top: 50px;
  }
  .hero-projects {
    height: 70vh;
  }
  .hero-projects-text p {
    font-size: 22px;
  }
  .btn-primary-alt {
    font-size: 20px;
    padding: 12px 30px;
  }
  .pro-inversion-section {
    padding: 60px 0;
  }
  .font-22-bold {
    font-size: 18px;
  }
  .ubicacion-hero-proyectos {
    padding: 80px 0;
  }
  .font-42-black {
    font-size: 32px;
  }
  .entorno-obras-section {
    padding: 60px 0;
  }
}


