body {
  margin: 0;
  font-family: sans-serif;
  background: #f6faff;
  color: #222;
  padding: 0;
}

.site-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1em;
  text-align: center;
}
/* end of body */ 




/* == HERO == */
.hero {
background: url('1200 1H.png') center center / cover no-repeat;
  text-align: center;
  padding: 2em 1em;
  color: #333;
}

.hero-content {
  background: rgba(255, 255, 255, 0.50); /* (255, 255, 255, 0.85)translucent white */
  display: inline-block;
  padding: 1.5em 1em;
  border-radius: 10px;
  max-width: 90%;
  margin: 0 auto;
  color: #222; /* dark text inside white block */
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1em;
}

.after-hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 10px auto;
}

.headline {
  font-size: 1.8em;
  font-weight: bold;
  margin: 0.2em 0;
}

.address-line {
  font-size: 1em;
  margin: 0;
}

.city {
  font-size: 1.5em;
  color: #000;
  margin-bottom: 0.5em;
}

.valor {
  font-size: 1.6em;
  font-weight: 500;
  color: #1a1a1a;  
  border: 2px solid #f4c542; /* gold border */
  padding: 0.5em 0.75em;     /*  1em 1.5em */
  border-radius: 16px; /* soft rounded edges */
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin: 2em auto;
  font-family: 'Georgia', serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

.tagline {
  font-size: 1em;
  font-style: italic;
  color: #444;
  margin-top: 0.5em;
}
/* end of hero */ 






/* == NAVIGATION == */
.section-nav {
  background-color: #004080;
  padding: 1em;
  overflow-x: auto;
}

.section-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-nav a {
  display: inline-block;
  padding: 0.5em 0.2em;  /* 0.5em 1em; */
  background-color: #fff;
  color: #004080;
  text-decoration: none;
  font-size: 0.9em;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.3s;
}

.section-nav a:hover {
  background-color: #e0e0e0;
}
/* end of navegation */ 











/* == DESCRICAO == */
#descricao h2,
#localizacao h2,
#galeria h2,
#preco h2,
#resumo h2,
#bonus h2,
#condicao-de-uso h2,
#links-uteis h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.5em;
}

#descricao {
  text-align: justify;
  margin-bottom: 2em;
  font-size: 1.2em;
}

.image-pair-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto;
  max-width: 920px;
  padding: 10px;
}
/* end of description */ 








/* === GALLERY STYLES === */
.gallery-placeholder {
  border: 3px solid #8B5A2B; /* mid-brown border */
  padding: 1em;
  margin: 2em auto;
  max-width: 720px;
  background: #fff;
  border-radius: 10px;
}

.thumbnail-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnail {
  width: 100px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: transform 0.2s;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.fullscreen-gallery {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
   display: none;
}

.fullscreen-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper {
  width: 100%;
  height: 90%;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
}

.close-gallery {
  color: white;
  text-align: center;
  padding: 1em;
  font-size: 1.2em;
  cursor: pointer;
  user-select: none;
}


/* === To contain the images on the placeholder === */
.visible-thumbnail {
  width: 100%;
  height: auto; /* <-- This preserves aspect ratio */
  object-fit: contain; /* Or "cover" if you prefer full fill */
  max-width: 300px; /* Optional: limit how big it grows */
  display: block;
  margin: 0 auto;
}

.hidden-thumb {
  display: none;
}

/* === end of GALLERY STYLES === */








/* == SWIPPER FOR IMAGE GALLERY == */
.gallery-swiper {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: block;
}
/* == end of swipper gallery == */



/* == WRAPPERS AND SWIPERS TO CONTAIN IMAGE == */
.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
/* end of wrappers and swipers to contain images */






/* == CLOSE GALLERY == */
.close-gallery {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 1rem;
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s;
}
/* == end of CLOSE GALLERY == */











/* == VIDEO GALLERY == */
#video-section {
  max-width: 700px;       /* limit max width */
  margin: 4em auto 6em; /* 4em auto 4em makes space between video and location */
  padding: 0 1em;
  text-align: center;
}

#video-section video {
  width: 90%;            /* fill container width */
  height: auto;           /* keep aspect ratio */
  border-radius: 8px;     /* optional rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
}

.fullscreen-video {
  position: relative;
}

.close-video {
  cursor: pointer;
  margin-top: 0.5em;
  color: #007BFF;
  font-weight: bold;
  user-select: none;
}

.video-text {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
  font-style: italic;
}

/* == end of VIDEO GALLERY == */










/* == INFO CARDS == */
.info-card {
  background: linear-gradient(to right, #ccebff, #99d6ff);
  border-left: 5px solid #99ccff;
  padding: 1em;
  margin: 1em auto;
  border-radius: 10px;
  max-width: 720px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  font-size: 1em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-card strong {
  font-size: 1.4em;
  color: #004d00;
}

/* INLINE ICONS */
.inline-icon {
  width: 30px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
}
/* == end of INFO CARDS == */






/* == LOCATION DO EDIFICIO == */
section p {
  font-size: 1.3em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1em;
  text-align: left;
}

#localizacao p:not(.location-highlight) {
  text-align: center;
}

.location-highlight {
  background: linear-gradient(to right, #d4fcd4, #a0e6a0);
  padding: 12px 18px;
  margin: 20px auto;
  text-align: center;
  font-weight: bold;
  border: 2px solid #8ccf8c;
  border-radius: 0;
  max-width: 600px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
/* end of LOCATION DO EDIFICIO */ 






/* == GPS IMAGE == */
.after-location-image {
  max-width: 400px;
  margin: 1em auto;
}

.gps-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* To make image big/small */
.gps-image-wrapper {
  text-align: center;
  margin: 40px auto;
  padding: 10px;
  max-width: 960px;
}

/* To make image big/small */
.gps-image-wrapper img.gps-image {
  display: inline-block;
  max-width: 100%;
  width: 500px; /* 400 Adjust this to make it smaller/larger */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

/* For the actual GPS */
.gps-map-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 10px;
  text-align: center;
}

/* Actual Map with Pin layout */
#mapa {
  padding: 20px;
  text-align: center;
  position: relative;
}

/* Container allows positioning pin */
.map-container {
  position: relative;   
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: fit-content;
}

/* Main map image */
.map-image {
  max-width: 400px; /* was 300 */
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-hint {
  text-align: center;
  margin-top: -10px;    /* pulls it up */
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

/* Overlay pin centered */
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: auto;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

/* Optional helper text */
.map-text {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
  font-style: italic;
}

/* Resizes the map */
#mapa > div {
  max-width: 600px;      /* or 720px to match site */
  margin: 0 auto 0.5em;  /* center horizontally + bottom margin */
  border-radius: 8px;
  overflow: hidden;
}
/* end of gps image */ 








  
/* == PRICE == */  
.info-card {
  background: linear-gradient(to right, #ccebff, #99d6ff); /* blue gradient */
  border-left: 5px solid #99ccff;
  padding: 0.05em; /* 1em */
  margin: 1em auto;
  border-radius: 10px;
  max-width: 720px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  font-size: 1em;
  color: #003366;
}

.destaque-preco {  /* this is the "atual preco" */
  background: linear-gradient(to right, #d4fcd4, #a0e6a0); /* green gradient */
  border: 2px solid #8ccf8c;
  padding: 22px 28px; /* 18px 24px; */
  margin: 20px auto;
  text-align: center;
  font-weight: bold;
  border-radius: 0;
  max-width: 600px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  font-size: 1.4em;
  color: #004d00;
}

.preco-extenso {
  display: block;
  margin-top: 0.4em;
  font-size: 0.9em;
  font-weight: normal;
}

.pago-dolares { 
  background: white;  /* linear-gradient(to right, #e8ebed, #e6e8eb); */
  border-left: white; /* 5px solid #bfbfbf; */
  padding: 1em;
  margin: 1em auto;
  border-radius: 10px;
  max-width: 720px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center; /* left; */
  font-size: 1em;
  color: #003366;
}
/* end of price */ 







/* == RESUMO == */  
#resumo-section {
  background-color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  max-width: 710px;     /* ✅ limit width */
  margin: 0 auto;       /* ✅ center section horizontally */
  
}

.resumo-items {
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ center horizontally */
  justify-content: center;
  gap: 35px;
}

.resumo-items div {
  font-size: 25px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* end of resume */  







/* == FOOTER: THIS CODE CONTROLS THE FOOTER == */
.footer {
  max-width: 720px;
  margin: 0 auto;
  background-size: 100% 150px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0057b8; /* Primary blue */
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px 15px 15px;
  font-size: 20px;
  line-height: 2;
  text-align: center;
}


.footer-container {
  display: block; /* change from flex to block */
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  color: #f29c1f; /* Accent orange */
  margin-bottom: 10px;
  font-weight: 700;
  border-bottom: 2px solid #f29c1f;
  padding-bottom: 5px;
  font-size: 1.1rem; /* This for the link topic size */
  text-align: center;
}

.footer-section p,
.footer-section ul {
   font-size: 18px;   /* 13px This is for Actual Links Size */
  line-height: 1.3;
  margin-bottom: 5px;
  text-align: center;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  text-align: center;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f29c1f;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  background-color: #e1e5ea;
  color: #0057b8;
  width: 32px;
  height: 32px;  /* 32px */
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 18px;
}

.social-icons a:hover {
  background-color: #f29c1f;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 15px;
  padding-top: 1px;   /* 5px */
  text-align: center;
  font-size: 12px;
  color: #cfd6e2;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-section ul li {
    text-align: center;
  }
}


/* Arrows styling -PROPOSTA DE COMPRA */
.arrowed::before {
  content: "▶▶ ";
  color: #25D366;  /* goldenrod;  */
  font-weight: bold;
  animation: arrowBlink 6s infinite; /* 6s cycle: 5s steady + 1s blink */
}

.arrowed::after {
  content: " ◀◀";
  color: #25D366;  /* goldenrod;  */
  font-weight: bold;
  animation: arrowBlink 6s infinite;
}

/* Smooth fade blink animation */
@keyframes arrowBlink {
  0%, 80%, 100% { opacity: 1; } /* visible most of the time */
  85%, 95% { opacity: 0; }      /* fade out briefly */
}
/* end of Arrows styling -PROPOSTA DE COMPRA */




/* Whatsapp controls */
.whatsapp-line {
  text-align: center;
}
    
  .whatsapp-footer-link {
  color: #25D366;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.whatsapp-footer-link:hover {
  opacity: 0.8;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}
  
  
@media (max-width: 600px) {
  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}  
/* end of Whatsapp controls */


/* END OF FOOTER */



/* Outer wrapper COUNTER: full width on mobile, limited on desktop */

.counter-bar-wrapper {
  background-color: #0000; /* Black bar background */
  width: 100%; /* Use 100% instead of 100vw for better scrollbar handling */
  /* Remove margin-left and margin-right as 100% width handles full-bleed within the parent */
  box-sizing: border-box;
  padding: 0.5em 0;
  overflow-x: hidden; /* Prevent horizontal scrollbar if any content overflows */
}

/* Inner content: same width as footer max-width */
.counter-bar {
  max-width: 960px; /* Same as footer content */
  margin: 0 auto; /* Center it */
  text-align: center; /* Center counter */
}

.counter-bar img {
  height: 18px; /* Small number */
  width: auto; /* Keep ratio */
  max-width: 100%; /* Ensure images don't exceed their parent's width */
}

/* end of COUNTER */


