/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores vibrantes */
  --color-primary: hsl(330, 100%, 65%);
  --color-primary-dark: hsl(330, 100%, 55%);
  --color-secondary: hsl(320, 85%, 70%);
  --color-white: hsl(0, 0%, 100%);
  --color-black: hsl(330, 15%, 25%);
  --color-whatsapp: hsl(145, 63%, 49%);
  --color-whatsapp-dark: hsl(145, 63%, 40%);
  --color-gray-light: hsl(330, 25%, 97%);
  --color-gray: hsl(330, 15%, 45%);
  --color-border: hsl(330, 20%, 92%);
  
  /* Gradientes */
  --gradient-hero: linear-gradient(180deg, hsl(330 100% 65%) 0%, hsl(340 100% 75%) 20%, hsl(0 0% 100%) 60%, hsl(330 100% 95%) 100%);
  --gradient-pink: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  
  /* Sombras */
  --shadow-sm: 0 2px 8px hsla(330, 100%, 65%, 0.1);
  --shadow-md: 0 4px 16px hsla(330, 100%, 65%, 0.15);
  --shadow-lg: 0 8px 24px hsla(330, 100%, 65%, 0.2);
  --shadow-xl: 0 12px 40px hsla(330, 100%, 65%, 0.25);
  
  /* Espaçamentos */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Tamanhos */
  --container-max: 1200px;
  --border-radius: 1rem;
  
  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}



.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-weight: 600;
  font-size: 1.125rem;
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: inline;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 9999px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  box-shadow: var(--shadow-xl);
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

/* Photo Container */
.photo-container {
  position: relative;
  margin-bottom: 1rem;
}

.photo-wrapper {
  position: relative;
  width: 16rem;
  height: 16rem;
}



@media (min-width: 768px) {
  .photo-wrapper {
    width: 20rem;
    height: 20rem;
  }
}

.profile-photo {
  width: 70%;
  height: 70%;
  margin-top: 15%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-xl);
}

/* Brand Logos Orbiting */
.brand-logo {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.brand-logo:hover {
  transform: scale(1.1);
}



@media (min-width: 768px) {
  .brand-logo {
    width: 4rem;
    height: 4rem;
  }
}

.logo-placeholder {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, rgba(255, 94, 170, 0.3), rgba(200, 140, 255, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
}

.logo-empresas {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.logo-empresas2 {
  width: 4.0rem;
  height: 4.0rem;
  border-radius: 50%;
  object-fit: contain;
}

.logo-empresas3 {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: contain;
}


@media (min-width: 768px) {
  .logo-placeholder {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.logo-empresas2 {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: contain;
}

.logo-empresas3 {
  width: 3.0rem;
  height: 3.0rem;
  border-radius: 50%;
  object-fit: contain;
}

/* Logo Positions */
.logo-1 { top: 0; left: 50%; transform: translateX(-50%); }
.logo-2 { top: 2rem; right: 1rem; }
.logo-3 { top: 50%; right: 0; transform: translateY(-50%); }
.logo-4 { bottom: 2rem; right: 1rem; }
.logo-5 { bottom: 0; left: 50%; transform: translateX(-50%); }
.logo-6 { bottom: 2rem; left: 1rem; }
.logo-7 { top: 50%; left: 0; transform: translateY(-50%); }
.logo-8 { top: 2rem; left: 1rem; }

/* Hero Text */
.hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero-title {
  width: 100%;
  right: 100%;
}

.title-principal {
  width: 100%;
  height: 10%;
}


@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  max-width: 42rem;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-description {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  max-width: 36rem;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-black);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 42rem;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-white);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.benefit-description {
  color: var(--color-gray);
  line-height: 1.6;
}



/* Footer */
.footer {
  padding: 3rem 1rem;
  background: rgba(248, 248, 248, 0.5);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  text-align: center;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 4rem;
  height: 4rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.footer-logo:hover {
  transform: scale(1.1);
}


.footer-logo .logo-placeholder {
  width: 4.0rem;
  height: 4.0rem;
  background: linear-gradient(135deg, rgba(255, 94, 170, 0.3), rgba(200, 140, 255, 0.3));
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
}



.footer-text {
  margin-top: 2rem;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(100px);
  transition: var(--transition);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

@media (min-width: 768px) {
  .sticky-cta {
    left: auto;
    right: 2rem;
    bottom: 2rem;
    max-width: 28rem;
  }
}

.sticky-cta-content {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}

.sticky-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .sticky-btn {
    font-size: 1.125rem;
  }
}

.sticky-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: hsl(0, 84%, 60%);
  color: var(--color-white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.sticky-close:hover {
  transform: scale(1.1);
}

.sticky-close svg {
  width: 1rem;
  height: 1rem;
}


.logo-placeholder {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, rgba(255, 94, 170, 0.3), rgba(200, 140, 255, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
}
