/* reset básico */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "adobe-caslon-pro", serif;
  background: #f3f5f7;
  color: #111;
  margin: 0;
  padding: 0;
  height: 100%;
}
/* header */
.header {
  padding: 0px 0;
  background: transparent;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  width: 100%;
}
.header .container {
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  height: 50px;
  width: auto;
  display: block;
  z-index: 2;
  margin-top: 10px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-icon {
    height: 30px;
    margin-top: 8px;
  }
  
  .header .container {
    padding: 0 12px;
  }
  
  .logo {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    height: 25px;
    margin-top: 6px;
  }
  
  .header .container {
    padding: 0 8px;
  }
}
/* NAV */
.navigation {
  top: 10px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 16px;
  border-radius: 14px;
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(16,24,40,0.06);
  z-index: 2;
}

/* expande levemente a barra */
.navigation:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 26px rgba(16,24,40,0.10);
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: rgb(44, 95, 93);
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.26);
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 8px;
  transition: transform 180ms cubic-bezier(.2,.9,.3,1), color 160ms;
  transform-origin: center bottom;
}
.nav-link[data-image] {
  opacity: 0.9;
}

/* botão cresce */
.nav-link:hover {
  transform: translateY(-4px) scale(1.1);
  color: #061022;
}

/* marker-line (efeito vidro) */
.marker-line {
  position: absolute;
  bottom: 6px;
  left: 0;
  height: 10px;
  width: 60px;
  border-radius: 999px;
  pointer-events: none;
  transition: transform 260ms cubic-bezier(.2,.9,.3,1), width 260ms, left 260ms;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
  box-shadow: 0 6px 18px rgba(8,20,40,0.08), inset 0 1px 0 rgba(255,255,255,0.45);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.18);
  transform: translateX(0);
}

/* brilho sutil */
.marker-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* responsivo */
@media (max-width: 768px) {
  .navigation { 
    gap: 12px; 
    padding: 8px 10px; 
  }
  .nav-link { 
    font-size: 14px; 
    padding: 4px 6px;
  }
}

@media (max-width:640px){
  .container { padding: 0 12px; }
  .navigation { 
    gap: 8px; 
    padding: 6px 8px; 
  }
  .nav-link { 
    font-size: 12px; 
    padding: 4px 5px;
  }
}
.hero {
  top: 0;
  height: 71vh;
  width: 100%;
  background-image: url('./images/cell-bink.gif');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: left;
  z-index: 1;
 
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: "adobe-caslon-pro", serif;
font-style: normal;
  font-size: 500%;
  font-weight: 400;
  color: white;
  text-align: left;
  line-height: 1.2;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  margin-left: 40px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
    margin-left: 20px;
    margin-top: 100px;
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 95, 93, 0.6);
  z-index: 1;
  opacity: 0.4;
}
.about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  margin-top: 350px;
  position: relative;
  overflow: hidden;
  background-color: #2c5f5d;
  z-index: 1;
}

.about-us-content {
  width: 100%;
  max-width: 1000px;
  padding: 0 40px;
  z-index: 1;
  text-align: left;
}
.about-us-background {
  position: absolute;
  top: 40px;
  background-size: 100%;
  right: 60%;
  bottom: 0;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}
.about-us-background .background-svg {
    width: auto;
    height: 100%;
  }
.section-title {
    font-size: 2rem;
  
  }
  .section-subtitle {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 1.2rem;
  color: #c94065;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-title {
 font-family: "adobe-caslon-pro", serif;
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-text {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}
.features-section {
  background-color: #2c5f5d;
  padding: 80px 0;
  margin-left: -450px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  min-height: 200px;
  justify-content: flex-start;
}


.feature-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}

.feature-title {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin: 0 0 30px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel styles for features */
.features-carousel{position:relative;display:flex;align-items:center}
.features-track{display:flex;gap:25px;overflow:hidden;padding:10px 6px}
.features-track .track-inner{display:flex;align-items:stretch}
.features-track .track-inner > *{flex:0 0 auto}

@keyframes carousel-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.features-carousel .features-track{width:100%}
.features-track::-webkit-scrollbar{height:10px}
.features-track::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.2);border-radius:10px}
.feature-card{flex:0 0 260px;background:transparent;padding:24px;border-radius:12px;scroll-snap-align:center;box-shadow:0 6px 18px rgba(0,0,0,0.15);backdrop-filter: blur(4px)}
.feature-card .feature-icon{margin-top:12px}
.carousel-btn{display:none}

@media (max-width:900px){
  .feature-card{flex:0 0 220px}
}

@media (max-width:600px){
  .features-track{gap:16px;padding:8px}
  .feature-card{flex:0 0 80%;min-width:220px}
}

/* Responsive Features */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }

  .feature-card {
    padding: 25px 15px;
    min-height: 180px;
  }

  .feature-icon {
    margin-bottom: 15px;
  }

  .feature-icon svg {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 1rem;
    min-height: 45px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-section {
    padding: 60px 0;
  }
}
.team-section {
  padding: 80px 0;
  background-color: #fff;
}

.team-section .container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-member-card {
  border-radius: 15px;
  padding: 20px;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: transparent;
}

.member-photo-container {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: none;
}

.member-photo {
  width: 100%;
  height: auto;
  display: block;
}

.member-name {
  font-family: "adobe-caslon-pro", serif;
  font-size: 1.5rem;
  color: #0b3443;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

.member-description {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  text-align: left;
}


@media (max-width: 768px) {
  .team-section .container {
    flex-direction: column;
    align-items: center;
  }

  .team-member-card {
    align-items: flex-start;
  }
}

.footer {
  background-color: #fff;
  padding: 40px;
  position: relative;
  
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background-color: #e0e0e0;
}

.footer-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 40px;
 
  
}


.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.footer-navigation {
  display: flex;
  gap: 30px;
  margin-left: -100px;
}

.footer-nav-link {
  font-family: 'Times New Roman', serif;
  font-size: 1rem;
  color: #4c4c4c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #0b3443;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-text {
  line-height: 1.2;
  text-align: right;
}

.profile-name {
  font-family: 'Times New Roman', serif;
  font-size: 1.5rem;
  color: #0b3443;
  font-weight: normal;
}

.profile-role {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #4c4c4c;
}

.profile-photo-container {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-container {
  width: 40px;
  height: 40px;
}

.footer-copyright {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #4c4c4c;
}

.rights-reserved {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: #4c4c4c;
}
.footer .container {
  max-width: 1000px; /* Remove qualquer limitação de largura */
  width: 100%; /* Ocupa 100% da largura disponível */
  padding: 0 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    gap: 30px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-text {
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 5px;
  }
  }
  .image-column {
    flex: 1;
    background-image: url('./images/binkgif2.gif');
    background-size: cover;       /* cobre toda a área */
    background-position: right;  /* centraliza o gif */
    background-repeat: no-repeat; /* evita repetição */
    height: 100vh;                /* preenche toda a tela verticalmente */
    max-width: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5;
  }
  .text-column {
    flex: 1;
    max-width: 700px;
    z-index: 3;               /* acima do gif se necessário */
    background: transparent;
    margin-left: 60px; 
    margin-top: 60px;
  }
  .collagen-section {
    position: relative;       /* necessário para posicionamento absoluto da image-column */
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: px 40px;
    gap: 40px;
    background-color: #f7f7f7;
    flex-wrap: nowrap;        /* evita que a coluna do gif caia abaixo em larguras maiores */
    overflow: visible;        /* permite que o gif 'sangre' fora da seção */
    min-height: 100vh;        /* opcional: faz a seção ocupar a altura da tela */
    padding-right: 0px;     /* espaço para o bloco do gif (ajuste conforme a largura abaixo) */
  }
  
  .cell-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .sub-highlight {
    font-size: 1.5rem;
    color: #255c52;
  }
  .highlight-title {
   font-family: "adobe-caslon-pro", serif;
    font-size: 4 rem;
    color: #2c5f5d;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
  }


/* Estilos únicos de styles2.css */
.image-column {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  background-image: url('./images/binkgif2.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  border-radius: 8px;
}

.text-column {
  flex: 1;
  max-width: 700px;
  z-index: 3;
  background: transparent;
  margin-left: 60px;
  margin-top: 60px;
}

.collagen-section {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 40px;
  gap: 40px;
  background-color: #f7f7f7;
  flex-wrap: nowrap;
  overflow: visible;
  min-height: 100vh;
  padding-right: 0px;
}

.cell-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-highlight {
  font-size: 1.5rem;
  color: #255c52;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 10px 16px;
  border: none;
  text-decoration: none;
  color: #ffffff;
  background-color: #255c52;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #1e4a42;
}

.button.filled {
  background-color: #1e4a42;
}

/* Responsividade para collagen-section e image-column */
@media (max-width: 768px) {
  .collagen-section {
    flex-direction: column;
    padding: 40px 20px;
    padding-right: 20px;
  }

  .text-column,
  .image-column {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 300px;
    background-position: center;
    margin-top: 20px;
    pointer-events: auto;
  }

  .button-group {
    justify-content: flex-start;
  }
}

/* Layout específico para Biotintas: split vertical left/right */
.collagen-section.biotintas-layout { display:flex; gap:40px; align-items:flex-start; width:100%; max-width:1100px; margin: 80px auto 0 auto; position:relative; }
.biotintas-left { flex: 1 1 60%; }
.biotintas-right { flex: 0 0 35%; align-self:flex-start; position:sticky; top:24px; height:fit-content; padding-left:40px; border-left:1px solid rgba(0,0,0,0.08); }
.biotintas-right::before { content:''; position:absolute; left:0; top:-80px; bottom:-500px; width:1px; background:rgba(0,0,0,0.08); }

.separator { border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 20px 0; }

/* Separador antes de Arquivos */
.biotintas-left h3 { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08); }

.files-list { display:flex; flex-direction:column; gap:12px; margin-top:20px; }
.file-button { display:inline-block; padding:10px 14px; background:#255c52; color:#fff; border-radius:8px; text-decoration:none }
.file-button:hover { background:#1e4a42 }

.contact-button { display:inline-block; margin-top:18px }

/* Inlay de vídeo responsivo para Biotintas */
.video-inlay { margin-top: 20px; }
.video-title { font-family: "adobe-caslon-pro", serif; font-size: 1.1rem; margin-bottom: 10px; color: #255c52; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Inlay do Google Forms (embed responsivo) */
.google-form-inlay { margin-top: 20px; }
.google-form-wrap { position: relative; padding-bottom: 120%; height: 400px; width: 800px; overflow: hidden; border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.google-form-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Frasco container com retângulo branco e imagem sangrando */
.frasco-container { position: relative; margin-bottom: 400px; }
.frasco-container::after { content: ''; position: absolute; top: 40px; left: 0; right: 0; height: 250px; background: #ffffff; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 0; }
.frasco-image { position: absolute; z-index: 1; display: block; max-width: 100%; height: auto; margin: 0 auto; top: -300px; }

@media (max-width: 900px){
  .biotintas-layout{flex-direction:column}
  .biotintas-right{position:relative;top:auto;flex:1 1 auto}
}