body {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%
}

h1,
h2,
h3 {
  color: #444
}

a {
  color: #ff6f61;
  text-decoration: none
}

header {
  background: linear-gradient(to right, #ff6f61, #f9a825);
  color: white;
  padding: 20px 10px;
  text-align: center
}

.header-container p {
  margin: 5px 0 0
}

.hero-section {
  background: linear-gradient(135deg, #ffb347 0, #ff8c42 50%, #ff6b35 100%);
  color: white;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  min-height: 80vh
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svgxmlns="http://www.w3.org/2000/svg"viewBox="00100100"><defs><patternid="grain"width="100"height="100"patternUnits="userSpaceOnUse"><circlecx="50"cy="50"r="1"fill="rgba(255,255,255,0.1)"/></pattern></defs><rectwidth="100"height="100"fill="url(%23grain)"/></svg>');
  opacity: .3
}

.hero-container {
  position: relative;
  z-index: 1
}

.logo-container {
  margin-bottom: 20px
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.logo {
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-bottom: 8px
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4)
}

.logo-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3)
}

@media(max-width:768px) {
  .logo-grid {
    gap: 15px
  }

  .logo {
    width: 70px !important;
    height: 70px !important
  }

  .logo-label {
    font-size: .7rem
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2)
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.stat-item::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 .5s
}

.stat-item:hover::before {
  left: 100%
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3)
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px
}

.stat-label {
  display: block;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px
}

.token-exchange-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px solid #e9ecef
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #495057
}

.token-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color .3s ease, box-shadow .3s ease
}

.token-input:focus {
  outline: 0;
  border-color: #ff6f61;
  box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1)
}

.token-result {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-all
}

.token-result.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724
}

.token-result.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24
}

.section {
  padding: 20px;
  margin: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
}

.channel-section {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef
}

.channel-title {
  text-align: center;
  color: #ff6f61;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600
}

.channel-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.channel-stat {
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 120px
}

.channel-stat .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6f61;
  margin-bottom: 5px
}

.channel-stat .stat-label {
  display: block;
  font-size: .8rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px
}

@media(max-width:768px) {
  .channel-stats {
    gap: 15px
  }

  .channel-stat {
    min-width: 100px;
    padding: 12px
  }

  .channel-stat .stat-number {
    font-size: 1.5rem
  }
}

.section h2 {
  text-align: center;
  color: #ff6f61
}

.content-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  white-space: nowrap;
  height: 200px;
  align-items: flex-start
}

.content-container::-webkit-scrollbar {
  height: 8px
}

.content-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px
}

.content-container::-webkit-scrollbar-thumb {
  background: #ff6f61;
  border-radius: 4px
}

.content-container::-webkit-scrollbar-thumb:hover {
  background: #e55a4e
}

.video-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 250px;
  min-width: 250px;
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2)
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease
}

.video-item:hover .video-overlay {
  opacity: 1
}

.video-item:hover .video-thumb {
  transform: scale(1.05)
}

.play-button {
  background: red;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: background .3s ease
}

.play-button:hover {
  background: #c00
}

.video-info {
  padding: 12px
}

.video-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 6px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.video-channel {
  color: #666;
  font-size: 12px;
  margin: 0 0 4px 0
}

.video-date {
  color: #888;
  font-size: 11px;
  margin: 0
}

.video-container-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 111, 97, 0.9);
  color: white;
  border: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .3s ease;
  opacity: 0
}

.video-container-wrapper:hover .scroll-arrow {
  opacity: 1
}

.scroll-arrow:hover {
  background: #ff6f61;
  transform: translateY(-50%) scale(1.1)
}

.scroll-arrow-left {
  left: 10px
}

.scroll-arrow-right {
  right: 10px
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  min-height: 200px
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ff6f61;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px
}

@keyframes spin {
  0 {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.loading-spinner p {
  color: #666;
  font-size: 14px;
  margin: 0
}

.setup-guide {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px
}

.guide-step {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #ff6f61
}

.guide-step h3 {
  color: #ff6f61;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem
}

.guide-step ol {
  margin: 0;
  padding-left: 20px
}

.guide-step li {
  margin-bottom: 8px;
  line-height: 1.5
}

.guide-step code {
  background: #e9ecef;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px
}

.guide-step pre {
  background: #2d3748;
  color: #e2e8f0;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  margin: 10px 0
}

.guide-step a {
  color: #ff6f61;
  text-decoration: none;
  font-weight: 500
}

.guide-step a:hover {
  text-decoration: underline
}

.affiliate-container,
.promotion-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-evenly
}

.affiliate-card,
.promotion-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)
}

.affiliate-card img,
.promotion-card img {
  max-width: 100%;
  border-radius: 8px 8px 0 0
}

footer {
  background: #444;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px
}

.logo-container {
  text-align: center;
  margin: 10px 0
}

.logo {
  max-width: 150px;
  height: auto
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff6f61;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color .3s
}

.btn:hover {
  background-color: #f44336
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center
}

.video-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  overflow: hidden;
  text-align: center
}

.video-card img {
  width: 100%;
  height: auto
}

.video-card p {
  padding: 10px;
  font-size: 14px;
  color: #333
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all .3s ease;
  z-index: 1000;
  font-weight: 600;
  font-size: 16px
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none
}

.whatsapp-icon {
  font-size: 24px;
  animation: pulse 2s infinite
}

.whatsapp-text {
  font-size: 14px;
  font-weight: 600
}

@keyframes pulse {
  0 {
    transform: scale(1)
  }

  50% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1)
  }
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ff6f61;
  color: white;
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
  transition: all .3s ease;
  z-index: 1000
}

.back-to-top:hover {
  background: #e55a4e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 97, 0.6)
}

.back-to-top-icon {
  font-size: 20px;
  font-weight: bold
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes bounce {

  0,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0)
  }

  40% {
    transform: translateY(-10px)
  }

  60% {
    transform: translateY(-5px)
  }
}

@keyframes shake {

  0,
  100% {
    transform: translateX(0)
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px)
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px)
  }
}

@keyframes glow {
  0 {
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.5)
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 111, 97, 0.8), 0 0 30px rgba(255, 111, 97, 0.6)
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.5)
  }
}

@keyframes float {
  0 {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1
}

.hero-section>* {
  position: relative;
  z-index: 2
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2
}

.logo-container {}

.hero-stats {}

.section {}

.section:nth-child(even) {}

.section:nth-child(odd) {}

.channel-section {}

.video-item {
  transition: all .3s ease
}

.video-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15)
}

.stat-item {
  transition: all .3s ease
}

.stat-item:hover {
  transform: scale(1.05);
  animation: bounce .6s ease
}

.btn {
  transition: all .3s ease
}

.btn:hover {
  transform: translateY(-2px);
  animation: glow 1.5s infinite
}

.whatsapp-float {
  animation: float 3s ease-in-out infinite
}

.whatsapp-float:hover {
  animation: bounce .6s ease
}

.back-to-top {
  animation: fadeInScale .5s ease-out
}

.back-to-top:hover {
  animation: bounce .6s ease
}

@keyframes spin {
  0 {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.spinner {
  animation: spin 1s linear infinite
}



.fade-in-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: all .3s ease-out
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0)
}

.social-links a {
  transition: all .3s ease
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  animation: bounce .6s ease
}

.contact-info>div {
  transition: all .3s ease
}

.contact-info>div:hover {
  transform: translateX(5px);
  animation: glow 1s ease
}

.footer-section {
  animation: fadeInUp .8s ease-out
}

.footer-section:nth-child(1) {
  animation-delay: .2s
}

.footer-section:nth-child(2) {
  animation-delay: .4s
}

.footer-section:nth-child(3) {
  animation-delay: .6s
}

.logo {
  transition: all .3s ease
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  animation: bounce .6s ease
}

.channel-title {}

.content-container {}

.setup-guide {}

.guide-step {}

.guide-step:nth-child(even) {}

.token-exchange-form {}

.scroll-arrow {
  transition: all .3s ease
}

.scroll-arrow:hover {
  transform: scale(1.2);
  animation: bounce .6s ease
}

.loading-spinner {}

.error-message {}

.success-message {}

@media(max-width:768px) {

  /* Fix mobile viewport issues */
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero-section {
    background-attachment: scroll;
    padding: 20px 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
  }

  .hero-stats {
    width: 100%;
    max-width: 100%;
    padding: 15px 5px;
    box-sizing: border-box;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }

  .stat-item {
    padding: 15px 10px;
    box-sizing: border-box;
  }

  .whatsapp-float {
    animation: none
  }

  .video-item:hover {
    transform: none
  }

  .stat-item:hover {
    transform: none
  }

  .hero-section::before {
    background: rgba(255, 255, 255, 0.9)
  }

  .floating-contact-menu {
    bottom: 20px;
    right: 15px;
    z-index: 9999;
    position: fixed;
  }

  .contact-toggle {
    padding: 12px 16px;
    font-size: 14px;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
  }

  .toggle-text {
    font-size: 12px;
    display: block;
  }

  .contact-option {
    padding: 10px 14px;
    min-width: 100px;
    margin-bottom: 8px;
  }

  .option-text {
    font-size: 11px;
  }

  /* Ensure contact button is always visible on mobile */
  .floating-contact-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .contact-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-title {
    font-size: 2rem;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .hero-description {
    font-size: .9rem;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .logo {
    width: 60px;
    height: 60px
  }

  .stat-number {
    font-size: 1.5rem
  }

  .stat-label {
    font-size: .7rem
  }

  /* Fix any container width issues */
  .section {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 15px 10px;
    box-sizing: border-box;
  }

  .content-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px
}

.stat-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6f61, #4ecdc4, #45b7d1, #f39c12);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2)
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 6px;
  display: block
}

.stat-label {
  font-size: .8rem;
  color: #7f8c8d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

@keyframes gradientShift {
  0 {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}

.hero-description {
  font-size: 1rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  word-wrap: break-word;
  hyphens: auto
}

.hero-content {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 20px
}

.hero-content p {
  font-size: .95rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 2rem;
  flex-wrap: wrap
}

.logo-item {
  text-align: center;
  transition: transform .3s ease
}

.logo-item:hover {
  transform: scale(1.05)
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all .3s ease
}

.logo:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3)
}

.logo-label {
  display: block;
  margin-top: 8px;
  font-size: .8rem;
  color: #5a6c7d;
  font-weight: 600
}

.floating-contact-menu {
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

@media(max-width:768px) {
  .floating-contact-menu {
    bottom: 20px;
    right: 15px;
    z-index: 9999;
    position: fixed;
  }
}

.contact-toggle {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transition: all .3s ease;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  outline: 0
}

.contact-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6)
}

.contact-toggle.active {
  background: linear-gradient(135deg, #ff8c42, #ff6b35)
}

.toggle-icon {
  font-size: 16px;
  animation: pulse 2s infinite
}

.toggle-text {
  font-size: 12px;
  font-weight: 600
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
  pointer-events: none
}

.contact-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all
}

.contact-option {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .3s ease;
  min-width: 100px
}

.contact-option:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none
}

.phone-option:hover {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db
}

.whatsapp-option:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366
}

.email-option:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c
}

.option-icon {
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.option-text {
  font-size: 11px;
  font-weight: 600
}

.contact-option:nth-child(1) {
  transition-delay: .1s
}

.contact-option:nth-child(2) {
  transition-delay: .2s
}

.contact-option:nth-child(3) {
  transition-delay: .3s
}

.internal-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all .3s ease
}

.internal-link:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
  text-decoration: none
}

.page-header {
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px
}

.page-header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6f61, #4ecdc4, #45b7d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.page-header-content p {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto
}

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

.quick-stats-section {
  padding: 60px 0;
  background: #f8f9fa
}

.quick-stats-section h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700
}

.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px
}

.quick-stat-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid #e9ecef
}

.quick-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15)
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 20px
}

.stat-info h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600
}

.stat-info p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6
}

.services-section {
  padding: 80px 0;
  background: white
}

.services-section h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px
}

.service-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all .3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6f61, #4ecdc4, #45b7d1);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2)
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px
}

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

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  color: white;
  text-align: center
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: .9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
  text-align: center
}

.btn-outline:hover {
  background: #667eea;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3)
}

.cta-section .btn-outline {
  color: white;
  border-color: white
}

.cta-section .btn-outline:hover {
  background: white;
  color: #667eea
}

@media(max-width:768px) {
  .page-header-content h1 {
    font-size: 2rem
  }

  .quick-stats-section h2,
  .services-section h2 {
    font-size: 1.8rem
  }

  .cta-section h2 {
    font-size: 2rem
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

  .quick-stats-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .quick-stat-item,
  .service-card {
    padding: 20px
  }
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100
}

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

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 15px 0;
  gap: 30px
}

.nav-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all .3s ease
}

.nav-link:hover {
  background: #667eea;
  color: white;
  text-decoration: none
}

@media(max-width:768px) {
  .nav-list {
    gap: 15px;
    padding: 10px 0
  }

  .nav-link {
    padding: 6px 12px;
    font-size: .9rem
  }
}
