:root {
  --bg: #030a16;
  --text: #ffffff;
  --muted: #ffffff;
  --accent: #00a2ff;
  --search-bg: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  color: var(--text);
  background-color: var(--bg);
}

.container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}





.site-header {
  background: #061019;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease-in-out;
}

.site-header.scrolled {
  background: #061619aa;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .top-header {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.site-header.scrolled .bottom-header {
  padding: 0.7rem 0;
  border-bottom: none;
}

.site-header.scrolled .bottom-header .container {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}

.site-header.scrolled .logo-sticky {
  display: flex;
  font-size: 1.2rem;
  flex-shrink: 0;
  opacity: 1;
}


.site-header.scrolled .logo-img {
  height: 32px;
}

.site-header.scrolled .nav-links {
  gap: 1.5rem;
  font-size: 0.85rem;
}

.site-header.scrolled .nav-links:last-of-type {
  margin-right: auto;
}

.site-header.scrolled .bottom-header .cta-buttons {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
}

.top-header {
  padding: 1rem 0;
  border-bottom: 1px solid #111d27;
  transition: all 0.5s ease-in-out;
  opacity: 1;
}

.bottom-header {
  padding: 0.8rem 0;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid #111d27;
}

.bottom-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-header .logo-sticky {
  display: none;
}

.bottom-header .cta-buttons {
  display: none;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
}


.logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: height 0.3s ease-in-out;
}

.logo-text-blue {
  color: #109bf5;
}

.logo-sticky {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.site-header.scrolled .logo-sticky {
  opacity: 1;
}





.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}


.nav-links a.has-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 0.35rem;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.8;
  vertical-align: middle;
}










.nav-item-dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e1e1e;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
  z-index: 1000;
  margin-top: 0.5rem;
}


.dropdown-menu a {
  display: block;
  color: #ffffff;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease;
}


.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


.nav-item-dropdown.active .dropdown-menu {
  display: block;
}


.has-arrow::after {
  content: ' ▾';
  font-size: 0.8rem;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.2s ease;
}


.nav-item-dropdown.active .has-arrow::after {
  transform: rotate(180deg);
}






.search-category-wrapper {
  position: relative;
  display: inline-block;
}


.search-category-wrapper .arrow-icon {
  transition: transform 0.2s ease;
}


.search-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: hsla(0, 0%, 100%, 0.623);
  min-width: 150px;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  z-index: 1000;
  margin-top: 0.5rem;
  list-style: none;
}


.search-dropdown-menu a {
  display: block;
  color: #1e1e1e;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease;
}


.search-dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


.search-category-wrapper.active .search-dropdown-menu {
  display: block;
}


.search-category-wrapper.active .arrow-icon {
  transform: rotate(180deg);
}





.cta-buttons {
  display: flex;
  gap: 1rem;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.bottom-header .cta-buttons {
  opacity: 0;
}

.site-header.scrolled .bottom-header .cta-buttons {
  opacity: 1;
}



.btn {
  border: 1px solid transparent;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.btn-login {
  background: transparent;
  border-color: #FF0000;
  color: var(--text);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FF0000;
}

.btn-register {
  background-color: #FF0000;
  color: #fff;
}

.btn-register:hover {
  background-color: #FF0000;
}




.hero-section {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("imagens/natura.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 15px, rgba(16, 155, 245, 0.05) 15px, rgba(16, 155, 245, 0.05) 16px),
    repeating-linear-gradient(-60deg, transparent, transparent 15px, rgba(16, 155, 245, 0.05) 15px, rgba(16, 155, 245, 0.05) 16px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(900px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}





.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.sub-headline {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
}




.search-container {
  display: flex;
  align-items: center;
  background: var(--search-bg);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  width: 100%;
  max-width: 800px;
  padding: 0.4rem 1.5rem 0.4rem 1rem;
}

.search-form {
  flex: 1;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}



.search-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}


.search-icon-btn:hover {
  opacity: 0.7;
}




.search-icon {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 0.75rem;
}

.search-input-wrapper input {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  padding: 0.6rem 0;
}

.search-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}





.category-dropdown {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
  padding: 0 0 0 1.2rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.95rem;
}




@media (max-width: 992px) {
  .nav-links {
    display: none;

  }
}

@media (max-width: 768px) {
  .search-container {
    flex-direction: column;
    border-radius: 16px;
    padding: 1rem;
    gap: 1rem;
  }

  .category-dropdown {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0 0 0;
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}






.gallery-preview-section {
  padding: 4rem 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  width: 100%;
}

.gallery-carousel-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.gallery-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.gallery-slide-item {
  flex: 0 0 auto;
  width: min(80vw, 900px);
  padding: 0 10px;
  height: clamp(300px, 45vh, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.gallery-slide-item:hover {
  opacity: 0.75;
}

.gallery-slide-item.active-slide {
  opacity: 1;
}


.gallery-slide-item:first-child {
  margin-left: calc(50% - min(40vw, 450px));
}

.gallery-slide-item:last-child {
  margin-right: calc(50% - min(40vw, 450px));
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-dots-container {
  width: 100%;
  max-width: min(80vw, 900px);
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: 1.5rem;
  margin-top: -3rem;
  z-index: 2;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  gap: 0.6rem;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  border-radius: 50px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #0a2133;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-dots .dot.active {
  background-color: #0a2133;
}

.gallery-action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-for-you {
  background-color: #041829;
  color: #ffffff;
  border: 1px solid #041829;
  padding: 0.6rem 2.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.85rem;
}

.btn-for-you:hover {
  background-color: #020d17;
}

.btn-explorar {
  background-color: #ffffff;
  color: #041829;
  border: 1px solid #b3b3b3;
  padding: 0.6rem 2.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.85rem;
}

.btn-explorar:hover {
  background-color: #f7f7f7;
  border-color: #888;
}

@media (max-width: 768px) {
  .gallery-slide-item {
    width: 90vw;
  }

  .gallery-slide-item:first-child {
    margin-left: calc(50% - 45vw);
  }

  .gallery-slide-item:last-child {
    margin-right: calc(50% - 45vw);
  }

  .carousel-dots-container {
    max-width: 90vw;
  }
}







.recent-uploads-section {
  background-color: #ffffff;
  color: #111;
  padding: 4rem 0;
  width: 100%;
}

.recent-container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
}

.header-titles h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
  color: #031526;
}

.header-titles p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.view-all-link {
  color: #031526;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.view-all-link:hover {
  text-decoration: underline;
}

.recent-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid-row {
  display: flex;
  gap: 1rem;
  height: 240px;
}

.grid-item:hover .type-icon {
  opacity: 1;
  background: hwb(0 100% 0% / 0.578);
}





.collections-section {
  padding: 4rem 0;
  background-color: #ffffff;
  color: #111;
}

.collections-container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.collection-card {
  border-radius: none;
  padding: 1.4rem;
  background-color: hwb(0 100% 0% / 0.578);
  border: none;
  box-shadow: 0 24px 70px rgba(15, 18, 27, 0.08);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 140px);
  gap: 0.2rem;
}

.collection-item {
  position: relative;
  border-radius: none;
  overflow: hidden;
  background-color: #ece4d8;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.collection-item:hover img {
  transform: scale(1.05);
}

.collection-item.media-trigger {
  cursor: pointer;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 10, 22, 0.58);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.collection-item.collection-more {
  cursor: pointer;
}

.collection-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 24px;
}

.collection-gallery-main {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  min-height: 320px;
  max-height: calc(85vh - 120px);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.collection-main-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.collection-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.collection-thumb {
  border: 1px solid #e6e2db;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  min-height: 100px;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.collection-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.collection-thumb.active {
  border-color: #111;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.collection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.collection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}










.col-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
 
.col-modal-overlay.show {
  visibility: visible;
  opacity: 1;
}
 

.col-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 22, 0.72);
  backdrop-filter: blur(8px);
}
 

.col-modal-box {
  position: relative;
  z-index: 2001;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 920px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: auto;
}
 
.col-modal-overlay.show .col-modal-box {
  transform: translateY(0) scale(1);
}
 

.col-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
 
.col-modal-close:hover {
  background: rgba(0, 0, 0, 0.16);
  color: #111;
}
 

.col-modal-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
 

.col-modal-image-wrap {
  background: #0d1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 380px;
}
 
.col-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 

.col-modal-details {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  max-height: 520px;
}
 

.col-modal-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
 
.col-modal-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8f4fe;
  color: #109bf5;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
 
.col-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.col-modal-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
 
.col-modal-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
 
.col-modal-author-btns {
  display: flex;
  gap: 8px;
}
 
.col-btn-follow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
}
 
.col-btn-follow:hover {
  background: #ebebeb;
}
 
.col-btn-profile {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
 
.col-btn-profile:hover {
  background: #333;
}
 

.col-modal-divider {
  height: 1px;
  background: #f0f0f0;
  margin-bottom: 16px;
}
 

.col-modal-meta {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 14px;
}
 
.col-modal-meta tr {
  border-bottom: 1px solid #f0f0f0;
}
 
.col-modal-meta td {
  padding: 7px 0;
  color: #888;
}
 
.col-modal-meta td:last-child {
  text-align: right;
  color: #111;
  font-weight: 500;
}
 

.col-modal-likes {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}
 

.col-modal-tags-section {
  margin-bottom: 16px;
}
 
.col-modal-tags-label {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px 0;
}
 
.col-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
 
.col-modal-tag {
  font-size: 11.5px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 3px 10px;
  color: #555;
}

.col-btn-entrar {
  width: 100%;
  padding: 13px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s;
}
 
.col-btn-entrar:hover {
  background: #333;
}
 

.col-modal-actions {
  display: flex;
  gap: 8px;
}
 
.col-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
 
.col-action-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
 
.col-action-btn.col-action-muted {
  opacity: 0.4;
  cursor: default;
}
 
.col-action-btn.col-action-muted:hover {
  background: #fff;
  border-color: #e0e0e0;
}
 
.col-like-btn.liked {
  color: #e53935;
  border-color: #f5c6c6;
}
 
.col-like-btn.liked svg {
  fill: #e53935;
  stroke: #e53935;
}
 

.col-modal-section {
  padding: 20px 28px;
  border-top: 1px solid #f0f0f0;
}
 
.col-modal-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0 0 14px 0;
}
 
.col-modal-thumbs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
 
.col-modal-thumbs-row::-webkit-scrollbar {
  height: 4px;
}
 
.col-modal-thumbs-row::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 2px;
}
 

.col-thumb {
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  background: #f0f0f0;
  transition: border-color 0.2s, transform 0.15s;
}
 
.col-thumb:hover {
  border-color: #111;
  transform: translateY(-2px);
}
 
.col-thumb.active {
  border-color: #109bf5;
}
 
.col-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 

.col-thumb-related {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #f0f0f0;
  position: relative;
  transition: border-color 0.2s, transform 0.15s;
}
 
.col-thumb-related:hover {
  border-color: #111;
  transform: translateY(-2px);
}
 
.col-thumb-related img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 

.col-thumb-star {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
 

.collection-card {
  cursor: pointer;
}
 
.collection-card:hover .collection-item img {
  transform: scale(1.04);
}
 

@media (max-width: 700px) {
  .col-modal-top {
    grid-template-columns: 1fr;
  }
 
  .col-modal-image-wrap {
    min-height: 220px;
    max-height: 280px;
  }
 
  .col-modal-details {
    max-height: none;
    padding: 20px;
  }
 
  .col-modal-section {
    padding: 16px 20px;
  }
}








.popular-images-section {
  padding: 4rem 0;
  background: #ffffff;
}

.popular-container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.popular-grid-item {
  grid-column: span 5;
}

.popular-grid-item:nth-child(n+5) {
  grid-column: span 4;
}
.popular-grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f0f0;
  min-height: 180px;
  max-height: 220px;
  cursor: pointer;
}

.popular-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popular-grid-item:hover img {
  transform: scale(1.08);
}

.popular-grid-item .type-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  color: hsl(0, 0%, 0%);
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.popular-grid-item:hover .type-icon {
  opacity: 1;
  background: hwb(0 100% 0% / 0.578);
}

.popular-videos-section {
  padding: 4rem 0;
  background: #ffffff;
}

.popular-videos-container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.popular-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.popular-videos-grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f0f0;
  aspect-ratio: 11 / 10; /* proporção paisagem fixa */
  min-height: unset;
  cursor: pointer;
}

.popular-videos-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popular-videos-grid-item:hover img {
  transform: scale(1.08);
}

.popular-videos-grid-item .video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.25s ease;
}

.popular-videos-grid-item:hover .video-overlay {
  background: rgba(0, 0, 0, 0.22);
}

.popular-videos-grid-item .play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.popular-videos-grid-item .play-btn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.popular-videos-grid-item .type-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #222;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popular-videos-grid-item:hover .type-icon{
  opacity: 1;
  background: hwb(0 100% 0% / 0.578);
}


@media (max-width: 1024px) {
  .popular-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .popular-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }
}

.grid-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f0f0f0;
}


.w-row1-1 {
  flex: 25;
}

.w-row1-2 {
  flex: 28;
}

.w-row1-3 {
  flex: 23.5;
}

.w-row1-4 {
  flex: 23.5;
}




.w-row2-1 {
  flex: 22;
}

.w-row2-2 {
  flex: 18;
}

.w-row2-3 {
  flex: 20;
}

.w-row2-4 {
  flex: 20;
}

.w-row2-5 {
  flex: 20;
}




.w-row3-1 {
  flex: 22;
}

.w-row3-2 {
  flex: 34;
}

.w-row3-3 {
  flex: 18;
}

.w-row3-4 {
  flex: 26;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.03);
}


.type-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #111;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  padding-bottom: 1rem;
}

.play-btn {
  margin-bottom: auto;
  margin-top: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}

.waveform {
  display: flex;
  gap: 3px;
  height: 24px;
  align-items: flex-end;
  padding: 0 1rem;
  width: 100%;
  justify-content: center;
}

.waveform span {
  width: 3px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}

.waveform span:nth-child(even) {
  height: 60%;
}

.waveform span:nth-child(odd) {
  height: 100%;
}

.waveform span:nth-child(3n) {
  height: 40%;
}

.waveform span:nth-child(4n) {
  height: 80%;
}

.waveform span:nth-child(5n) {
  height: 50%;
}

@media (max-width: 900px) {
  .grid-row {
    flex-wrap: wrap;
    height: auto;
  }

  .grid-item {
    flex: 1 1 45%;
    height: 240px;
  }
}

@media (max-width: 600px) {
  .grid-item {
    flex: 1 1 100%;
  }

  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}


.media-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 2rem;
}

.media-modal.show {
  visibility: visible;
  opacity: 1;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(3, 10, 22, 0.9);
  backdrop-filter: blur(10px);
}

.media-modal-content {
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.media-modal.show .media-modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: -40px;
  right: 0px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.modal-close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.media-modal-body {
  width: 100%;
  border-radius: 12px;
  overflow: auto;
  max-height: 85vh;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.modal-media-content {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  object-fit: contain;
}


.audio-modal-container {
  width: 100%;
  max-width: 600px;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audio-poster {
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.8;
}

.audio-player {
  width: 100%;
  margin: 0;
  border-radius: 0;
}


.grid-item.media-trigger {
  cursor: pointer;
}






.popular-music-section {
  padding: 4rem 0;
  background-color: #ffffff;
  color: #111;
}

.popular-music-container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}



.music-table {
  width: 100%;
  margin-top: 1.75rem;
}

.music-table-head {
  display: grid;
  grid-template-columns: 2.5fr 3fr 0.8fr 1.2fr 1fr;
  gap: 1rem;
  padding: 0 1rem 0.75rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #888;
  text-transform: uppercase;
}



.music-row {
  display: grid;
  grid-template-columns: 2.5fr 3fr 0.8fr 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.music-row:hover {
  background-color: #f9f9f9;
}

.music-row.playing {
  background-color: #f0f8ff;
}



.col-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.play-toggle-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: #f0f0f0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.play-toggle-btn:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}

.play-toggle-btn.active {
  background: #109bf5;
  color: #fff;
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.track-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 0.8rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



.col-wave {
  position: relative;
  display: flex;
  align-items: center;
}

.waveform-container {
  position: relative;
  width: 100%;
  cursor: pointer;
  height: 48px;
}

.waveform-canvas {
  width: 100%;
  height: 48px;
  display: block;
  border-radius: 4px;
}

.waveform-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(16, 155, 245, 0.15);
  border-radius: 4px;
  pointer-events: none;
  transition: width 0.1s linear;
}



.col-duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.duration-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
}

.duration-bpm {
  font-size: 0.75rem;
  color: #888;
}



.col-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.action-btn:hover {
  background: #f0f0f0;
  color: #111;
  transform: scale(1.1);
}

.like-btn.liked {
  color: #e53935;
}

.like-btn.liked svg {
  fill: #e53935;
  stroke: #e53935;
}

.download-btn:hover {
  color: #109bf5;
}

.share-btn:hover {
  color: #109bf5;
}



.col-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.rating-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
}

.star-rating {
  display: flex;
  gap: 1px;
}

.star {
  font-size: 1.05rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s, transform 0.1s;
  line-height: 1;
}

.star.active {
  color: #109bf5;
}

.star:hover {
  transform: scale(1.2);
}

.rating-count {
  font-size: 0.72rem;
  color: #999;
}



.hidden {
  display: none !important;
}



.music-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #031526;
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
  white-space: nowrap;
}

.music-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}




.share-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.share-modal.show {
  visibility: visible;
  opacity: 1;
}

.share-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.6);
  backdrop-filter: blur(6px);
}

.share-modal-box {
  position: relative;
  z-index: 1501;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  width: min(440px, calc(100% - 2rem));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-modal.show .share-modal-box {
  transform: scale(1);
}

.share-modal-box h3 {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.share-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.share-modal-close:hover {
  background: #f0f0f0;
  color: #111;
}

.share-link-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.share-link-row input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  color: #555;
  background: #f9f9f9;
  outline: none;
}

.btn-copy-link {
  background: #109bf5;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-copy-link:hover {
  background: #0b80ce;
}

.share-icons-row {
  display: flex;
  gap: 0.75rem;
}

.share-platform-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  color: #333;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.share-platform-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}


@media (max-width: 900px) {
  .music-table-head {
    display: none;
  }

  .music-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .col-wave {
    order: 3;
  }

  .col-duration {
    flex-direction: row;
    gap: 0.5rem;
    order: 2;
  }

  .col-options {
    order: 4;
  }

  .col-rating {
    align-items: flex-start;
    order: 5;
  }
}



.col-title {
  position: relative;
}

.volume-popup {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 500;
  animation: volumeFadeIn 0.18s ease;
}

@keyframes volumeFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.volume-popup-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  color: #555;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 110px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #109bf5;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 2px rgba(16, 155, 245, 0.25);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #109bf5;
  cursor: pointer;
  border: none;
}

.volume-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  min-width: 32px;
  text-align: right;
}

.volume-mute-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.volume-mute-btn:hover {
  color: #e53935;
  background: #ffeaea;
}





.sec-testimonials {
  background-color: #f0ebe2;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  color: #111;
}

.testi-wave-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.testi-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}


.testi-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #031526;
  margin: 0 0 2.5rem 0;
  line-height: 1.25;
  max-width: 340px;
}

.testi-stats {
  display: flex;
  gap: 3rem;
}

.stat-block .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #031526;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-block .stat-desc {
  font-size: 0.82rem;
  color: #666;
  max-width: 180px;
  line-height: 1.5;
}

.stat-block .stat-desc strong {
  font-weight: 700;
  color: #031526;
}


.testi-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.testi-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  max-width: 430px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(3, 21, 38, 0.08);
}

.testi-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.testi-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #109bf5;
}

.testi-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: #d8d8d8;
  font-family: Georgia, 'Times New Roman', serif;
  user-select: none;
}

.testi-text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
  margin: 0 0 1.5rem 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}


.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;     /* Garante que nada da imagem passe das bordas redondas */
  position: relative;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}


.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* CRUCIAL: Preenche o espaço sem distorcer as proporções da foto */
  object-position: center; /* Centraliza o foco da foto */
}



.testi-avatar .avatar-fallback {
  position: absolute;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  z-index: 1;
}


.testi-avatar img + .avatar-fallback {
  display: none;
}

.testi-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
}

.testi-author-role {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}



@media (max-width: 820px) {
  .testi-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testi-left h2 {
    max-width: 100%;
  }

  .testi-right {
    justify-content: flex-start;
  }

  .testi-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .testi-stats {
    gap: 2rem;
  }
}





.brands-strip {
  background-color: #e2ddd5;
  padding: 2.75rem 0;
  color: #111;
}

.brands-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
  text-align: center;
  margin: 0 0 1.75rem 0;
  letter-spacing: 0.01em;
}

.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.brand-item {
  font-size: 1.05rem;
  font-weight: 700;
  color: #888;
  letter-spacing: -0.02em;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: system-ui, -apple-system, sans-serif;
  transition: opacity 0.2s;
  user-select: none;
}

.brand-item:hover {
  opacity: 1;
}

.brand-amd {
  letter-spacing: 0.04em;
}



@media (max-width: 600px) {
  .brands-logos {
    gap: 1.5rem 2rem;
  }
}






.newsletter-strip {
  background-color: #109bf5;
  padding: 2rem 0;
  color: #ffffff;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-copy {
  flex: 1;
  min-width: 200px;
}

.nl-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 0.15rem;
}

.nl-heading {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nl-sub {
  font-size: 0.82rem;
  margin: 0;
  opacity: 0.85;
}

.nl-deco {
  flex: 0 0 auto;
  opacity: 0.7;
}

.nl-form {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
  max-width: 460px;
}

.nl-form-icon {
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nl-form input[type="email"] {
  border: none;
  outline: none;
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.88rem;
  color: #333;
  background: transparent;
  font-family: inherit;
}

.nl-form input[type="email"]::placeholder {
  color: #aaa;
}

.nl-form button[type="submit"] {
  background-color: #031526;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background-color 0.2s;
}

.nl-form button[type="submit"]:hover {
  background-color: #020d17;
}



@media (max-width: 820px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nl-deco {
    display: none;
  }

  .nl-form {
    max-width: 100%;
    width: 100%;
  }
}





.site-footer-main {
  background-color: #061019;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}



.footer-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3C!-- contorno simplificado de continentes --%3E%3Cpath d='M180 80 Q220 60 260 75 Q300 90 330 70 Q370 50 400 80 Q430 110 410 140 Q390 170 360 165 Q330 160 310 180 Q290 200 270 190 Q250 180 230 195 Q210 210 190 195 Q170 180 165 155 Q160 130 180 80Z'/%3E%3Cpath d='M420 90 Q460 70 520 85 Q580 100 620 80 Q660 60 700 90 Q740 120 730 160 Q720 200 690 210 Q660 220 640 200 Q620 180 590 190 Q560 200 540 185 Q520 170 500 180 Q480 190 460 175 Q440 160 430 135 Q420 110 420 90Z'/%3E%3Cpath d='M750 60 Q800 40 870 55 Q940 70 980 50 Q1020 30 1060 60 Q1100 90 1090 130 Q1080 170 1050 185 Q1020 200 990 185 Q960 170 940 190 Q920 210 895 195 Q870 180 855 200 Q840 220 815 205 Q790 190 775 165 Q760 140 750 60Z'/%3E%3Cpath d='M300 230 Q340 210 380 225 Q420 240 440 220 Q460 200 490 225 Q520 250 510 280 Q500 310 475 320 Q450 330 430 310 Q410 290 390 305 Q370 320 350 305 Q330 290 315 265 Q300 240 300 230Z'/%3E%3Cpath d='M900 200 Q940 180 980 195 Q1020 210 1050 190 Q1080 170 1110 200 Q1140 230 1130 265 Q1120 300 1090 310 Q1060 320 1040 300 Q1020 280 995 295 Q970 310 950 295 Q930 280 915 255 Q900 230 900 200Z'/%3E%3Cpath d='M1150 80 Q1190 60 1250 75 Q1310 90 1350 70 Q1390 50 1420 80 Q1440 100 1440 140 Q1440 180 1410 195 Q1380 210 1350 195 Q1320 180 1295 200 Q1270 220 1245 205 Q1220 190 1200 205 Q1180 220 1160 200 Q1140 180 1145 130 Q1150 80 1150 80Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 1;
}



.footer-top {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-link-blue {
  color: #109bf5 !important;
}

.footer-link-blue:hover {
  color: #5dbdff !important;
}


.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.01em;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-btn:hover {
  background: #109bf5;
  border-color: #109bf5;
  color: #ffffff;
}


@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 380px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}