/* Sección Sobre Mí - Estilo Maldonado Daniel */
.apple-about {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Header minimalista */
.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* Contenido principal */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

/* Columna de imagen */
.about-image-column {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  padding-bottom: 130%; /* Proporción de aspecto para la imagen principal */
  overflow: hidden;
}

.about-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  width: 65%;
  height: 45%;
  bottom: -10%;
  right: -10%;
  z-index: -1;
  overflow: hidden;
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.about-signature {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: auto;
  z-index: 2;
}

/* Columna de texto */
.about-text-column {
  flex: 1;
  min-width: 300px;
}

.about-intro {
  margin-bottom: 30px;
}

.about-greeting {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.about-name {
  font-weight: 400;
}

.about-description {
  margin-bottom: 30px;
}

.about-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* Características */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #333;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
  background-color: #000;
  color: #fff;
  transform: translateY(-3px);
}

.feature-text {
  font-size: 15px;
  color: #333;
  font-weight: 300;
  line-height: 1.5;
}

/* Botón de acción */
.about-cta {
  margin-top: 30px;
}

.about-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 300;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.about-button:hover {
  background-color: #000;
  color: #fff;
}

/* Elementos decorativos */
.about-bg-element {
  position: absolute;
  z-index: 0;
}

.about-bg-element-1 {
  top: 10%;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  border-radius: 0 200px 200px 0;
}

.about-bg-element-2 {
  bottom: 10%;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  border-radius: 300px 0 0 300px;
}

/* Sección de estadísticas */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #f0f0f0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #000;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #555;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Animaciones */
@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);
  }
}

.about-header {
  animation: fadeInUp 1s ease forwards;
}

.about-image-column {
  opacity: 0;
  animation: fadeInLeft 1s ease forwards 0.2s;
}

.about-text-column {
  opacity: 0;
  animation: fadeInRight 1s ease forwards 0.4s;
}

.about-stats {
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
  .apple-about {
      padding: 100px 0;
  }
  
  .about-title {
      font-size: 36px;
  }
  
  .about-content {
      gap: 40px;
  }
  
  .about-greeting {
      font-size: 24px;
  }
  
  .stat-number {
      font-size: 42px;
  }
}

@media (max-width: 768px) {
  .apple-about {
      padding: 80px 0;
  }
  
  .about-header {
      margin-bottom: 60px;
  }
  
  .about-title {
      font-size: 32px;
  }
  
  .about-subtitle {
      font-size: 16px;
  }
  
  .about-content {
      flex-direction: column;
  }
  
  .about-image-column {
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
  }
  
  .about-image-wrapper {
      padding-bottom: 120%;
  }
  
  .about-features {
      grid-template-columns: 1fr;
  }
  
  .stat-number {
      font-size: 36px;
  }
  
  .stat-item {
      min-width: 120px;
  }
}

@media (max-width: 576px) {
  .about-title {
      font-size: 28px;
  }
  
  .about-greeting {
      font-size: 22px;
  }
  
  .about-stats {
      flex-direction: column;
      align-items: center;
  }
  
  .stat-item {
      width: 100%;
      max-width: 200px;
      margin-bottom: 30px;
  }
  
  .stat-number {
      font-size: 32px;
  }
}
