@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.testimonio {
  font-size: 1.125rem;
  font-style: italic;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.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.6s;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  background: transparent;
  color: #000;
  border: 2px solid #e5e7eb;
}
.btn-secondary:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.nav .nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav .nav-menu .nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}
.nav .nav-menu .nav-link:hover::after, .nav .nav-menu .nav-link.active::after {
  width: 100%;
}
.nav .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}
.nav .hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.nav .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav .nav-container {
    padding: 0 1rem;
  }
  .nav .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    transition: 1s;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.15);
    padding: 2rem 0;
  }
  .nav .nav-menu.open {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav .hamburger {
    display: flex;
  }
  .nav .nav-menu {
    width: 100%;
    text-align: center;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}
.hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 1024px) {
  .hero .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.hero .hero-content {
  animation: fadeInUp 1s ease-out;
}
.hero .hero-content .hero-title {
  margin-bottom: 2rem;
}
.hero .hero-content .hero-title .hero-greeting {
  display: block;
  font-size: 1.25rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.hero .hero-content .hero-title .hero-name {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-title .hero-name {
    white-space: normal;
  }
}
.hero .hero-content .hero-title .hero-role {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #d4af37;
  font-weight: 500;
}
.hero .hero-content .hero-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}
.hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-actions {
    justify-content: center;
  }
}
.hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
  margin-top: 30px;
  margin-bottom: 20px;
}
.hero .hero-visual .floating-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 0;
  transform: rotate(5deg);
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 480px) {
  .hero .hero-visual .floating-card {
    transform: rotate(0deg);
  }
}
.hero .hero-visual .code-snippet {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  min-width: 300px;
}
@media (max-width: 480px) {
  .hero .hero-visual .code-snippet {
    min-width: 250px;
  }
}
.hero .hero-visual .code-snippet .code-header {
  background: #2d2d2d;
  padding: 1rem;
  display: flex;
  align-items: center;
}
.hero .hero-visual .code-snippet .code-header .dots {
  display: flex;
  gap: 0.5rem;
}
.hero .hero-visual .code-snippet .code-header .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hero .hero-visual .code-snippet .code-header .dots span:nth-child(1) {
  background: #ff5f57;
}
.hero .hero-visual .code-snippet .code-header .dots span:nth-child(2) {
  background: #ffbd2e;
}
.hero .hero-visual .code-snippet .code-header .dots span:nth-child(3) {
  background: #28ca42;
}
.hero .hero-visual .code-snippet .code-content {
  padding: 1.5rem;
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e6e6e6;
}
.hero .hero-visual .code-snippet .code-content .code-keyword {
  color: #ff79c6;
}
.hero .hero-visual .code-snippet .code-content .code-variable {
  color: #8be9fd;
}
.hero .hero-visual .code-snippet .code-content .code-property {
  color: #50fa7b;
}
.hero .hero-visual .code-snippet .code-content .code-string {
  color: #f1fa8c;
}
@media (max-width: 480px) {
  .hero .hero-visual .code-snippet .code-content {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero .scroll-indicator .scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
}
@media (max-width: 480px) {
  .hero .scroll-indicator {
    bottom: -2rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40%, 43% {
    transform: translateX(-50%) translateY(-30px);
  }
  70% {
    transform: translateX(-50%) translateY(-15px);
  }
  90% {
    transform: translateX(-50%) translateY(-4px);
  }
}
.about {
  padding: 8rem 0;
  background: #f8f9fa;
}
.about .about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .about .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about .about-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.about .skills-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
@media (max-width: 1024px) {
  .about .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}
.about .skill-item {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 1rem;
  font-size: 0.9rem;
  position: relative;
}
.about .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.about .skill-item .skill-icon {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}
.about .skill-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.about .skill-item p {
  opacity: 0.6;
}
.about .skill-item .skill-level {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.9);
  color: white;
  font-size: 0.75rem;
  padding: 0.3rem;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  font-weight: 500;
}
.about .skill-item:hover .skill-level {
  opacity: 1;
  transform: translateY(0);
}
.about .skill-item.nivel-basico .skill-level {
  background: rgba(255, 99, 99, 0.9);
}
.about .skill-item.nivel-intermedio .skill-level {
  background: rgba(255, 206, 86, 0.9);
}
.about .skill-item.nivel-avanzado .skill-level {
  background: rgba(75, 192, 192, 0.9);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.projects {
  padding: 8rem 0;
  background: #fff;
}
.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.projects .project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.projects .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.projects .project-card .project-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 250px;
  width: 100%;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.projects .project-card .project-image .project-placeholder {
  font-size: 4rem;
  opacity: 0.7;
}
.projects .project-card .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.projects .project-card .project-image .project-overlay .project-link,
.projects .project-card .project-image .project-overlay .project-code {
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.projects .project-card .project-image .project-overlay .project-code {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.projects .project-card .project-image:hover .project-overlay {
  opacity: 1;
}
.projects .project-card .project-content {
  padding: 2rem;
}
.projects .project-card .project-content .project-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.projects .project-card .project-content .project-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.projects .project-card .project-content .project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.projects .project-card .project-content .project-tech span {
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.services {
  padding: 8rem 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.service-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 2rem;
}

.service-card.featured .service-price {
  color: #d4af37;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-card.featured {
    transform: none;
  }
  .service-card.featured:hover {
    transform: translateY(-5px);
  }
}
.contact {
  padding: 8rem 0;
  background: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-method.whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.contact-method.email:hover {
  background: #ea4335;
  color: #fff;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-method div {
  display: flex;
  flex-direction: column;
}

.contact-method strong {
  font-weight: 600;
}

.contact-method span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-form {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #666;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.form-group input:not(:-moz-placeholder) + label, .form-group textarea:not(:-moz-placeholder) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  color: #d4af37;
  background: #f8f9fa;
  padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  color: #d4af37;
  background: #f8f9fa;
  padding: 0 0.5rem;
}

.footer {
  background: #000;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: #999;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */