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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  width: 100%;
}

section,
div,
header,
footer,
nav {
  max-width: 100%;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.animate-fade-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation for lists */
.benefit.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.benefit:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit:nth-child(3) {
  animation-delay: 0.3s;
}

.feature.animate-in {
  animation: slideInLeft 0.6s ease-out forwards;
}

.feature:nth-child(1) {
  animation-delay: 0.05s;
}
.feature:nth-child(2) {
  animation-delay: 0.1s;
}
.feature:nth-child(3) {
  animation-delay: 0.15s;
}
.feature:nth-child(4) {
  animation-delay: 0.2s;
}
.feature:nth-child(5) {
  animation-delay: 0.25s;
}
.feature:nth-child(6) {
  animation-delay: 0.3s;
}
.feature:nth-child(7) {
  animation-delay: 0.35s;
}
.feature:nth-child(8) {
  animation-delay: 0.4s;
}
.feature:nth-child(9) {
  animation-delay: 0.45s;
}
.feature:nth-child(10) {
  animation-delay: 0.5s;
}

.plan.animate-in {
  animation: scaleIn 0.5s ease-out forwards;
}

.plan:nth-child(1) {
  animation-delay: 0.1s;
}
.plan:nth-child(2) {
  animation-delay: 0.2s;
}
.plan:nth-child(3) {
  animation-delay: 0.3s;
}
.plan:nth-child(4) {
  animation-delay: 0.4s;
}

.social-item.animate-in {
  animation: slideInRight 0.6s ease-out forwards;
}

.social-item:nth-child(1) {
  animation-delay: 0.1s;
}
.social-item:nth-child(2) {
  animation-delay: 0.2s;
}
.social-item:nth-child(3) {
  animation-delay: 0.3s;
}

.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #0f172a;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand span {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: #eeeeee;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
}

/* Menu Toggle Checkbox (Hidden) */
.menu-toggle {
  display: none;
}

/* Hamburger Icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #eeeeee;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 350px;
  height: 100vh;
  background: #1e293b;
  padding: 80px 30px 30px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.menu-toggle:checked ~ .nav-menu {
  right: 0;
}

.nav-menu li {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.menu-toggle:checked ~ .nav-menu li {
  opacity: 1;
  transform: translateX(0);
}

.menu-toggle:checked ~ .nav-menu li:nth-child(1) {
  transition-delay: 0.1s;
}

.menu-toggle:checked ~ .nav-menu li:nth-child(2) {
  transition-delay: 0.15s;
}

.menu-toggle:checked ~ .nav-menu li:nth-child(3) {
  transition-delay: 0.2s;
}

.menu-toggle:checked ~ .nav-menu li:nth-child(4) {
  transition-delay: 0.25s;
}

.menu-toggle:checked ~ .nav-menu li:nth-child(5) {
  transition-delay: 0.3s;
}

.nav-menu a {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #eeeeee;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.nav-menu a:hover {
  color: #3b82f6;
}

/* Fechar menu ao navegar */
.nav-menu a:active ~ .menu-toggle,
.nav-menu a:focus ~ .menu-toggle {
  display: none;
}

.nav-menu .nav-cta {
  background: #3b82f6;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  text-align: center;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.nav-menu .nav-cta:hover {
  background: #f59e0b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Desktop Menu */
@media only screen and (min-width: 992px) {
  .main-navbar {
    padding: 20px 40px;
  }

  .navbar-brand span {
    font-size: 1.4rem;
  }

  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    gap: 35px;
    box-shadow: none;
  }

  .nav-menu li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1rem;
    position: relative;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
  }

  .nav-menu a:hover::after {
    width: 100%;
  }

  .nav-menu .nav-cta {
    margin-top: 0;
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .nav-menu .nav-cta::after {
    display: none;
  }
}

@media only screen and (min-width: 1440px) {
  .main-navbar {
    padding: 25px 60px;
  }

  .navbar-brand span {
    font-size: 1.6rem;
  }

  .nav-menu {
    gap: 45px;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .nav-menu .nav-cta {
    padding: 12px 28px;
    font-size: 1.05rem;
  }
}

/* @media only screen and (min-width: 600px) {
  .hero-section {
    flex-direction: row-reverse;
    gap: 200px;
  }
  .hero-section > img {
    height: 400px;
    width: 400px;
  }
  .hero-section .hero-align {
    width: 600px;
  }
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .hero-section h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .hero-section button {
    font-size: 2.5rem;
  }
} */

.hero-section {
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: #0f172a;
  padding: 80px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

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

.hero-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.03);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-section > img {
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(59, 130, 246, 0.5);
  position: relative;
  z-index: 1;
  animation: fadeInScale 1s ease-out, subtleFloat 4s ease-in-out 1s infinite;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-section h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #eeeeee;
  margin-bottom: 10px;
  width: 100%;
  animation: slideInLeft 0.8s ease-out 0.3s both;
}

.hero-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #eeeeee;
  width: 100%;
  animation: slideInLeft 0.8s ease-out 0.5s both;
}
.hero-badge {
  display: inline-block;
  background: #3b82f6;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  letter-spacing: 0.5px;
  animation: fadeInDown 0.6s ease-out;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 992px) {
  .hero-badge {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}
.hero-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #eeeeee;
  width: 100%;
}
.hero-section button {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  background: #3b82f6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 900;
  position: relative;
  overflow: hidden;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}
.hero-section button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hero-section button:hover::before {
  width: 300px;
  height: 300px;
}
.hero-section button:hover {
  background: #f59e0b;
  transform: translateY(-3px) scale(1.02);
  box-shadow: rgba(245, 158, 11, 0.5) 0px 12px 30px;
  animation: none;
}

.stats-section {
  background: #ffffff;
  padding: 40px 15px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
  width: 100%;
}
.stat-item {
  padding: 20px 10px;
  background: #f8fafc;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: rgba(59, 130, 246, 0.2) 0px 8px 20px;
  border-color: #3b82f6;
}
.stat-number {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #3b82f6;
  margin-bottom: 10px;
}
.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #434343;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .stats-section {
    padding: 80px 40px;
  }
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  .stat-item {
    padding: 30px 20px;
  }
  .stat-number {
    font-size: 3.5rem;
  }
  .stat-label {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 1440px) {
  .stats-section {
    padding: 100px 60px;
  }
  .stats-container {
    gap: 40px;
  }
  .stat-item {
    padding: 40px 25px;
  }
}

@media only screen and (max-width: 800px) {
  .hero-section {
    flex-direction: column;
    padding: 80px 15px 30px;
  }
  .hero-section > img {
    margin-bottom: 30px;
    height: 180px;
    width: 180px;
  }
  .hero-section h1 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .hero-section h2 {
    font-size: 0.95rem;
    line-height: 1.3rem;
  }
  .hero-section button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media only screen and (min-width: 800px) {
  .hero-section {
    flex-direction: row-reverse;
    gap: 50px;
  }
  .hero-section .hero-align {
    max-width: 450px;
  }
  .hero-section h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .hero-section h2 {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
  .hero-section button {
    font-size: 1.1rem;
  }
}

@media only screen and (min-width: 992px) {
  .hero-section {
    flex-direction: row-reverse;
    gap: 80px;
    padding: 80px 40px 40px;
  }
  .hero-section::before {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
  }
  .hero-section::after {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -120px;
  }
  .hero-section > img {
    height: 350px;
    width: 350px;
  }
  .hero-section .hero-align {
    max-width: 550px;
  }
  .hero-section h1 {
    font-size: 2.8rem;
    line-height: 3rem;
  }
  .hero-section h2 {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  .hero-section button {
    font-size: 1.3rem;
    padding: 15px 30px;
  }
}

@media only screen and (min-width: 1440px) {
  .hero-section {
    flex-direction: row-reverse;
    gap: 120px;
    padding: 100px 60px 60px;
  }
  .hero-section::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
  }
  .hero-section::after {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
  }
  .hero-section > img {
    height: 450px;
    width: 450px;
  }
  .hero-section .hero-align {
    max-width: 700px;
  }
  .hero-section h1 {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }
  .hero-section h2 {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
  .hero-section button {
    font-size: 1.5rem;
    padding: 18px 40px;
  }
}

.default-section {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  padding: 60px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-x: hidden;
}
@media only screen and (min-width: 992px) {
  .default-section {
    padding: 80px 40px 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .default-section {
    padding: 100px 60px 60px;
  }
}
.default-section > h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: bold;
  color: #0f172a;
  margin: 30px 0 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 20px;
}
.default-section > h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3b82f6;
  border-radius: 2px;
}
@media only screen and (min-width: 992px) {
  .default-section > h3 {
    font-size: 2.2rem;
    line-height: 2.6rem;
    margin: 70px 0;
  }
}
@media only screen and (min-width: 1440px) {
  .default-section > h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.default-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-bottom: 30px;
  width: 100%;
  max-width: 100%;
}
.benefit {
  max-width: 300px;
  width: 100%;
  background: #ffffff;
  box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.2) 0px 3px 7px -3px;
  padding: 20px 15px;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #3b82f6;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.benefit:hover {
  transform: translateY(-8px);
  box-shadow: rgba(59, 130, 246, 0.25) 0px 15px 30px -5px,
    rgba(0, 0, 0, 0.2) 0px 8px 16px -5px;
  border-color: #3b82f6;
}
.benefit:hover::before {
  transform: scaleX(1);
}
.benefit > svg {
  width: 35%;
  margin: 15px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.2));
}
.benefit:hover > svg {
  transform: scale(1.1) translateY(-5px);
  filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.4));
}
.benefit > h4 {
  font-family: "Roboto", sans-serif;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.2rem;
  padding: 10px 5px;
}
.benefit > p {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.3rem;
  padding: 10px 5px;
  color: #434343;
}
@media only screen and (min-width: 992px) {
  .benefit {
    max-width: 350px;
  }
  .benefit > h4 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .benefit > p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.features-section {
  background: #f8fafc;
  position: relative;
}
.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}
.feature {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  margin: 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 20px 15px;
  box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.2) 0px 3px 7px -3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature:hover {
  transform: translateX(5px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px;
}
.feature > span {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  font-weight: 900;
  font-size: 1.1rem;
}
.feature > h4 {
  font-family: "Roboto", sans-serif;
  background-color: #d9d9d9;
  font-size: 0.95rem;
  line-height: 1.2rem;
  padding: 10px 10px 10px 65px;
  text-align: start;
  border-radius: 5px;
}
.feature > p {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  line-height: 1.3rem;
  padding: 15px 10px;
  text-align: start;
}
@media only screen and (min-width: 992px) {
  .feature {
    max-width: 450px;
    padding: 25px;
  }
  .feature > span {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    top: 25px;
    left: 20px;
  }
  .feature > h4 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding: 15px 15px 15px 80px;
  }
  .feature > p {
    font-size: 1rem;
    line-height: 1.4rem;
    padding: 20px 15px;
  }
}

.plan {
  background: #ffffff;
  box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.2) 0px 3px 7px -3px;
  width: 100%;
  max-width: 200px;
  padding: 20px 15px;
  text-align: left;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e2e8f0;
  position: relative;
}
.plan:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -5px,
    rgba(0, 0, 0, 0.3) 0px 10px 25px -5px;
  border-color: #3b82f6;
}
.plan > h4 {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.3rem;
}
.plan > span {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.plan-benefits {
  padding-block: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  line-height: 1.3rem;
}
@media only screen and (min-width: 992px) {
  .plan {
    max-width: 250px;
    padding: 30px;
  }
  .plan > h4 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .plan > span {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .plan-benefits {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }
}
.plan-benefits > .included {
  list-style: none;
}
.plan-benefits > .included::before {
  content: "\2713";
  padding-right: 8px;
}
.plan-benefits > .non-included {
  list-style: none;
  color: #000;
  text-decoration: line-through;
}
.plan-benefits > .non-included::before {
  text-decoration: none;
  content: "\00D7";
  padding-right: 8px;
}
.recomended-plan {
  background: #3b82f6;
  color: whitesmoke;
  position: relative;
  transform: scale(1.08);
  border: 3px solid #3b82f6;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.35);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.35);
  }
  50% {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6),
      0 0 30px rgba(59, 130, 246, 0.3);
  }
}

.recomended-plan::before {
  content: "⭐ MOST POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.recomended-plan:hover {
  transform: scale(1.12);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
  animation: none;
}
.recomended-plan .non-included {
  color: rgb(213, 213, 213);
}

.button {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  background: #3b82f6;
  color: #ffffff;
  padding: 10px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  width: 100%;
  max-width: 500px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.button:hover::before {
  width: 300px;
  height: 300px;
}
.button:hover {
  background: #f59e0b;
  transform: translateY(-2px) scale(1.02);
  box-shadow: rgba(245, 158, 11, 0.5) 0px 8px 24px;
}
@media only screen and (min-width: 992px) {
  .button {
    font-size: 1.2rem;
    padding: 15px 30px;
    max-width: 600px;
  }
}

.about-section {
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  line-height: 1.2rem;
  text-align: left;
  position: relative;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
}
.about-section strong {
  color: #3b82f6;
  font-size: 0.9rem;
}
@media only screen and (min-width: 992px) {
  .about-section {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
  .about-section strong {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .about-section {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .about-section strong {
    font-size: 1.3rem;
  }
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

.contact-section {
  background: #0f172a;
  position: relative;
  overflow: hidden;
}
.contact-section .container {
  max-width: 100%;
}
.contact-section .default-list {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media only screen and (min-width: 992px) {
  .contact-section .default-list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1440px) {
  .contact-section .default-list {
    gap: 80px;
  }
}
.contact-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-section > h3 {
  color: #f9f9f9;
}
.contact-section > h3 > .marked {
  color: #f59e0b;
}

.contact-form {
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 15px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.contact-form > h4 {
  padding: 15px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4rem;
}
@media only screen and (min-width: 992px) {
  .contact-form {
    max-width: 600px;
    padding: 40px;
  }
  .contact-form > h4 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1440px) {
  .contact-form {
    max-width: 700px;
    padding: 50px;
  }
}
.contact-form > form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
}
@media only screen and (min-width: 992px) {
  .contact-form > form {
    font-size: 1.1rem;
    gap: 20px;
  }
}
.contact-form > form > div {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2px;
}
.contact-form > form > div > input {
  border: 1px solid gray;
  height: 30px;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}
.contact-form > form > div > input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}
@media only screen and (min-width: 992px) {
  .contact-form > form > div > input {
    height: 45px;
    font-size: 1rem;
    padding: 8px 15px;
  }
}
.contact-form > form > div > textarea {
  border: 1px solid gray;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.contact-form > form > div > textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block: 20px;
  width: 100%;
  max-width: 300px;
}
@media only screen and (min-width: 992px) {
  .social {
    max-width: 450px;
    margin-block: 0;
  }
}
.social-item {
  display: flex;
  gap: 30px;
  color: #f9f9f9;
  transition: all 0.3s ease;
}
.social-item:hover {
  transform: translateX(10px);
}
.social-item svg {
  transition: all 0.3s ease;
}
.social-item:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
}
.social-item a {
  color: #f9f9f9;
  text-decoration: none;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  line-height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .social-item a {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
  .social-item svg {
    width: 48px;
    height: auto;
  }
}

footer {
  background: #0f172a;
  padding: 30px 15px;
  border-top: 2px solid #1e293b;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 20px;
  width: 100%;
  max-width: 100%;
}

.footer-menu li {
  width: auto;
  min-width: 120px;
  height: 30px;
  text-align: center;
  color: #efefef;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
}
.footer-menu li a {
  color: #efefef;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #f59e0b);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.footer-menu li a:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}
.footer-menu li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
