@import url("https://fonts.cdnfonts.com/css/general-sans");

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: black;
  font-family: "General Sans", sans-serif;
  font-weight: 400;
}

:root {
  --color1: #ff7e5f;
  --color2: #6b48ff;
  --color3: #1ea896;
  --color4: #feb47b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 100;
}

.menu {
  display: flex;
  gap: 2rem;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
}

.btn-try {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-buy {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

#banner {
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 0 10%;
  align-items: center;
  background: radial-gradient(circle at 0 0, var(--color1), transparent 50%),
    radial-gradient(circle at 100% 0, var(--color2), transparent 50%),
    radial-gradient(circle at 100% 100%, var(--color3), transparent 50%),
    radial-gradient(circle at 0 100%, var(--color4), transparent 50%);
  background-size: 200% 200%;
  color: white;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#text-container {
  max-width: 600px;
}

.title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.stats {
  margin-top: 2rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.stats-text {
  font-size: 1rem;
  color: #ffffff;
}

#magnifier {
  position: fixed;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: none;
}

.hamburger {
  display: none;
}

@media (max-width: 860px) {
  nav {
    padding: 20px;
  }

  .menu,
  .action-buttons {
    display: none;
  }

  .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(193, 193, 193, 0.361);
    padding: 20px;
    text-align: center;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    color: white;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
  }

  .title {
    font-size: 3rem;
  }

  #banner {
    padding: 0 5%;
  }
}
.banner1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
  color: #ffffff80;
}

.circles-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -50px; /* Negative gap for overlapping */
  padding: 20px;
}

.circle {
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -30px; /* Creates overlap effect */
}

.circle:first-child {
  margin-left: 0;
}

.logo {
  width: 40%;
  height: auto;
  filter: brightness(0) invert(1); /* Makes logos white */
}

/* Responsive adjustments */
@media (max-width: 860px) {
  .circles-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .circle {
    width: 150px;
    height: 150px;
    margin-left: -20px;
  }

  .logo {
    width: 40%;
    height: auto;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: black;
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: auto;
}

#banner {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 0 0, var(--color1), transparent 50%),
    radial-gradient(circle at 100% 0, var(--color2), transparent 50%),
    radial-gradient(circle at 100% 100%, var(--color3), transparent 50%),
    radial-gradient(circle at 0 100%, var(--color4), transparent 50%);
  background-size: 200% 200%;
  transition: background-position 0.3s ease;
}

.banner {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 50px; /* Añadido margen superior */
  padding: 40px 0px 40px 0px;
  text-align: center;
}

.banner3 {
  position: relative;
  width: 100%;
  color: white;
  padding: 4rem 6rem;
  overflow: hidden;
}

.aura {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 68, 0, 0.3);
  filter: blur(100px);
  animation: colorChange 10s infinite alternate;
}

@keyframes colorChange {
  0% {
    background: #0bc0d4;
  }
  33% {
    background: #ff4d00;
  }
  66% {
    background: #0a40ac;
  }
  100% {
    background: #ff4d00;
  }
}

.content {
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.circles1-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
}

.circle1 {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.circle1:hover {
  transform: scale(1.05);
}

.circle1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle1 h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.circle1 a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.circle1 a:hover {
  color: white;
}

@media (max-width: 860px) {
  .circles1-container {
    flex-direction: column;
  }
  .banner3 {
    padding: 0;
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .how {
    text-align: center;
    margin-top: 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .circle1 {
    width: 180px;
    height: 180px;
  }
}

.banner4 {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.banner4-content {
  display: flex;
  gap: 4rem;
  padding: 2rem 3rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.banner4-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.banner4-section {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
}

.section-title {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #666;
}

.section-heading {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 0.875rem;
  color: #999;
  line-height: 1.6;
}

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
}

.scroll-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.portfolio-section {
  padding: 4rem 2rem;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.portfolio-title {
  font-size: 3rem;
  font-weight: bold;
}

.portfolio-description {
  max-width: 300px;
  color: #999;
  line-height: 1.6;
  margin: 20px;
}

.scroll-text {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.portfolio-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.portfolio-container::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  min-width: 360px;
  position: relative;
}

.card-number {
  font-size: 2rem;
  color: #666;
  margin-bottom: 1rem;
}

.image-container {
  position: relative;
  width: 100%;
  height: 360px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.overlay-text {
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover .card-image {
  transform: scale(1.1);
  filter: blur(3px);
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.card-description {
  color: #999;
  line-height: 1.4;
  font-size: 0.9rem;
}

.scroll-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-btn {
  background: none;
  border: 1px solid #666;
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: #333;
}

.container6 {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  margin-bottom: 2rem;
  margin: 30px;
}

.header h1 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.header p {
  color: #999;
  line-height: 1.6;
  max-width: 800px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background-color: #000000;
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px white solid;
}

.stat-card.highlight {
  background: linear-gradient(135deg, #0bc0d489 0%, #0a40aca7 100%);
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 4rem;
  font-weight: bold;
  color: white;
}

@media (max-width: 860px) {
  .stats-grid {
    grid-template-columns: 1fr;
    margin: 30px;
  }
  .portfolio-header {
    display: grid;

    margin-bottom: 4rem;
  }
}
:root {
  --dark-bg: #000000;
  --text-color: #ffffff;
  --accent-color: #0bc0d4;
}

.Body2 {
  background-color: var(--dark-bg);
  color: var(--text-color);

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.banner7 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7rem;
  gap: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}

.banner7-text {
  font-size: 2rem;
  line-height: 1.2;
  max-width: 60%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}

.start-project {
  background: var(--accent-color);
  color: var(--text-color);
  border: none;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  font-size: 20px;
}

.start-project::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(22, 81, 164, 0.2) 0%,
    rgba(244, 163, 129, 0) 70%
  );
  z-index: -1;
}

.start-project:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(215, 96, 45, 0.4);
}

.footer {
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
  display: flex;
  gap: 3rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.social-links img {
  width: 30px;
}

.social-links a:hover {
  opacity: 1;
}

.logo {
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width: 860px) {
  .banner7 {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .banner7-text {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}

body {
  font-family: "General Sans", sans-serif;
  font-weight: 300;
}

.linkphone,
.linkmail,
.home1 {
  text-decoration: none;
  color: white;
}
/* Reset solo para el contenedor del formulario */
.contact-form-wrapper {
  margin: 0;
  padding: 70px;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
  min-height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.contact-form-wrapper *,
.contact-form-wrapper *::before,
.contact-form-wrapper *::after {
  box-sizing: border-box;
}

/* Aura que sigue el cursor - solo dentro del wrapper */
.contact-form-wrapper .cursor-aura {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle,
    rgba(43, 67, 226, 0.577) 0%,
    rgba(0, 2, 130, 0.508) 30%,
    transparent 70%
  );
  filter: blur(60px);
  transition: all 0.2s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.contact-form-wrapper:hover .cursor-aura {
  opacity: 1;
}

/* Contenedor principal con glassmorphismo */
.contact-form-wrapper .form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.contact-form-wrapper .form-title {
  text-align: center;
  color: white;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form-wrapper .form-grid {
  display: grid;
  gap: 20px;
}

.contact-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-wrapper .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form-wrapper label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: rgba(226, 95, 43, 0.6);
  box-shadow: 0 0 20px rgba(49, 43, 226, 0.275);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.contact-form-wrapper .submit-btn {
  background: linear-gradient(135deg, #062d72 0%, #055a72 100%);
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  box-shadow: 0 5px 5px #055a72;
}

.contact-form-wrapper .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 5px #055a72;
  background: linear-gradient(135deg, #672001 0%, #ab3400 100%);
}

.contact-form-wrapper .submit-btn:active {
  transform: translateY(0);
}

.contact-form-wrapper .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Efectos de partículas de fondo - solo dentro del wrapper */
.contact-form-wrapper .background-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.contact-form-wrapper .particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: contactFloat 6s ease-in-out infinite;
}

@keyframes contactFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    margin: 0;
    padding: 10px;
  }

  .contact-form-wrapper .form-container {
    padding: 30px 20px;
    margin: 20px;
  }

  .contact-form-wrapper .form-title {
    font-size: 1.8rem;
  }
}

/* Mensajes */
.contact-form-wrapper .success-message {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 15px;
  color: #22c55e;
  text-align: center;
  margin-top: 20px;
  display: none;
  backdrop-filter: blur(10px);
}

.contact-form-wrapper .error-message {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 15px;
  color: #ef4444;
  text-align: center;
  margin-top: 20px;
  display: none;
  backdrop-filter: blur(10px);
}

/* Estilos para otros banners - ejemplo */
