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

:root {
  --google-blue: #4285f4;
  --google-red: #ea4335;
  --google-yellow: #fbbc04;
  --google-green: #34a853;
  --tiktok-cyan: #00F2EA;
  --tiktok-pink: #FF0050;
  --dark: #202124;
  --gray: #5f6368;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Main Card Container */
.main-card {
  background: #f5f5f5;
  border-radius: 24px;
  margin: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 40px);
}


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

/* Header */
.header {
  padding: 24px 0;
  background-color: var(--white);
  border-bottom: 1px solid #e8eaed;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .logo {
    justify-content: center;
  }
}

.logo-image {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: #E4E4EA;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background-color: var(--white);
  border: 1px solid #e8eaed;
  border-radius: 50px;
  margin: 0 auto 32px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  width: fit-content;
}

.search-icon {
  width: 40px;
  height: 40px;
  background-color: #f1f3f4;
  border: 1px solid #dadce0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s-google {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.search-text {
  font-family: var(--font-family);
  font-size: 18px;
  color: var(--dark);
  font-weight: 400;
}

.text-normal {
  color: var(--dark);
}

.hero-title {
  font-family: var(--font-family);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--dark);
  letter-spacing: -1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.title-line-1 {
  color: var(--dark);
  font-weight: 600;
}

.title-line-2 {
  color: var(--dark);
  font-weight: 600;
}

.title-line-3 {
  color: var(--dark);
  font-weight: 600;
}

.seguranca-text {
  display: inline;
}

.se-blue {
  color: var(--google-blue);
}

.g-green {
  color: var(--google-green);
}

.ur-yellow {
  color: var(--google-yellow);
}

.anca-red {
  color: var(--google-red);
}

.a-red {
  color: var(--google-red);
}

.google-text {
  display: inline-block;
}

.g-blue {
  color: var(--google-blue);
}
.o1-red {
  color: var(--google-red);
}
.o2-yellow {
  color: var(--google-yellow);
}
.g2-blue {
  color: var(--google-blue);
}
.l-green {
  color: var(--google-green);
}
.e-red {
  color: var(--google-red);
}

.hero-subtitle {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
}

.cta-button {
  font-family: var(--font-family);
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--google-blue) 0%, #1a73e8 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  display: block;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4);
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  background: transparent;
}

.panorama-container {
  width: 100%;
  height: 500px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

#panorama {
  width: 100%;
  height: 100%;
}


/* Verification Section */
.verification {
  padding: 80px 0;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--dark);
  line-height: 1.2;
}

.verification-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.verification-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-container {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.verification-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
}

.image-container:hover img {
  transform: scale(1.25);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.1) 0%, rgba(66, 133, 244, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.verification-badge {
  background: linear-gradient(135deg, #34A853 0%, #2E7D32 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
  animation: pulse 2s infinite;
}

.verification-badge svg {
  width: 20px;
  height: 20px;
}

.image-highlight {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-highlight {
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(52, 168, 83, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
  }
}

.verification-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(52, 168, 83, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #34A853 0%, #2E7D32 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(52, 168, 83, 0.15);
  border-color: rgba(52, 168, 83, 0.2);
}

.feature-item:hover::before {
  opacity: 1;
}





.utmify-hero {
  width: 100%;
  background: #fff;
  padding: 4rem 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.utmify-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
}

.utmify-title {
  font-family: var(--font-family);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 40px;
  color: var(--dark);
  letter-spacing: -1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.google-text {
  display: inline-block;
}

/* Utmify Image Wrapper */
.utmify-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  position: relative;
}

.utmify-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  background-color: #B4B4B4;
  border-radius: 0 0 40px 40px;
  z-index: 1;
  pointer-events: none;
}

.utmify-main-image {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* Utmify Secondary Image Wrapper */
.utmify-image-wrapper-secondary {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
}

.utmify-secondary-image {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  margin: 0;
  padding: 0;
}

/* Creative Divider - Progress Bar */
.creative-divider {
  width: 100%;
  background: #f5f5f5;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
}

.progress-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-bar-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  background: #ffffff;
  border-radius: 20px;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 1;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--google-green) 0%, #2e7d32 100%);
  border-radius: 20px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.progress-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex: 0 0 auto;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-dot.active {
  background: var(--google-green);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
  animation: pop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1.1);
  }
}

.step-dot .check-icon {
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.step-dot.active .check-icon {
  opacity: 1;
  transform: scale(1);
}

.step-label {
  margin-top: 16px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.progress-step.completed .step-label {
  color: var(--google-green);
  font-weight: 600;
}

/* Mockup centralizado e levemente inclinado */
.mockup-wrapper {
  position: relative;
  display: inline-block;
  transform: rotate(-5deg);
}

.mockup-img {
  width: 320px;
  max-width: 90vw;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Notificações flutuantes */
.notif {
  position: absolute;
  width: 130px;
  max-width: 35vw;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Posições específicas (ajuste conforme suas imagens) */
.notif-1 {
  top: 10%;
  left: -40px;
}

.notif-2 {
  bottom: 10%;
  right: -50px;
}

.notif-3 {
  top: 40%;
  right: -80px;
}

/* Desktop refinamento */
@media (min-width: 900px) {
  .utmify-title {
    font-size: 64px;
    margin-bottom: 40px;
  }

  .mockup-img {
    width: 380px;
  }

  .notif-1 {
    top: 15%;
    left: -70px;
  }

  .notif-2 {
    bottom: 15%;
    right: -90px;
  }

  .notif-3 {
    top: 35%;
    right: -120px;
  }

  .utmify-image-wrapper {
    max-width: 1000px;
  }
}

/* Mobile ajustes */
@media (max-width: 600px) {
  .utmify-title {
    font-size: 28px;
    line-height: 1.0;
    gap: 0px;
    margin-bottom: 24px;
  }

  .mockup-wrapper {
    transform: none;
  }

  .notif {
    width: 100px;
  }

  .notif-1 {
    top: -10px;
    left: -20px;
  }

  .notif-2 {
    bottom: -10px;
    right: -20px;
  }

  .notif-3 {
    display: none;
  }

  .utmify-hero {
    padding: 4rem 0 0;
  }

  .utmify-container {
    padding: 0;
    margin-bottom: 0;
  }

  .utmify-image-wrapper {
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 0;
  }

  .utmify-main-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  .utmify-image-wrapper-secondary {
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 0;
  }

  .utmify-secondary-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  .creative-divider {
    padding: 60px 15px;
  }

  .progress-container {
    max-width: 100%;
  }

  .step-dot {
    width: 32px;
    height: 32px;
    border: 3px solid #ffffff;
  }

  .step-dot .check-icon {
    width: 18px;
    height: 18px;
  }

  .step-label {
    font-size: 11px;
    margin-top: 12px;
  }

  .progress-bar-bg {
    height: 6px;
  }
}





.check-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #34A853 0%, #2E7D32 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
  position: relative;
}

.check-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #34A853, #2E7D32);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover .check-icon::after {
  opacity: 0.3;
}

.feature-item span:last-child {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  flex: 1;
}

/* TikTok Hero Section */
.hero-tiktok {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.hero-tiktok-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-tiktok-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tiktok-search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: var(--white);
  border: 1px solid #e8eaed;
  border-radius: 50px;
  margin: 0 auto 32px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  width: fit-content;
}

.tiktok-search-icon {
  width: 40px;
  height: 40px;
  background-color: #f1f3f4;
  border: 1px solid #dadce0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tiktok-logo-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.tiktok-search-text {
  font-family: var(--font-family);
  font-size: 18px;
  color: var(--dark);
  font-weight: 400;
}

.tiktok-text {
  display: inline-block;
}

.tik-cyan {
  color: var(--tiktok-cyan);
}

.tok-pink {
  color: var(--tiktok-pink);
}

.hero-tiktok-title {
  font-family: var(--font-family);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--dark);
  letter-spacing: -1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.hero-tiktok-title .title-line-1 {
  color: var(--dark);
  font-weight: 600;
}

.hero-tiktok-title .title-line-2 {
  color: var(--dark);
  font-weight: 600;
}

.hero-tiktok-title .title-line-3 {
  color: var(--dark);
  font-weight: 600;
}

.crescimento-text {
  display: inline;
}

.cresci-cyan {
  color: var(--tiktok-cyan);
}

.mento-pink {
  color: var(--tiktok-pink);
}

.tiktok-verificadas {
  display: inline;
}

.hero-tiktok-subtitle {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
}

.tiktok-cta-button {
  font-family: var(--font-family);
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--tiktok-pink) 0%, #e6005c 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 0, 80, 0.3);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  display: block;
}

.tiktok-cta-button::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;
}

.tiktok-cta-button:hover::before {
  left: 100%;
}

.tiktok-cta-button:hover {
  background: linear-gradient(135deg, #e6005c 0%, #cc0044 100%);
  box-shadow: 0 6px 25px rgba(255, 0, 80, 0.4);
  transform: translateY(-3px);
}

.hero-tiktok-image {
  position: relative;
}

/* TikTok Icons positioned absolutely - matching the image layout */
.tiktok-icon {
  position: absolute;
  z-index: 1;
}

/* TikTok icon next to search bar - top right */
.tiktok-icon-search {
  width: 50px;
  height: 50px;
  top: 20px;
  right: 20px;
  opacity: 0.8;
  transform: rotate(15deg);
}

.tiktok-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 40px;
  filter: drop-shadow(0 0 8px rgba(0, 242, 234, 0.3)) drop-shadow(0 0 8px rgba(255, 0, 80, 0.3));
}

/* Main large icon - bottom right corner */
.tiktok-icon-main {
  width: 140px;
  height: 140px;
  bottom: 40px;
  right: 40px;
  opacity: 1;
  transform: rotate(-5deg);
}

/* Smaller icon - top right corner */
.tiktok-icon-top {
  width: 60px;
  height: 60px;
  top: 20px;
  right: 20px;
  opacity: 0.7;
  transform: rotate(15deg);
}

/* Smaller icon - bottom left corner */
.tiktok-icon-bottom {
  width: 50px;
  height: 50px;
  bottom: 60px;
  left: 20px;
  opacity: 0.7;
  transform: rotate(-20deg);
}

@media (max-width: 768px) {
  .hero-tiktok {
    padding: 60px 0;
  }
  
  .hero-tiktok-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-tiktok-title {
    font-size: 42px;
    line-height: 1.1;
    gap: 0px;
  }
  
  .hero-tiktok-title .title-line-1 {
    display: block;
  }
  
  .hero-tiktok-title .title-line-2 {
    display: block;
  }
  
  .hero-tiktok-title .title-line-3 {
    display: block;
  }
  
  .hero-tiktok-subtitle {
    font-size: 18px;
  }
  
  .tiktok-search-bar {
    padding: 12px 20px;
    gap: 12px;
    margin: 0 auto 32px auto;
    display: flex;
    justify-content: center;
  }
  
  .tiktok-search-icon {
    width: 36px;
    height: 36px;
  }
  
  .tiktok-logo-icon {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
  }
  
  .tiktok-search-text {
    font-size: 16px;
  }
  
  /* Mobile icon positioning */
  .tiktok-icon-main {
    width: 100px;
    height: 100px;
    bottom: 30px;
    right: 20px;
  }
  
  .tiktok-icon-top {
    width: 45px;
    height: 45px;
    top: 20px;
    right: 15px;
  }
  
  .tiktok-icon-bottom {
    width: 40px;
    height: 40px;
    bottom: 80px;
    left: 15px;
  }
  
  .tiktok-icon-search {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 640px) {
  .hero-tiktok-title {
    font-size: 32px;
    line-height: 1.2;
    gap: 0px;
  }
  
  .hero-tiktok-title .title-line-1 {
    display: block;
  }
  
  .hero-tiktok-title .title-line-2 {
    display: block;
  }
  
  .hero-tiktok-title .title-line-3 {
    display: block;
  }
  
  .hero-tiktok-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-tiktok-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero-tiktok-title .title-line-1,
  .hero-tiktok-title .title-line-2,
  .hero-tiktok-title .title-line-3 {
    display: block;
    margin-bottom: 2px;
  }
  
  .tiktok-search-bar {
    padding: 12px 18px;
    gap: 10px;
    margin: 0 auto 32px auto;
    display: flex;
    justify-content: center;
  }
  
  .tiktok-search-icon {
    width: 32px;
    height: 32px;
  }
  
  .tiktok-logo-icon {
    width: 18px;
    height: 18px;
    display: block;
    margin: 0 auto;
  }
  
  .tiktok-search-text {
    font-size: 14px;
  }
  
  /* Smaller screens icon adjustments */
  .tiktok-icon-main {
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 15px;
  }
  
  .tiktok-icon-top {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 10px;
  }
  
  .tiktok-icon-bottom {
    width: 30px;
    height: 30px;
    bottom: 60px;
    left: 10px;
  }
  
  .tiktok-icon-search {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
  }
}

/* Art Image Section */
.art-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.art-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}

/* Plans Section */
.plans {
  padding: 80px 0;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.plan-card {
  background-color: var(--white);
  border: 2px solid #e8eaed;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--google-blue), var(--google-green), var(--google-yellow), var(--google-red));
  opacity: 1;
  transition: opacity 0.3s ease;
}

.plan-card:hover {
  border-color: var(--google-blue);
  box-shadow: 0 12px 40px rgba(66, 133, 244, 0.2);
  transform: translateY(-8px);
}

.plan-card.featured {
  border-color: var(--google-blue);
  box-shadow: 0 12px 40px rgba(66, 133, 244, 0.2);
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}


.plan-header {
  margin-bottom: 24px;
}

.plan-title {
  font-family: var(--font-family);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.plan-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #4aff0e 0%, #2f9100b0 100%);
  color: #ffffff;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plan-badge.premium {
  background: linear-gradient(45deg, #FBBC05 0%, #FBBC05 25%, #EA4335 25%, #EA4335 50%, #34A853 50%, #34A853 75%, #4285F4 75%, #4285F4 100%);
  color: #ffffff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8), 0 0 6px rgba(0, 0, 0, 0.6), 0 0 9px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.plan-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 12px;
}

.price-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0;
}

.price-note {
  font-size: 13px;
  color: var(--gray);
}

.plan-button {
  font-family: var(--font-family);
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--google-blue);
  background-color: var(--white);
  border: 2px solid var(--google-blue);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
  transition: left 0.5s;
}

.plan-button:hover::before {
  left: 100%;
}

.plan-button:hover {
  background-color: var(--google-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.plan-button.primary {
  background: linear-gradient(135deg, var(--google-blue) 0%, #1a73e8 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.plan-button.primary:hover {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4);
  transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(
    from -45deg, /* Começa a 'pizza' a -45 graus */
    #EA4335 0deg 90deg,    /* Vermelho (Top-Right) */
    #4285F4 90deg 180deg,   /* Azul (Bottom-Right) */
    #34A853 180deg 270deg,  /* Verde (Bottom-Left) */
    #FBBC05 270deg 360deg   /* Amarelo (Top-Left) */
  );
  z-index: 0;
}







.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta-content {
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-family);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #ffffff;
}

.cta-text {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #ffffff;
  line-height: 1.5;
}

.cta-button.large {
  font-family: var(--font-family);
  padding: 22px 52px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: var(--google-blue);
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button.large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
  transition: left 0.5s;
}

.cta-button.large:hover::before {
  left: 100%;
}

.cta-button.large:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  padding: 40px 0;
  background-color: var(--dark);
  color: var(--white);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer-logo .s-blue {
  color: var(--google-blue);
}
.footer-logo .o-red {
  color: var(--google-red);
}
.footer-logo .u-yellow {
  color: var(--google-yellow);
}
.footer-logo .s2-blue {
  color: var(--google-blue);
}
.footer-logo .a-green {
  color: var(--google-green);
}

.footer-logo .logo-subtitle {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-top: 2px;
  text-align: center;
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */

@media (max-width: 768px) {
  .main-card {
    margin: 10px;
    border-radius: 16px;
  }
}

@media (max-width: 968px) {
  .hero-content,
  .hero-tiktok-content,
  .verification-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.0;
    gap: 0px;
  }

  .section-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .logo-image {
    height: 70px;
  }
  
  .search-bar {
    padding: 10px 18px;
    gap: 12px;
    margin: 0 auto 32px auto;
    display: flex;
    justify-content: center;
  }
  
  .search-icon {
    width: 36px;
    height: 36px;
  }
  
  .s-google {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
  }
  
  .search-text {
    font-size: 16px;
  }
  
  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.0;
    gap: 0px;
  }
  
  .panorama-container {
    height: 300px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  
  .verification-image {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  
  .image-container {
    border-radius: 16px;
    height: auto;
  }
  
  .verification-image img {
    height: auto;
    object-fit: contain;
  }
  
  .verification-badge {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .verification-badge svg {
    width: 16px;
    height: 16px;
  }
  
  .image-highlight {
    width: 40px;
    height: 40px;
    top: 15px;
    left: 15px;
  }
  
  .verification-features {
    gap: 24px;
  }
  
  .feature-item {
    padding: 20px;
    gap: 16px;
  }
  
  .check-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .feature-item span:last-child {
    font-size: 16px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .verification,
  .plans,
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 18px;
  }
  
  .cta-section::before {
    background: 
      linear-gradient(45deg, #FBBC05 0%, #FBBC05 50%, transparent 50%, transparent 100%),
      linear-gradient(-45deg, #EA4335 0%, #EA4335 50%, transparent 50%, transparent 100%),
      linear-gradient(135deg, #34A853 0%, #34A853 50%, transparent 50%, transparent 100%),
      linear-gradient(-135deg, #4285F4 0%, #4285F4 50%, transparent 50%, transparent 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  
  .plan-card {
    padding: 24px;
  }
  
  .plan-title {
    font-size: 24px;
  }
}
