/*
Theme Name: EcoCannabis Theme
Theme URI: https://ecocannabis.com.br
Author: EcoCannabis
Author URI: https://ecocannabis.com.br
Description: Tema editável para EcoCannabis.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecocannabis
*/
:root {
  --forest: #223A2C;
  --forest-deep: #17281E;
  --cream: #F7F4EC;
  --sage: #E6EADD;
  --gold: #C7A046;
  --gold-deep: #9C7B2E;
  --ink: #232420;
  --ink-soft: #5B5F55;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif {
  font-family: 'Fraunces', serif;
}

/* Header */
header {
  background: var(--forest);
  padding: 22px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: underline;
}

.logo-mark {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 6px;
  line-height: 1;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--gold);
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: #E9E6DA;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.92;
  transition: opacity .2s ease;
}

nav a:hover {
  opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 640px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 64px;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 26px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
}

h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.08;
  color: var(--forest-deep);
  max-width: 560px;
  letter-spacing: -0.5px;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.lede {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
}

.cta-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  background: var(--forest-deep);
  color: var(--cream);
  border: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(23, 40, 30, 0.2);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.trust-line {
  font-size: 13px;
  color: var(--ink-soft);
}

.trust-line strong {
  color: var(--forest-deep);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 64px 88px 64px 72px;
}

.photo-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  flex-shrink: 0;
}

.photo-outline {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gold);
  border-radius: 48% 52% 40% 60% / 42% 48% 52% 58%;
  transform: translate(20px, -20px);
  z-index: 1;
}

.photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 42% 58% 36% 64% / 48% 42% 58% 52%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 60px -30px rgba(23, 40, 30, 0.3);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leaf-deco {
  position: absolute;
  left: -58px;
  bottom: -28px;
  width: 140px;
  height: 230px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

.leaf-deco-subtle {
  position: absolute;
  left: -35px;
  bottom: -20px;
  width: 80px;
  height: 120px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.link-discreet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  font-size: 16.5px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.link-discreet:hover {
  color: var(--gold);
  gap: 12px;
}

.veins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}

/* Science Section */
.science {
  position: relative;
  background: #FBFAF4;
  padding: 130px 40px 110px;
  overflow: hidden;
  border-top: 1px solid rgba(34, 58, 44, 0.08);
}

.science-veins {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.science-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow.center {
  justify-content: center;
  margin: 0 auto 22px;
}

.eyebrow.center::before {
  display: none;
}

h2.science-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 42px;
  color: var(--forest-deep);
  letter-spacing: -0.3px;
  margin-bottom: 36px;
}

.science-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 22px;
}

.science-text:last-of-type {
  margin-bottom: 0;
}

/* Who Section */
.who {
  position: relative;
  background: #EDF0E3;
  padding: 120px 40px 130px;
}

.who-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.who-header {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}

.who-header .science-title {
  margin-bottom: 22px;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.who-card {
  border-radius: 20px;
  padding: 48px 48px 48px;
}

.who-card.dark {
  background: linear-gradient(155deg, #22392C 0%, #182A20 100%);
}

.who-card.light {
  background: #FDFCF8;
  box-shadow: 0 30px 60px -40px rgba(23, 40, 30, 0.25);
}

.who-card-label {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 28px;
}

.who-card.dark .who-card-label {
  color: var(--gold);
}

.who-card.light .who-card-label {
  color: var(--forest-deep);
}

.who-list {
  list-style: none;
}

.who-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  font-size: 16px;
  border-top: 1px solid;
}

.who-card.dark .who-list li {
  border-color: rgba(247, 244, 236, 0.14);
  color: #EDEAE0;
}

.who-card.light .who-list li {
  border-color: rgba(34, 58, 44, 0.1);
  color: var(--ink);
}

.who-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* EcoCannabis PET Section */
.pet {
  position: relative;
  background: linear-gradient(165deg, #274B34 0%, #1B3325 55%, #14251A 100%);
  padding: 120px 40px 0;
  overflow: hidden;
}

/* Legal Pages (Terms and Privacy) */
.legal-page {
  padding: 120px 24px;
  background-color: var(--cream);
  min-height: 60vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h1 {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.legal-container h2 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-container p, .legal-container ul {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.legal-container ul {
  padding-left: 24px;
}

.logo {
  text-decoration: none;
}

.pet-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.pet .eyebrow.center {
  color: var(--gold);
}

.pet-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 42px;
  color: #F7F4EC;
  margin-bottom: 26px;
  letter-spacing: -0.3px;
}

.pet-text {
  font-size: 17px;
  line-height: 1.75;
  color: #CBD6C6;
  margin-bottom: 44px;
}

.pet-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(199, 160, 70, 0.55);
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pet-cta:hover {
  background: rgba(199, 160, 70, 0.15);
  transform: translateY(-2px);
  border-color: var(--gold);
}

.gallery {
  margin-top: 76px;
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 34s linear infinite;
  padding-bottom: 56px;
}

.gallery:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  position: relative;
  width: 280px;
  height: 340px;
  border-radius: 28px 28px 0 0;
  flex-shrink: 0;
  overflow: hidden;
}

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

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Why Choose Section */
.why {
  background: #FBFAF4;
  padding: 120px 40px 130px;
}

.why-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid rgba(34, 58, 44, 0.08);
  border-radius: 18px;
  padding: 38px 34px;
  box-shadow: 0 10px 30px -20px rgba(23, 40, 30, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(23, 40, 30, 0.25);
}

.why-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 22px;
}

.why-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  color: var(--forest-deep);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Mission / Purpose Section */
.mission {
  position: relative;
  background: #EDF0E3;
  padding: 130px 40px;
  overflow: hidden;
}

.mission-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mission-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--forest-deep);
  letter-spacing: -0.3px;
  margin-bottom: 40px;
}

.mission-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.mission-text:last-child {
  margin-bottom: 0;
}

/* Team Section */
.team {
  background: linear-gradient(165deg, #1E3527 0%, #16281D 60%, #101E16 100%);
  padding: 100px 40px;
}

.team-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.team-header .eyebrow.center {
  color: var(--gold);
}

.team-header .science-title {
  color: #F7F4EC;
  margin-bottom: 0;
}

.team-row {
  max-width: 1160px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-row:last-of-type {
  margin-bottom: 0;
}

.team-row.reverse .team-copy {
  order: 2;
}

.team-row.reverse .team-photo {
  order: 1;
}

.team-copy .role {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #93A78D;
  margin-bottom: 20px;
}

.team-copy .name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 42px;
  color: var(--gold);
  line-height: 1.12;
  margin-bottom: 26px;
}

.team-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: #D8DED2;
  max-width: 440px;
}

.team-photo {
  position: relative;
  display: flex;
}

.team-row:not(.reverse) .team-photo {
  justify-content: flex-end;
}

.team-row.reverse .team-photo {
  justify-content: flex-start;
}

.team-photo-backdrop {
  position: absolute;
  top: 26px;
  width: 72%;
  height: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.team-row:not(.reverse) .team-photo-backdrop {
  left: auto;
  right: 8%;
}

.team-row.reverse .team-photo-backdrop {
  left: 8%;
}

.team-photo-frame {
  position: relative;
  width: 74%;
  aspect-ratio: 3/3.75;
  border-radius: 220px 220px 20px 20px;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(160deg, #96A985 0%, #56694A 55%, #2A3B22 100%);
}

.team-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Specialists Section */
.specialists {
  background: #FFFFFF;
  padding: 120px 40px 130px;
}

.specialists-header {
  text-align: center;
  margin-bottom: 76px;
}

.specialists-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.spec-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 26px;
  overflow: hidden;
  background: linear-gradient(150deg, #B9C7A5 0%, #6C8259 60%, #223A2C 100%);
  box-shadow: 0 0 0 5px #FBFAF4, 0 0 0 6px rgba(199, 160, 70, 0.35);
}

.spec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spec-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  color: var(--forest-deep);
  margin-bottom: 10px;
}

.spec-role {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 230px;
  margin: 0 auto;
}

/* Partners Section */
.partners {
  background: #EDF0E3;
  padding: 120px 0 130px;
}

.partners-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 76px;
  padding: 0 40px;
}

.partners-mask {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}

.partners-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollLeft 26s linear infinite;
}

.partners:hover .partners-track {
  animation-play-state: paused;
}

.partner-card {
  width: 220px;
  height: 110px;
  flex-shrink: 0;
  background: #FDFCF8;
  border-radius: 16px;
  box-shadow: 0 20px 40px -30px rgba(23, 40, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.partner-card img {
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.partner-text-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: #4B5B48;
  letter-spacing: 0.5px;
}

/* Footer Section */
footer {
  background: #141F17;
  padding: 90px 64px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
}

.footer-brand .logo {
  align-items: center;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #AAB4A5;
  max-width: 340px;
}

footer h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  color: #F0EDE1;
  margin-bottom: 24px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

footer ul a {
  color: #AAB4A5;
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.2s ease;
}

footer ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  gap: 36px;
}

.footer-bottom a {
  color: #8B9587;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #D8DED2;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  header {
    padding: 20px 32px;
    flex-direction: column;
    gap: 16px;
  }
  
  nav {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero-copy {
    padding: 48px 32px;
  }
  
  .hero-visual {
    padding: 48px 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  .who-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-row, .team-row.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .team-row.reverse .team-copy {
    order: 1;
  }
  
  .team-row.reverse .team-photo {
    order: 2;
  }

  .team-photo {
    justify-content: center !important;
  }
  
  .team-photo-frame {
    width: 280px;
  }

  .specialists-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 16px 20px;
  }
  nav {
    gap: 16px;
  }
  nav a {
    font-size: 13.5px;
  }

  /* Reduce huge paddings on mobile */
  .science, .who, .pet, .why, .mission, .team, .specialists, .partners {
    padding: 60px 20px !important;
  }
  
  /* Hero adjustments */
  .hero-copy {
    padding: 40px 20px 20px;
  }
  .hero-visual {
    padding: 20px;
  }
  .photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  h2.science-title, .pet-title, .mission-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  /* Grids and gaps */
  .why-grid, .who-grid, .specialists-grid, .team-row, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px !important;
  }
  
  .team-header {
    margin-bottom: 32px !important;
  }
  .who-header, .why-header {
    margin-bottom: 40px !important;
  }
  
  /* Buttons and CTAs */
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }
  .btn-primary {
    justify-content: center;
  }
  .link-discreet {
    justify-content: center;
  }

  /* Footer adjustments */
  footer {
    padding: 60px 20px 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
}

/* --- Interações e Efeitos 3D Melhorados --- */

/* 1. Animações de Entrada ao Rolar (Scroll-driven suaves) */
@keyframes fade-in-up-3d {
  0% {
    opacity: 0;
    transform: perspective(1200px) translateY(60px) rotateX(15deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: perspective(1200px) translateY(0) rotateX(0deg) scale(1);
  }
}

.who-card, .why-card, .spec-card, .team-photo, .science-inner, .mission-inner {
  animation: fade-in-up-3d linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 30%;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* 2. Efeito Parallax Suave no Hero ao Rolar */
@keyframes hero-parallax {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(100px) scale(0.95);
    opacity: 0.5;
  }
}

.hero-visual .photo-wrap {
  animation: hero-parallax linear both;
  animation-timeline: scroll(root);
  animation-range: 0 100vh;
  transform-style: preserve-3d;
}

/* 3. Efeitos 3D no Hover (Mouse passando por cima) */

/* Cards pulando e girando levemente no hover */
.who-card:hover, .why-card:hover, .spec-card:hover {
  transform: perspective(1000px) translateY(-12px) rotateX(4deg) rotateY(-4deg) scale(1.03) !important;
  box-shadow: -10px 20px 40px rgba(199, 160, 70, 0.15), 0 20px 40px rgba(34, 58, 44, 0.2) !important;
  z-index: 10;
}

/* Botões com efeito de pulsar e flutuar */
.btn-primary, .pet-cta, .link-discreet {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-primary:hover, .pet-cta:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 15px 25px rgba(34, 58, 44, 0.3), 0 0 15px rgba(199, 160, 70, 0.4) !important;
}

/* Links do menu com efeito de preenchimento ou brilho */
nav a {
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav a:hover::after {
  width: 100%;
}

/* Imagem do Hero flutuando no hover */
.photo-frame {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.photo-wrap:hover .photo-frame {
  transform: perspective(1000px) translateZ(40px) rotateX(2deg) rotateY(-4deg) !important;
}
.photo-wrap:hover .photo-outline {
  transform: translateZ(-10px) translate(10px, -10px) !important;
  border-color: var(--gold-deep);
}
.photo-outline {
  transition: all 0.5s ease;
}

/* Logos dos parceiros com hover */
.partner-card {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.partner-card:hover {
  transform: scale(1.1) translateY(-5px);
}

/* Fotos da equipe no hover */
.team-photo-frame {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-photo:hover .team-photo-frame {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
