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

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
  color: #f4f4f4;
  line-height: 1.6;
  overflow-x: hidden;
}


/* HERO / BANNER - LAYOUT LATERAL */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
  min-height: 100vh;
  padding: 0 20px;
}

.hero-image {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.hero-image:hover .profile-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 102, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

.hero-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  height: 100vh;
  width: 100%;
  border-left: 3px solid rgba(255, 102, 0, 0.3);
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #ff6600, #ff8800);
  animation: fillLine 2s ease-out 1.5s forwards;
}

@keyframes fillLine {
  to {
    height: 100%;
  }
}

@keyframes fillLineHorizontal {
  to {
    width: 100%;
  }
}

.hero h1 {
  font-size: 4rem;
  color: #ff6600;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 102, 0, 0.4);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2px;
}

.hero-content > p {
  color: #ff8800;
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-description {
  margin-bottom: 40px;
}

.hero-description p {
  color: #f4f4f4;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff8800);
  color: #121212;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.4);
}

/* GALERIA DE TRANSFORMAÇÕES */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: #ff6600;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header p {
  color: #ccc;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.gallery-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-container {
  position: relative;
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.gallery-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
  transform: translateX(50px);
  z-index: 1;
}

.gallery-page.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.transformation-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 102, 0, 0.2);
  transition: all 0.3s ease;
  aspect-ratio: 1;
  cursor: pointer;
}

.transformation-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
  border-color: #ff6600;
}

.transformation-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent 100%
  );
  padding: 20px 15px 15px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.transformation-item:hover .transformation-info {
  transform: translateY(0);
}

.transformation-info h4 {
  font-size: 1.1rem;
  color: #ff6600;
  margin-bottom: 5px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.transformation-info p {
  font-size: 0.9rem;
  color: #f4f4f4;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.more-results {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 136, 0, 0.1));
  cursor: pointer;
}

.more-content {
  text-align: center;
  color: #f4f4f4;
}

.more-content h3 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 10px;
  font-weight: 700;
}

.more-content p {
  margin-bottom: 20px;
  color: #ccc;
}

.btn-more {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff8800);
  color: #121212;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff6600, #ff8800);
  color: #121212;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
  font-weight: bold;
}

.gallery-prev:hover, .gallery-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5);
}

.gallery-prev { 
  left: -70px; 
}

.gallery-next { 
  right: -70px; 
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 102, 0, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff6600;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.indicator:hover {
  border-color: #ff6600;
  transform: scale(1.2);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  border: 2px solid #ff7f11;
  animation: zoomIn 0.3s ease;
  cursor: default;
  object-fit: contain;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ff7f11;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #ffa733;
}

/* SEÇÃO ESTRATÉGIA */
.estrategia-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 100px 20px;
  position: relative;
}

.estrategia-container {
  max-width: 1200px;
  margin: 0 auto;
}

.estrategia-section .section-header h2 {
  font-size: 2.5rem;
  color: #f4f4f4;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

.estrategia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.estrategia-card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 102, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.estrategia-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6600, #ff8800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.estrategia-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6600, #ff8800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #121212;
  transition: all 0.3s ease;
}

.estrategia-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.estrategia-card h3 {
  font-size: 1.4rem;
  color: #f4f4f4;
  margin-bottom: 15px;
  font-weight: 600;
}

.estrategia-card p {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 1rem;
}

/* CONTATO / FOOTER */
.contato {
  text-align: center;
  padding: 100px 20px;
}

.contato h2 {
  color: #ff7f11;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.contato p {
  margin-bottom: 50px;
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1ebc5e;
}

/* FOOTER MODERNO */
.footer {
  background: #000000;
  color: #f4f4f4;
  padding: 60px 20px 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 102, 0, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-slogan h3 {
  font-size: 1.5rem;
  color: #ff6600;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
  margin-bottom: 0;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 102, 0, 0.1);
  border: 2px solid rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  color: #f4f4f4;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 102, 0, 0.2);
  border-color: #ff6600;
  color: #ff6600;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.social-link svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.2);
}

.footer-copyright {
  color: #999;
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 102, 0, 0.1);
  width: 100%;
}

.footer-copyright p {
  margin: 0;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  color: white;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* EFEITOS DE GLOW */
.carousel-section h2, .contato h2 {
  color: #ff6600;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
  font-weight: 600;
}

.carousel-img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 102, 0, 0.2);
}

.carousel-img:hover {
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
  border-color: #ff6600;
}

.prev, .next {
  background: linear-gradient(135deg, #ff6600, #ff8800);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.prev:hover, .next:hover {
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

/* CARDS COM SOMBRAS SUAVES */
.carousel-section, .contato {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 102, 0, 0.1);
}

/* Tablet breakpoint - 2 colunas */
@media (max-width: 1024px) and (min-width: 769px) {
  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 15px;
  }
  
  .estrategia-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .estrategia-section .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: 60vh 1fr;
    gap: 0;
  }
  
  .hero-image {
    height: 60vh;
    order: 1;
  }
  
  .hero-content {
    height: auto;
    padding: 60px 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
    order: 2;
    background: rgba(18, 18, 18, 0.98);
    border-left: none;
    border-top: 3px solid rgba(255, 102, 0, 0.3);
  }
  
  .hero-content::before {
    left: 0;
    top: -3px;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ff6600, #ff8800);
    animation: fillLineHorizontal 2s ease-out 1.5s forwards;
  }
  
  .hero h1 { 
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .hero-content > p {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .hero-description p {
    font-size: 1.1rem;
  }
  .carousel-img { 
    width: 90%; 
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .gallery-section {
    padding: 60px 10px;
    margin: 0;
  }
  
  .contato {
    margin: 10px;
  }
  
  .gallery-container {
    height: auto;
    min-height: 550px;
  }
  
  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 15px;
  }
  
  .transformation-item {
    aspect-ratio: 3/4;
    max-height: 320px;
  }
  
  .gallery-prev, .gallery-next {
    padding: 10px 12px;
    font-size: 1.2rem;
    top: 40%;
  }
  
  .gallery-prev { 
    left: 5px; 
  }
  
  .gallery-next { 
    right: 5px; 
  }

  /* Estratégia responsiva */
  .estrategia-section {
    padding: 60px 20px;
  }
  
  .estrategia-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .estrategia-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .estrategia-card {
    padding: 30px 20px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }

  .gallery-section h2 {
    font-size: 1.8rem;
  }
  
  .more-content h3 {
    font-size: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .section-header p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .transformation-info {
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.8) 80%,
      transparent 100%
    );
    padding: 10px 12px 8px;
  }
  
  .transformation-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .transformation-info p {
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .more-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .more-content p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .btn-more {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .contato {
    padding: 80px 20px;
  }
  
  .contato h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .contato p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  .footer {
    padding: 40px 15px 20px;
  }
  .footer-slogan h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .footer-social {
    gap: 15px;
  }
  .social-link {
    width: 45px;
    height: 45px;
  }
}
