@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --color-orange: #FF5E14; /* Laranja vibrante */
  --color-mango: #F24E1E; /* Vermelho manga */
  --color-yellow: #FFC700; /* Amarelo Banto */
  
  /* Neutrals */
  --color-black: #0D0D0D;
  --color-dark-gray: #2D2D2D;
  --color-gray: #8F8F8F;
  --color-light-gray: #EFEFEF;
  --color-white: #FFFFFF;
  --color-off-white: #F8F8F8;

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basic Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-off-white);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Utilities */
.text-center { text-align: center; }
.text-orange { color: var(--color-orange); }
.text-mango { color: var(--color-mango); }



.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-dark-gray);
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.bg-black { background-color: var(--color-black); color: var(--color-white); }
.bg-white { background-color: var(--color-white); }
.bg-gray { background-color: var(--color-light-gray); }
.bg-yellow { background-color: var(--color-yellow); color: var(--color-black); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-mango);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 94, 20, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-black);
  color: var(--color-black);
}

.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-light-gray);
  transition: var(--transition-fast);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}

.navbar-logo span {
  color: var(--color-orange);
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-orange);
  transition: var(--transition-fast);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-white);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

@keyframes artFloat {
  0% { transform: scale(1) translateY(0); filter: hue-rotate(0deg) saturate(1); }
  50% { transform: scale(1.05) translateY(-20px); filter: hue-rotate(15deg) saturate(1.2); }
  100% { transform: scale(1) translateY(0); filter: hue-rotate(0deg) saturate(1); }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--color-dark-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  height: 70vh;
  background-color: var(--color-yellow);
  z-index: 0;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/* Services / Pilares */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-mango);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Highlights (Revista & Loja) */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.highlight-card {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  color: var(--color-white);
  text-decoration: none;
}

.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index: 1;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
  z-index: 0;
}

.highlight-content {
  position: relative;
  z-index: 2;
}

.highlight-card:hover .highlight-bg {
  transform: scale(1.05);
}

/* Portfolio Preview */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition-fast);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--color-white);
  min-width: 240px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  z-index: 100;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-light-gray);
}

.dropdown-content a {
  color: var(--color-black);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-content a:hover {
  background-color: var(--color-off-white);
  color: var(--color-orange);
  padding-left: 24px;
}

.nav-item-dropdown:hover .dropdown-content {
  display: block;
  animation: dropFade 0.3s ease;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Objetos Geométricos Flutuantes (Baseados em Imagens) */
.floating-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: floatObj 8s ease-in-out infinite alternate;
}

.shape-1-css {
  top: 15%;
  left: 8%;
  width: 150px;
  height: 150px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  animation-duration: 9s;
}

.shape-2-css {
  bottom: 10%;
  left: 15%;
  width: 90px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}
.shape-2-top {
  width: 90px;
  height: 45px;
  background-color: #11A0A0; /* Teal/Verde água */
  border-radius: 0 0 45px 45px;
}
.shape-2-bottom {
  width: 90px;
  height: 45px;
  background-color: var(--color-orange);
  border-radius: 45px 45px 0 0;
}

.shape-3-css {
  top: 30%;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 6px;
  animation-duration: 14s;
  animation-delay: 1s;
}
.shape-3-left {
  width: 35px;
  height: 70px;
  background-color: #B82A81; /* Magenta/Roxo */
  border-radius: 70px 0 0 70px;
}
.shape-3-center {
  width: 70px;
  height: 70px;
  background-color: #B82A81;
  border-radius: 50%;
}
.shape-3-right {
  width: 35px;
  height: 70px;
  background-color: #B82A81;
  border-radius: 0 70px 70px 0;
}

@keyframes floatObj {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(8deg); }
  100% { transform: translateY(15px) rotate(-5deg); }
}

@keyframes pulseMove {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(40px, -30px); }
  100% { transform: scale(0.9) translate(-30px, 40px); }
}

@keyframes rotateWave {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .dropdown-content {
      position: static;
      box-shadow: none;
      border: none;
      background-color: var(--color-off-white);
      margin-top: 10px;
      display: none;
  }
}


.portfolio-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-light-gray);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.portfolio-info p {
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-yellow);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-light-gray);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-orange);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--color-mango);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-dark-gray);
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* Helper for generated images */
.img-placeholder {
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-visual { display: none; }
  .hero-content {
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none; /* simple hidden for mobile, implementation in JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .navbar-nav.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .shape-1-css {
    width: 60px !important;
    height: 60px !important;
    top: -5% !important;
    left: 2% !important;
    animation-duration: 15s !important;
  }
  
  .shape-2-css {
    width: 50px !important;
    height: 60px !important;
    bottom: -5% !important;
    left: 2% !important;
  }
  .shape-2-top, .shape-2-bottom {
    width: 50px !important;
    height: 30px !important;
  }
  .shape-2-top { border-radius: 0 0 30px 30px !important; }
  .shape-2-bottom { border-radius: 30px 30px 0 0 !important; }
  
  .shape-3-css {
    top: 10% !important;
    right: -5% !important;
    transform: scale(0.5) !important;
  }
}
