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

html { 
    /* background: url(img/1.jpg) no-repeat center center fixed; 
    background-size: cover; */
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

/* Seção de Apresentação com Vídeo */
.video-presentation-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

#presentation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* Otimizações de performance */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Overlay do vídeo de apresentação */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Conteúdo da apresentação */
.presentation-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.presentation-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.presentation-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    opacity: 0.9;
    margin: 0;
    animation: subtitleFade 2s ease-in-out infinite alternate;
}

/* Ocultar controles do vídeo de apresentação */
#presentation-video::-webkit-media-controls,
#presentation-video::-webkit-media-controls-panel,
#presentation-video::-webkit-media-controls-play-button,
#presentation-video::-webkit-media-controls-start-playback-button,
#presentation-video::-webkit-media-controls-overlay-play-button,
#presentation-video::-webkit-media-controls-fullscreen-button,
#presentation-video::-webkit-media-controls-timeline,
#presentation-video::-webkit-media-controls-volume-slider,
#presentation-video::-webkit-media-controls-mute-button,
#presentation-video::-webkit-media-controls-current-time-display,
#presentation-video::-webkit-media-controls-time-remaining-display,
#presentation-video::-webkit-media-controls-enclosure,
#presentation-video::-webkit-media-controls-toggle-closed-captions-button,
#presentation-video::-webkit-media-controls-wireless-playback-picker-button,
#presentation-video::-webkit-media-controls-rewind-button,
#presentation-video::-webkit-media-controls-return-to-realtime-button,
#presentation-video::-webkit-media-controls-seek-back-button,
#presentation-video::-webkit-media-controls-seek-forward-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

#presentation-video::-moz-media-controls {
    display: none !important;
}

#presentation-video::-ms-media-controls {
    display: none !important;
}

/* Garantir que o vídeo de apresentação não seja interativo */
video#presentation-video {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-media-controls: none !important;
    -moz-media-controls: none !important;
    -ms-media-controls: none !important;
    media-controls: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Regras específicas para Safari em diferentes estados */
video#presentation-video:hover,
video#presentation-video:focus,
video#presentation-video:active,
video#presentation-video:paused,
video#presentation-video:playing,
video#presentation-video:seeking,
video#presentation-video:waiting,
video#presentation-video:loading {
    -webkit-media-controls: none !important;
    -moz-media-controls: none !important;
    -ms-media-controls: none !important;
    media-controls: none !important;
}

/* Regra específica para DuckDuckGo e outros navegadores baseados em WebKit */
@supports (-webkit-appearance: none) {
    video#presentation-video {
        -webkit-media-controls-show: never !important;
    }
    
    video#presentation-video::-webkit-media-controls {
        -webkit-transform: scale(0) !important;
        transform: scale(0) !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
}



@keyframes subtitleFade {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Garantir que o menu fique sempre no topo */
body > header,
body > nav {
    z-index: 1001 !important;
}

/* Responsividade aprimorada para o vídeo */
/* Tablets e dispositivos médios */
@media (max-width: 1024px) {
    .video-presentation-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .presentation-title {
        font-size: 2.8rem;
    }
    
    .presentation-subtitle {
        font-size: 1.3rem;
    }
    
    /* Reduzir overlay em tablets */
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.03) 50%,
            rgba(0, 0, 0, 0.25) 100%
        );
    }
}

/* Dispositivos móveis */
@media (max-width: 768px) {
    .video-presentation-section {
        height: 50vh;
        min-height: 350px;
        border-radius: 0 0 20px 20px;
    }
    
    .video-container {
        border-radius: 0 0 20px 20px;
    }
    
    #presentation-video {
        /* Melhorar qualidade visual no mobile */
        filter: brightness(1.05) contrast(1.1) saturate(1.1);
    }
    
    .presentation-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .presentation-subtitle {
        font-size: 1.1rem;
    }
    
    /* Overlay mais sutil no mobile */
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }
}

/* Dispositivos móveis pequenos */
@media (max-width: 480px) {
    .video-presentation-section {
        height: 45vh;
        min-height: 300px;
    }
    
    .presentation-title {
        font-size: 1.8rem;
    }
    
    .presentation-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    #background-video {
        opacity: 0.7;
        object-position: center center;
    }

  /* Media queries adicionais para smartphones pequenos */
  @media only screen and (max-width: 480px) {
	.fundo2 {
	  padding: 1.5rem 0.8rem;
	  margin: 0.8rem;
	  border-radius: 15px;
	}
	.textodosobre {
	  width: 98%;
	  font-size: 13px;
	  text-indent: 0;
	  line-height: 1.5;
	  text-align: left;
	  padding: 0 0.3rem;
	  margin: 1rem auto;
	}
	.titulo1 {
	  font-size: 1.3rem;
	  margin-bottom: 1rem;
	}
	.imagemdosobre {
	  width: 150px;
	  height: 150px;
	  margin: 1rem auto;
	}
	p {
	  padding: 1rem 0.5rem;
	  font-size: 14px;
	  line-height: 1.5;
	}
  }

  /* Media queries para smartphones muito pequenos */
  @media only screen and (max-width: 360px) {
	.fundo2 {
	  padding: 1rem 0.5rem;
	  margin: 0.5rem;
	}
	.textodosobre {
	  font-size: 12px;
	  width: 100%;
	  padding: 0;
	  margin: 0.8rem auto;
	  text-align: left;
	  word-spacing: normal;
	  line-height: 1.3;
	}
	.titulo1 {
	  font-size: 1.2rem;
	}
	.imagemdosobre {
	  width: 120px;
	  height: 120px;
	}
	
	/* Parágrafos em telas muito pequenas */
	p {
	  text-align: left;
	  word-spacing: normal;
	  line-height: 1.3;
	  padding: 0.8rem;
	}
	
	#subirTopo {
	  bottom: 0.6rem;
	  right: 0.6rem;
	  padding: 0.5rem;
	  transform: translateY(0) scale(0.8);
	}
	
	#subirTopo.show {
	  transform: translateY(0) scale(0.8);
	}
	
	#subirTopo:hover {
	  transform: translateY(-3px) scale(0.85);
	  box-shadow: 0 8px 20px rgba(43, 255, 0, 0.25);
	}
	
	#subirTopo:active {
	  transform: translateY(-1px) scale(0.75);
	}
	
	.top {
	  height: 28px;
	  width: 28px;
	}
  }
}

/* Responsividade para a seção de apresentação */
@media (max-width: 768px) {
    .video-presentation-section {
        margin: 10px;
        height: 300px;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .presentation-title {
        font-size: 2rem;
    }
    
    .presentation-subtitle {
        font-size: 0.9rem;
    }
    
    /* Melhorar contraste do texto em mobile */
    .titulo1, .textodosobre, p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
}

/* Responsividade para smartphones pequenos */
@media (max-width: 480px) {
    .video-presentation-section {
        margin: 5px;
        height: 250px;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .presentation-content {
        padding: 15px;
    }
    
    .presentation-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .presentation-subtitle {
        font-size: 0.8rem;
    }
    
    /* Contraste ainda maior para telas muito pequenas */
    .titulo1, .textodosobre, p {
        color: #ffffff;
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        text-align: left;
        word-spacing: -1.5px;
        letter-spacing: -0.2px;
    }
    
    .fundo, .fundo2 {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        margin: 10px;
        padding: 20px;
    }
    
    .textodosobre {
        font-size: 13px;
        text-align: left;
        word-spacing: -1.5px;
        letter-spacing: -0.2px;
        line-height: 1.4;
        padding: 0 0.3rem;
    }
}

/* Responsividade para smartphones muito pequenos */
@media (max-width: 360px) {
    .video-presentation-section {
        height: 200px;
    }
    
    .presentation-title {
        font-size: 1.2rem;
    }
    
    .presentation-subtitle {
        font-size: 0.7rem;
    }
    
    /* Otimização de texto para telas muito pequenas */
    .titulo1, .textodosobre, p {
        text-align: left;
        word-spacing: -2px;
        letter-spacing: -0.3px;
        line-height: 1.3;
    }
}

/* Orientação paisagem em dispositivos móveis */
@media (max-width: 768px) and (orientation: landscape) {
    .video-presentation-section {
        height: 250px;
    }
    
    .presentation-content {
        padding: 15px;
    }
}

/* Dispositivos com tela de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #background-video {
        /* Otimização para telas retina */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

*{
	border: none;
	font-family: inherit;
	margin: 0;
	padding: 0;
	outline: none;
	list-style-type: none;
	box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
	padding-top: 80px;
	font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: #333;
}


  #subirTopo {
	background: linear-gradient(135deg, rgba(144, 255, 122, 0.15), rgba(125, 224, 104, 0.15));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	bottom: 2rem;
	right: 2rem;
	padding: 0.8rem;
	position: fixed;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100px) scale(0.8) rotate(-10deg);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 2px solid rgba(144, 255, 122, 0.3);
	box-shadow: 0 10px 30px rgba(144, 255, 122, 0.2), 0 0 20px rgba(144, 255, 122, 0.1);
	z-index: 999;
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	animation: parrotFloat 3s ease-in-out infinite;
	}
	
	#subirTopo.show {
	opacity: 0.9;
	visibility: visible;
	transform: translateY(0) scale(1) rotate(-5deg);
	}
	
	#subirTopo:hover {
	opacity: 1;
	transform: translateY(-12px) scale(1.1) rotate(0deg);
	box-shadow: 0 20px 40px rgba(144, 255, 122, 0.3), 0 0 30px rgba(144, 255, 122, 0.2);
	background: linear-gradient(135deg, rgba(144, 255, 122, 0.25), rgba(125, 224, 104, 0.25));
	border-color: rgba(144, 255, 122, 0.5);
	animation: parrotFloat 2s ease-in-out infinite, parrotHover 0.6s ease-in-out infinite;
	}
	
	#subirTopo:active {
	transform: translateY(-8px) scale(1.05) rotate(5deg);
	transition: all 0.2s ease;
	animation: parrotFly 0.8s ease-out;
	}
  

	.parrot-icon {
	height: 60px;
	width: 60px;
	transition: all 0.3s ease;
	transform-origin: center;
	}
	
	.parrot-icon .wing-left,
	.parrot-icon .wing-right {
	animation: wingFlap 0.8s ease-in-out infinite alternate;
	}
	
	.parrot-icon .wing-right {
	animation-delay: 0.1s;
	}

  /* Animações do Papagaio */
  @keyframes parrotFloat {
    0%, 100% {
      transform: translateY(0) rotate(-5deg);
    }
    50% {
      transform: translateY(-8px) rotate(-3deg);
    }
  }
  
  @keyframes parrotHover {
    0%, 100% {
      transform: translateY(-12px) scale(1.1) rotate(0deg);
    }
    50% {
      transform: translateY(-16px) scale(1.12) rotate(2deg);
    }
  }
  
  @keyframes parrotFly {
    0% {
      transform: translateY(-8px) scale(1.05) rotate(5deg);
    }
    25% {
      transform: translateY(-20px) scale(1.15) rotate(-10deg);
    }
    50% {
      transform: translateY(-30px) scale(1.2) rotate(15deg);
    }
    75% {
      transform: translateY(-25px) scale(1.1) rotate(-5deg);
    }
    100% {
      transform: translateY(-8px) scale(1.05) rotate(0deg);
    }
  }
  
  @keyframes wingFlap {
    0% {
      transform: rotate(-15deg) scaleY(1);
    }
    100% {
      transform: rotate(15deg) scaleY(0.8);
    }
  }

  @keyframes parrotFlyUp {
     0% {
       transform: translateY(-50%) rotate(-10deg) scale(1);
       opacity: 1;
     }
     30% {
       transform: translateY(-80px) rotate(-5deg) scale(1.1);
       opacity: 0.9;
     }
     60% {
       transform: translateY(-150px) rotate(5deg) scale(1.2);
       opacity: 0.6;
     }
     100% {
       transform: translateY(-300px) rotate(15deg) scale(0.3);
       opacity: 0;
     }
   }

/* Seção dos Banners do Instagram */
.instagram-banners-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(144, 255, 122, 0.08) 0%, rgba(125, 224, 104, 0.12) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
}

.instagram-banner {
  background: linear-gradient(135deg, #90ff7a 0%, #7de068 50%, #6bc956 100%);
  border-radius: 20px;
  padding: 3px;
  box-shadow: 0 10px 30px rgba(144, 255, 122, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.instagram-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #90ff7a 0%, #7de068 50%, #6bc956 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.instagram-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(144, 255, 122, 0.4);
}

.instagram-banner:hover::before {
  opacity: 0.1;
}

.instagram-content {
  background: white;
  border-radius: 17px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 120px;
}

.instagram-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #90ff7a 0%, #7de068 50%, #6bc956 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.instagram-banner:hover .instagram-icon {
  transform: scale(1.1) rotate(5deg);
}

.instagram-info {
  flex: 1;
  min-width: 0;
}

.instagram-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 5px 0;
  background: linear-gradient(135deg, #6bc956, #2E7D32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-subtitle {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.instagram-stats {
  display: flex;
  align-items: center;
  gap: 15px;
}

.followers-count {
  font-size: 0.85rem;
  color: #495057;
  font-weight: 600;
  background: #f8f9fa;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.instagram-follow-btn {
  background: linear-gradient(135deg, #90ff7a 0%, #7de068 50%, #6bc956 100%);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(144, 255, 122, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.instagram-follow-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;
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(144, 255, 122, 0.4);
}

.instagram-follow-btn:hover::before {
  left: 100%;
}

.instagram-follow-btn:active {
  transform: translateY(0);
}

/* Responsividade para tablets */
@media (max-width: 768px) {
  .instagram-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .instagram-banners-section {
    padding: 40px 15px;
  }
  
  .instagram-content {
    padding: 20px;
    min-height: 100px;
  }
  
  .instagram-icon {
    width: 50px;
    height: 50px;
  }
  
  .instagram-title {
    font-size: 1.2rem;
  }
  
  .instagram-follow-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
  .instagram-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .instagram-info {
    text-align: center;
  }
  
  .instagram-stats {
    justify-content: center;
  }
  
  .instagram-follow-btn {
    width: 100%;
    max-width: 200px;
  }
  
  .instagram-title {
    font-size: 1.1rem;
  }
  
  .instagram-subtitle {
    font-size: 0.9rem;
  }
}

   /* Responsividade do botão papagaio para mobile */
   @media (max-width: 768px) {
     #subirTopo {
       width: 50px;
       height: 50px;
       right: 15px;
       bottom: 15px;
       padding: 8px;
     }
     
     .parrot-icon {
       height: 34px;
       width: 34px;
     }
     
     @keyframes parrotFlyUp {
       0% {
         transform: translateY(-50%) rotate(-10deg) scale(1);
         opacity: 1;
       }
       30% {
         transform: translateY(-60px) rotate(-5deg) scale(1.1);
         opacity: 0.9;
       }
       60% {
         transform: translateY(-120px) rotate(5deg) scale(1.2);
         opacity: 0.6;
       }
       100% {
         transform: translateY(-200px) rotate(15deg) scale(0.2);
         opacity: 0;
       }
     }
   }
   
   @media (max-width: 480px) {
     #subirTopo {
       width: 45px;
       height: 45px;
       right: 12px;
       bottom: 12px;
       padding: 6px;
     }
     
     .parrot-icon {
       height: 30px;
       width: 30px;
     }
   }
  
  /* Menu */
  
  .navbar{
	position: fixed;
	height: 80px;
	overflow: hidden;
	top: 0;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(108, 255, 118, 0.9));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	width: 100%;
	z-index: 1001;
	transition: all 0.3s ease;
  }
  .logo{
	background: url(img/logo.png) no-repeat 50% 50%;
	background-size: contain;
	width: 130px;
	height: 100px;
	float: left;
	margin-left:20px;
  }
  .menu{
	position: fixed;
	right: 20px;
	top: 0;
	height: 80px;
	display: flex;
	align-items: center;
  }
  .menu a{
	color: #2d5016;
	text-decoration: none;
	font-weight: 500;
	margin-left: 24px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
	padding: 8px 16px;
	border-radius: 20px;
	position: relative;
  }
  .menu a:hover{
	color: #ffffff;
	background: rgba(43, 255, 0, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(43, 255, 0, 0.3);
  }
  .header{
	width: 100%;
	height: 600px;
	background: url(bg.png) no-repeat 50% 50%;
	background-size: cover;
  }
  .btn{
	display: none;
	position: absolute;
	right: 20px;
  }
  .btn:hover > span{
	background: #ffffff;
  }
  .btn span{
	display: block;
	margin: 6px;
	width: 40px;
	height: 3px;
	background: #333;
  }
  p{
	padding: 1.5rem;
	font-size: 18px;
	text-align: justify;
	text-justify: inter-character;
	word-spacing: -0.2px;
	line-height: 1.6;
	font-family: 'Inter', system-ui, sans-serif;
	color: #2c3e50;
	font-weight: 400;
	letter-spacing: 0.2px;
  }
  @media only screen and (max-width : 768px) {
	body{
	  padding-top: 70px;
	}
	.navbar{
	  overflow: visible;
	  height: 70px;
	}
	.logo{
	  width: 100px;
	  height: 80px;
	  margin-left: 1rem;
	}
	.menu{
	  position: fixed;
	  width: 100%;
	  right: 0;
	  top: 70px;
	  height: auto;
	  display: block;
	  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(108, 255, 118, 0.9));
	  backdrop-filter: blur(15px);
	  -webkit-backdrop-filter: blur(15px);
	  overflow: hidden;
	  max-height: 0;
	  border-radius: 0 0 20px 20px;
	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	  transition: all 0.3s ease;
	  z-index: 1001;
	}
	.menu a{
	  display: block;
	  text-align: center;
	  padding: 1rem;
	  margin: 0;
	  border-radius: 0;
	  font-size: 16px;
	}
	.btn{
	  display: block;
	  cursor: pointer;
	}
	.show{
	  max-height: 400px;
	}
	.fundo {
	  grid-template-columns: 1fr;
	  padding: 2rem 1rem;
	  margin: 1rem;
	}
	.fundo2 {
	  padding: 2rem 1rem;
	  margin: 1rem;
	  overflow: hidden;
	}
	.textodosobre {
	  width: 95%;
	  font-size: 16px;
	  text-indent: 0.5rem;
	  line-height: 1.5;
	  text-align: left;
	  word-spacing: 0;
	  word-break: break-word;
	  overflow-wrap: break-word;
	  hyphens: auto;
	  -webkit-hyphens: auto;
	  padding: 0 0.5rem;
	}
	
	/* Otimizar parágrafos gerais no mobile */
	p {
	  text-align: left;
	  word-spacing: 0;
	  line-height: 1.5;
	  padding: 1rem;
	  font-size: 16px;
	}
	#subirTopo {
	  bottom: 1rem;
	  right: 1rem;
	  padding: 0.75rem;
	  transform: translateY(0) scale(0.9);
	}
	
	#subirTopo.show {
	  transform: translateY(0) scale(0.9);
	}
	
	#subirTopo:hover {
	  transform: translateY(-6px) scale(0.95);
	  box-shadow: 0 12px 30px rgba(43, 255, 0, 0.35);
	}
	
	#subirTopo:active {
	  transform: translateY(-3px) scale(0.88);
	}
	
	.top {
	  height: 36px;
	  width: 36px;
	  transition: all 0.3s ease;
	}
  }
  
/* fim do menu  */


  .fundo {
	background: linear-gradient(135deg, rgba(200, 255, 145, 0.95), rgba(165, 255, 106, 0.9));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-align: center;
	padding: 5rem 2rem;
	margin: 2rem 0;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(43, 255, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .fundo2 {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-align: center;
	padding: 5rem 2rem;
	margin: 2rem 0;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	/* Corrigir overflow no mobile */
	overflow: hidden;
	word-wrap: break-word;
  }

/* Keyframes para animações */
@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(20px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes breathing {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 12px 12px 0 rgba(43, 255, 0, 0.6), 0 17px 50px 0 rgba(255, 255, 255, 0.8);
	}
	50% {
		transform: scale(1.02);
		box-shadow: 0 15px 15px 0 rgba(43, 255, 0, 0.8), 0 20px 60px 0 rgba(255, 255, 255, 0.9);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-8px);
	}
}

@keyframes shimmer {
	0% {
		filter: brightness(1) saturate(1);
	}
	50% {
		filter: brightness(1.1) saturate(1.2);
	}
	100% {
		filter: brightness(1) saturate(1);
	}
}

.imagemdosobre{
	text-align: center;
	width: 200px;
	height: 200px;
	border-radius: 50px;
	box-shadow: 0 12px 12px 0 rgba(43, 255, 0, 0.6), 0 17px 50px 0 rgba(255, 255, 255, 0.8);
	/* Transições suaves */
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.imagem2{
	text-align:right;
	width: 500px;
	height: 500px;
	border-radius: 50px;
	box-shadow: 0 12px 12px 0 rgb(43, 255, 0),0 17px 50px 0 rgb(255, 255, 255);
	/* Animação de entrada para imagem2 também */
	animation: fadeInScale 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	transition: all 0.4s ease;
}

.imagemdosobre:hover{
	box-shadow: 0 20px 20px 0 rgba(43, 255, 0, 0.8), 0 25px 70px 0 rgba(255, 255, 255, 0.9);
	transform: scale(1.08) translateY(-5px);
	filter: brightness(1.1) saturate(1.3);
}

/* Estilos para a seção Sobre Mim */
.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-section {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 30px;
}

.profile-image-container {
  position: relative;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #4CAF50;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  transition: transform 0.3s ease;
}

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

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 2.5rem;
  color: #2E7D32;
  margin: 0 0 10px 0;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

.profile-title {
  font-size: 1.3rem;
  color: #4CAF50;
  margin: 0;
  font-weight: 300;
  font-style: italic;
}

.about-text {
  margin-bottom: 40px;
}

.about-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  font-family: 'Arial', sans-serif;
}

.social-links h3 {
  color: #2E7D32;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

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

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a91a7a 100%);
}

.social-btn.pinterest {
  background: #BD081C;
  color: white;
}

.social-btn.pinterest:hover {
  background: #9d0619;
}

.social-btn.youtube {
  background: #FF0000;
  color: white;
}

.social-btn.youtube:hover {
  background: #cc0000;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.textodosobre{
	font-size: 18px;
	letter-spacing: 0.2px;
	font-family: 'Inter', system-ui, sans-serif;
	line-height: 1.6;
	text-align: justify;
	margin: 2rem auto;
	text-indent: 1.5rem;
	text-justify: inter-character;
	word-spacing: -0.2px;
	width: 90%;
	max-width: 800px;
	color: #2c3e50;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	/* Corrigir overflow no mobile */
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
  }

/* Responsividade para a seção Sobre Mim */
@media (max-width: 768px) {
  .about-container {
    padding: 20px 15px;
  }
  
  .about-content {
    padding: 30px 20px;
  }
  
  .profile-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .profile-name {
    font-size: 2rem;
  }
  
  .profile-title {
    font-size: 1.1rem;
  }
  
  .about-text p {
    font-size: 16px;
    text-align: left;
    word-spacing: 0;
  }
  
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .social-btn {
    width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .profile-image {
    width: 100px;
    height: 100px;
  }
  
  .profile-name {
    font-size: 1.8rem;
  }
  
  .about-content {
    padding: 25px 15px;
  }
  
  .about-text p {
    font-size: 15px;
    text-align: left;
    word-spacing: 0;
  }
  
  .textodosobre {
    font-size: 15px;
    text-align: left;
    word-spacing: 0;
  }
  
  p {
    font-size: 15px;
    text-align: left;
    word-spacing: 0;
  }
  
  .social-btn {
    width: 180px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  #subirTopo {
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.6rem;
    transform: translateY(0) scale(0.85);
  }
  
  #subirTopo.show {
    transform: translateY(0) scale(0.85);
  }
  
  #subirTopo:hover {
    transform: translateY(-4px) scale(0.9);
    box-shadow: 0 10px 25px rgba(43, 255, 0, 0.3);
  }
  
  #subirTopo:active {
    transform: translateY(-2px) scale(0.8);
  }
  
  .top {
    height: 32px;
    width: 32px;
  }
}

/* Media query adicional para telas muito pequenas */
@media (max-width: 360px) {
  .textodosobre {
    font-size: 14px;
    text-align: left;
    word-spacing: 0;
    padding: 0 0.3rem;
  }
  
  .about-text p {
    font-size: 14px;
    text-align: left;
    word-spacing: 0;
  }
  
  p {
    font-size: 14px;
    text-align: left;
    word-spacing: 0;
    padding: 0.8rem;
  }
}

  /* Grid de personagens modernizado */
  .fundo {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	padding: 3rem 2rem;
  }

  .larguradoicone{
	width: 100%;
	max-width: 100%;
	margin: 0;
	display: block;
  }
  
  .bordadoicone{
	width: 100%;
	height: auto;
	margin: 0;
  }
  
  .icone {
	width: 100%;
	display: block;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 1.5rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
  }
  
  .icone img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .icone:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(43, 255, 0, 0.2);
	background: rgba(255, 255, 255, 0.2);
  }
  
  .icone:hover img{
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(43, 255, 0, 0.3);
  }
  
  /* Media queries para corrigir ícones esticados no mobile */
  @media screen and (max-width: 768px) {
	.fundo {
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 1.5rem;
	  padding: 2rem 1rem;
	}
	
	.icone {
	  padding: 1rem;
	}
	
	.icone img {
	  height: 180px;
	  object-fit: cover;
	  object-position: center;
	}
  }
  
  @media screen and (max-width: 480px) {
	.fundo {
	  grid-template-columns: 1fr;
	  gap: 1rem;
	  padding: 1.5rem 1rem;
	}
	
	.icone {
	  max-width: 100%;
	  padding: 1rem;
	}
	
	.icone img {
	  height: 160px;
	  width: 100%;
	  object-fit: cover;
	  object-position: center;
	}
	
	.larguradoicone {
	  width: 100%;
	  max-width: 100%;
	}
  }
  

  .text{
	font-size: 100%;
	color: #ffffff;
	text-align: justify;
	margin: auto;
	text-indent: 30px;
	text-align: center;  
  }

  .titulo{
	color: #ffffff;
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 600;
	margin-bottom: 2rem;
	letter-spacing: 1px;
  }

  .titulo1{
	color: #00d65d;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	text-align: center;
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
  }





  /* Scrollbar melhorada com melhor visibilidade */
  body::-webkit-scrollbar {
	width: 14px;               /* largura da scrollbar aumentada */
  }
  
  body::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);        /* fundo escuro sutil */
	border-radius: 10px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  }
  
  body::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #2b8f47, #1a5f2f);    /* gradiente verde escuro */
	border-radius: 10px;       /* bordas arredondadas */
	border: 2px solid rgba(255, 255, 255, 0.1);    /* borda sutil */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
  }
  
  body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #00d65d, #2b8f47);    /* verde mais vibrante no hover */
	box-shadow: 0 4px 12px rgba(43, 255, 0, 0.3);
	transform: scale(1.05);
  }
  
  body::-webkit-scrollbar-thumb:active {
	background: linear-gradient(180deg, #1a5f2f, #0f3d1f);    /* verde mais escuro quando ativo */
  }

  /* Footer moderno e elegante */
  footer {
	margin-top: 4rem;
	position: relative;
	overflow: hidden;
  }
  
  .rodape {
	background-color: #90ff7a;
	color: rgb(54, 54, 54);
	height: 5vh;
	text-align: center;
	padding: 15px;
	background: linear-gradient(135deg, #90ff7a 0%, #7de068 50%, #6bc956 100%);
	box-shadow: 0 -4px 15px rgba(144, 255, 122, 0.3);
	position: relative;
	overflow: hidden;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	font-family: 'Inter', 'Poppins', system-ui, sans-serif;
	margin: 0;
  }

  .link-footer {
	color: rgb(54, 54, 54);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding: 2px 4px;
	border-radius: 4px;
  }

  .link-footer:hover {
	color: #2d4a2d;
	background-color: rgba(255, 255, 255, 0.2);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
  }

  .link-footer:active {
	transform: translateY(0);
	background-color: rgba(255, 255, 255, 0.3);
  }
  
  .rodape::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
	animation: shimmer 3s ease-in-out infinite;
	pointer-events: none;
  }
  
  .rodape strong {
	color: #90ff7a;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
  }
  
  .rodape strong:hover {
	color: #ffffff;
	text-shadow: 0 0 10px rgba(144, 255, 122, 0.8);
	transform: scale(1.05);
  }
  
  @keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
  }
  
  /* Responsividade para mobile */
  @media (max-width: 768px) {
	.rodape {
	  padding: 1.5rem 1rem;
	  font-size: 0.9rem;
	  min-height: 50px;
	}
	
	.link-footer {
	  padding: 3px 6px;
	  border-radius: 6px;
	}
	
	.link-footer:hover {
	  transform: translateY(-0.5px);
	}
  }
  
  @media (max-width: 480px) {
	.rodape {
	  padding: 1.2rem 0.8rem;
	  font-size: 0.85rem;
	  min-height: 45px;
	}
	
	.link-footer {
	  padding: 2px 4px;
	  font-size: 0.85rem;
	  vertical-align: baseline;
	}
	
	.link-footer:hover {
	  transform: translateY(-0.5px);
	}
	
	.rodape strong {
	  display: inline;
	  margin-top: 0;
	  font-size: 0.85rem;
	  vertical-align: baseline;
	}
  }
  
  @media (max-width: 360px) {
	.rodape {
	  padding: 1rem 0.5rem;
	  font-size: 0.8rem;
	  min-height: 40px;
	}
	
	.link-footer {
	  padding: 2px 3px;
	  font-size: 0.8rem;
	  vertical-align: baseline;
	}
	
	.link-footer:hover {
	  transform: translateY(-0.5px);
	}
	
	.rodape strong {
	  display: inline;
	  font-size: 0.8rem;
	  vertical-align: baseline;
	}
  }

  /* Footer de Direitos Autorais da Natália - Design Premium */
  .copyright-footer {
	background: linear-gradient(135deg, 
	  rgba(107, 201, 86, 0.95) 0%, 
	  rgba(125, 224, 104, 0.98) 25%,
	  rgba(144, 255, 122, 1) 50%,
	  rgba(125, 224, 104, 0.98) 75%,
	  rgba(107, 201, 86, 0.95) 100%);
	color: #ffffff;
	padding: 3rem 2rem;
	text-align: center;
	font-family: 'Inter', 'Poppins', system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	box-shadow: 
	  0 -8px 32px rgba(107, 201, 86, 0.4),
	  0 -4px 16px rgba(144, 255, 122, 0.3),
	  inset 0 1px 0 rgba(255, 255, 255, 0.2);
	margin-top: 4rem;
	border-top: 3px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
  }

  .copyright-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 200%;
	height: 100%;
	background: linear-gradient(90deg, 
	  transparent 0%, 
	  rgba(255, 255, 255, 0.1) 25%,
	  rgba(255, 255, 255, 0.2) 50%,
	  rgba(255, 255, 255, 0.1) 75%,
	  transparent 100%);
	animation: shimmerAdvanced 6s ease-in-out infinite;
	pointer-events: none;
  }

  .copyright-footer::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, 
	  transparent 0%,
	  rgba(255, 255, 255, 0.6) 20%,
	  rgba(255, 255, 255, 0.9) 50%,
	  rgba(255, 255, 255, 0.6) 80%,
	  transparent 100%);
	animation: glowLine 4s ease-in-out infinite alternate;
  }

  .footer-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
	flex-wrap: wrap;
  }

  .copyright-text {
	margin: 0;
	color: #ffffff;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	line-height: 1.6;
  }

  .copyright-text p {
	margin: 0.5rem 0;
	font-size: 1rem;
  }

  .copyright-text .subtitle {
	font-size: 0.9rem;
	font-weight: 400;
	opacity: 0.9;
	font-style: italic;
  }



  /* Animações avançadas para o footer */
  @keyframes shimmerAdvanced {
	0% {
	  transform: translateX(-100%);
	}
	100% {
	  transform: translateX(100%);
	}
  }

  @keyframes glowLine {
	0% {
	  opacity: 0.6;
	  transform: scaleX(0.8);
	}
	100% {
	  opacity: 1;
	  transform: scaleX(1);
	}
  }

  @keyframes floatIcon {
	0%, 100% {
	  transform: translateY(0px);
	}
	50% {
	  transform: translateY(-3px);
	}
  }



  /* Responsividade premium para o footer de direitos autorais */
  @media (max-width: 768px) {
	.copyright-footer {
	  padding: 2rem 1.5rem;
	  font-size: 0.95rem;
	  margin-top: 2.5rem;
	}
	
	.footer-content {
	  flex-direction: column;
	  gap: 1rem;
	  text-align: center;
	}
	
	.copyright-text p {
	  font-size: 0.95rem;
	  line-height: 1.5;
	}
  }

  @media (max-width: 480px) {
	.copyright-footer {
	  padding: 1.8rem 1rem;
	  font-size: 0.9rem;
	  margin-top: 2rem;
	  letter-spacing: 0.5px;
	}
	
	.copyright-text p {
	  font-size: 0.9rem;
	  line-height: 1.4;
	  margin: 0.3rem 0;
	}
	
	.copyright-text .subtitle {
	  font-size: 0.8rem;
	}
  }

  @media (max-width: 390px) {
	.copyright-footer {
	  padding: 1.5rem 0.8rem;
	  font-size: 0.85rem;
	  margin-top: 1.8rem;
	  letter-spacing: 0.3px;
	}
	
	.copyright-text p {
	  font-size: 0.85rem;
	  line-height: 1.3;
	  margin: 0.2rem 0;
	}
	
	.copyright-text .subtitle {
	  font-size: 0.75rem;
	}
  }

  @media (max-width: 360px) {
	.copyright-footer {
	  padding: 1.2rem 0.6rem;
	  font-size: 0.8rem;
	  margin-top: 1.5rem;
	  letter-spacing: 0.2px;
	}
	
	.copyright-text p {
	  font-size: 0.8rem;
	  line-height: 1.2;
	  margin: 0.1rem 0;
	}
	
	.copyright-text .subtitle {
	  font-size: 0.7rem;
	}
  }

  /* Otimizações específicas para dispositivos muito pequenos */
  @media (max-width: 320px) {
	.copyright-footer {
	  padding: 1rem 0.5rem;
	  font-size: 0.75rem;
	  margin-top: 1.2rem;
	  letter-spacing: 0.1px;
	}
	
	.copyright-text p {
	  font-size: 0.75rem;
	  line-height: 1.1;
	  margin: 0;
	}
	
	.copyright-text .subtitle {
	  font-size: 0.65rem;
	}
  }
