@charset "UTF-8";
/* Animaciones personalizadas */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}
/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  animation: none;
}

.btn-accent {
  background-color: var(--accent);
}

.btn-accent:hover {
  background-color: #c0392b;
}

.btn-accent2 {
  background-color: var(--accent2);
}

.btn-accent2:hover {
  background-color: #8e44ad;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  animation: fadeInLeft 1s ease-out;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Variables CSS con paleta de colores más variada */
:root {
  --primary: #47607a;
  --secondary: #45bbe3;
  --accent: #e74c3c;
  --accent2: #9b59b6;
  --accent3: #1abc9c;
  --accent4: #f39c12;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --text: #333;
  --text-light: #7f8c8d;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Sobre Nosotros */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  animation: fadeInLeft 1s ease-out;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 1s ease-out both;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-text {
  color: var(--text-light);
}

.about-image {
  animation: fadeInRight 1s ease-out;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.02);
}

/* Contacto */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  animation: fadeInLeft 1s ease-out;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  transition: var(--transition);
}

.contact-item:hover {
  background-color: var(--light);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  animation: pulse 2s infinite;
}

.contact-form {
  animation: fadeInRight 1s ease-out;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  outline: none;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
  animation: fadeInLeft 1s ease-out;
}

.footer-links li {
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-out both;
}

.footer-links li:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-links li:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-links li:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-links li:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-links li:nth-child(5) {
  animation-delay: 0.5s;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out both;
}

.social-links a:nth-child(1) {
  animation-delay: 0.1s;
}

.social-links a:nth-child(2) {
  animation-delay: 0.2s;
}

.social-links a:nth-child(3) {
  animation-delay: 0.3s;
}

.social-links a:nth-child(4) {
  animation-delay: 0.4s;
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1s ease-out;
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  animation: fadeInLeft 1s ease-out;
}
.logo img {
  width: auto;
  height: 74px;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
  animation: fadeInRight 1s ease-out;
}

.nav-links a {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

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

.nav-links a:hover {
  color: var(--secondary);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/img/bgs/linus-mimietz-gvptKmonylk-unsplash.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-logo {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 1s both, pulse 2s 3s 2;
}
.hero-logo img {
  width: 198px;
  height: auto;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--secondary);
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  overflow: hidden;
  border-right: 2px solid white;
  white-space: nowrap;
  animation: typewriter 3s steps(40) 2s both, blink 0.75s step-end infinite;
}

.texto-espacial {
  color: #45bbe3;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.6);
  /*text-shadow: 
      0 1px 0 #2a8fb5,
      0 2px 0 #2a8fb5,
      0 3px 0 #2a8fb5,
      0 4px 0 #1e6a8a,
      0 5px 0 #1e6a8a,
      0 6px 1px rgba(0,0,0,.1),
      0 0 5px rgba(0,0,0,.1),
      0 1px 3px rgba(0,0,0,.3),
      0 3px 5px rgba(0,0,0,.2),
      0 5px 10px rgba(0,0,0,.25),
      0 10px 10px rgba(0,0,0,.2),
      0 20px 20px rgba(0,0,0,.15);
      span{
          color: var(--primary);
          text-shadow: 
          0 1px 0 #2a8fb5,
          0 2px 0 #2a8fb5,
          0 3px 0 #2a8fb5,
          0 4px 0 #1e6a8a,
          0 5px 0 #1e6a8a,
          0 6px 1px rgba(0,0,0,.1),
          0 0 5px rgba(0,0,0,.1),
          0 1px 3px rgba(0,0,0,.3),
          0 3px 5px rgba(0,0,0,.2),
          0 5px 10px rgba(0,0,0,.25),
          0 10px 10px rgba(0,0,0,.2),
          0 20px 20px rgba(0,0,0,.15);
      }*/
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  overflow: hidden;
  border-right: 2px solid white;
  white-space: nowrap;
  animation: typewriter 3s steps(40) 3s both, blink 0.75s step-end infinite;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 5s both;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 7s both, pulse 2s infinite 3s;
}

/* Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  animation: fadeInUp 1s ease-out both;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--secondary), var(--accent3));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(1) .service-icon {
  color: var(--secondary);
}

.service-card:nth-child(2) .service-icon {
  color: var(--accent);
}

.service-card:nth-child(3) .service-icon {
  color: var(--accent2);
}

.service-card:nth-child(4) .service-icon {
  color: var(--accent3);
}

.service-card:nth-child(5) .service-icon {
  color: var(--accent4);
}

.service-card:nth-child(6) .service-icon {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Portfolio */
.portfolio {
  background-color: var(--light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease-out both;
}

.portfolio-item:nth-child(1) {
  animation-delay: 0.1s;
}

.portfolio-item:nth-child(2) {
  animation-delay: 0.2s;
}

.portfolio-item:nth-child(3) {
  animation-delay: 0.3s;
}

.portfolio-item:nth-child(4) {
  animation-delay: 0.4s;
}

.portfolio-item:nth-child(5) {
  animation-delay: 0.5s;
}

.portfolio-item:nth-child(6) {
  animation-delay: 0.6s;
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

/* Testimonios */
.testimonials {
  background-color: var(--light);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
  position: relative;
}

.testimonial-text::before, .testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--secondary);
  position: absolute;
  opacity: 0.3;
}

.testimonial-text::before {
  top: -20px;
  left: -10px;
}

.testimonial-text::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links li {
    margin: 15px 0;
  }
  .hamburger {
    display: block;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .section {
    padding: 60px 0;
  }
}/*# sourceMappingURL=main.css.map */