 @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1d1d1d;
    background-color: #fdfcfa;
    
  }


  
.hero {
  height: 90vh;
  display: flex;
  align-items: center;      /* centraliza verticalmente */
  justify-content: center;  /* centraliza horizontalmente */
  text-align: center;
  color: white;
  background: linear-gradient(
      rgba(248, 92, 92, 0.527),
      rgba(255, 200, 200, 0.295)
    ),
    url("../img/catdogcat.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
}

 .hero-text {
  display: flex;               /* vira flexbox */
  flex-direction: column;      /* elementos em coluna */
  align-items: center;         /* centraliza horizontal */
  justify-content: center;     /* centraliza vertical */
  max-width: 50%;              /* um pouco maior que 50% */
   
}

  .hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .pets {
    color: #f85c5c;
    background: linear-gradient(to right, #f85c5c, #ff90e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }

  .hero-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #312b2b;
    width: 80%;
   background: rgba(248, 142, 142, 0.3);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 12px;
  font-family: "Lato", sans-serif;


  }

  .buttons {
    display: flex;
    gap: 1rem;
  }

  button.register {
    background-color: #f85c5c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }

  button.services {
    background-color: white;
    border: 1px solid #333;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }

  button.services:hover{
    background-color: #ffe8e8;
  }

  .register:hover{
    background-color: #fa4646;

  }

  .hero-img img {
    width: 400px;
  }

  .services-section {
    background-color: #fff;
    text-align: center;
    padding: 3rem 2rem;
  }

  .services-section h2 {
    color: #f85c5c;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .card {
    background-color: #fafafa;
    border: 1px solid #e2e2e2;
    padding: 2rem;
    border-radius: 12px;
    width: 200px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  /* Features Section */
  .features {
    padding: 90px 0;
    background-image: url(../img/patinhas_back_4.png);
    background-size: cover;
   
  }

  .section-header {
    text-align: center;
  }

  .section-header h2 {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
  }

  .section-header p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-left: 18px;
  }

  .feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #ff5e5e;
    transition: transform 0.3s ease;
    align-items: center;
    justify-content: space-between;
    margin: 40px;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-card:nth-child(2) {
    border-top-color: #f85c5c;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    background-color: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
  }

  .feature-icon i {
    font-size: 32px;
    color: #ff5e5e;
  }

  .feature-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
  }

  .feature-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .feature-link {
    color: #ff5e5e;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }

  .feature-link:hover {
    color: #f85c5c;
  }



  
/* NEW ONG INFO SECTION - clean and modern */

.ongs-info {
  background: rgba(229, 194, 183,0.8);
  padding: 80px 0;
}

.ongs-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.ongs-title {
  font-size: 36px;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.ongs-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.5;
}

.ongs-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #ffe1e1;
  color: #ff5e5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}

.item-text h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 6px;
}

.item-text p {
  color: #666;
  line-height: 1.6;
}

  .hero_ong {
    position: relative;
    height: 400px;
    overflow: hidden;
  }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(229, 194, 183,0.7) 20%, rgba(229, 194, 183,0.5), transparent);
}




:root {
	--rotate-speed: 40;
	--count: 8; /* Default count, the DOM element should override this */
	--easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
	--easing: cubic-bezier(0.000, 0.37, 1.000, 0.63);
}



.void {
	width: 100%;
	max-width: 1024px;
	margin: auto;
	position: relative;
	aspect-ratio: 1 / 1;
}
ul:hover * {
	animation-play-state: paused;
}
   .void ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	outline: 2px dotted magenta;
	z-index: 1;
}
  .void li {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
/* 	outline: 2px dashed cyan; */
	width: 100%;
	animation: rotateCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
}
.card {
	width: 27%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px 24px;
	gap: 8px;
	background: #FFFFFF;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1), 0px 16px 32px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #535062;
	animation: rotateCCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
}
.void a {
	text-decoration: none;
	color: unset;
}
.model-name {
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: #ff5e5e;
	display: block;
}
.void svg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
} 

li:nth-child(2), li:nth-child(2) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -1s);
}
li:nth-child(3), li:nth-child(3) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -2s);
}
li:nth-child(4), li:nth-child(4) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -3s);
}
li:nth-child(5), li:nth-child(5) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -4s);
}
li:nth-child(6), li:nth-child(6) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -5s);
}
li:nth-child(7), li:nth-child(7) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -6s);
}
li:nth-child(8), li:nth-child(8) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -7s);
}

@keyframes rotateCW {
	from {
		transform: translate3d(0px, -50%, -1px) rotate(-45deg);
	}
	to {
		transform: translate3d(0px, -50%, 0px) rotate(-315deg);
	}
}
@keyframes rotateCCW {
	from {
		transform: rotate(45deg);
	}
	to {
		transform: rotate(315deg);
	}
}
@keyframes pulseGlow {
	from {
		background-size: 60%;
	}
	to {
		background-size: 100%;
	}
}

.center-circle {
	position: absolute;
	width: 230px;
	aspect-ratio: 1 / 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
	border-radius: 50%;
}
.second-circle {
	position: absolute;
	width: 40%;
	aspect-ratio: 1 / 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #F5F4FE;
	opacity: 0.5;
	box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
	border-radius: 50%;
}
.last-circle {
	position: absolute;
	width: 66%;
	aspect-ratio: 1 / 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #F5F4FE;
	opacity: 0.25;
	box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
	border-radius: 50%;
}
.crop {
	-webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1));
}
.mask {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	animation: pulseGlow 5s linear infinite alternate;
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-image: radial-gradient(
    100% 50% at 100% 50%,
    rgba(255, 94, 94, 0.25) 0%,
    rgba(255, 94, 94, 0.247) 11.79%,
    rgba(255, 94, 94, 0.241) 21.38%,
    rgba(255, 94, 94, 0.232) 29.12%,
    rgba(255, 94, 94, 0.219) 35.34%,
    rgba(255, 94, 94, 0.204) 40.37%,
    rgba(255, 94, 94, 0.187) 44.56%,
    rgba(255, 94, 94, 0.167) 48.24%,
    rgba(255, 94, 94, 0.147) 51.76%,
    rgba(255, 94, 94, 0.125) 55.44%,
    rgba(255, 94, 94, 0.103) 59.63%,
    rgba(255, 94, 94, 0.081) 64.66%,
    rgba(255, 94, 94, 0.059) 70.88%,
    rgba(255, 94, 94, 0.038) 78.62%,
    rgba(255, 94, 94, 0.018) 88.21%,
    rgba(255, 94, 94, 0) 100%
);



}

.mask-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
   font-family: "Elms Sans", sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #ff5e5e;
}

.mask:after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	right: 0;
	display: block;
	background-image: linear-gradient(180deg, rgba(60, 26, 229, 0) 0%, #ff5e5e 50%, rgba(60, 26, 229, 0) 100%);
}

