/* =========================================================================
                         SECCIÓN NOSOTROS - HOTEL D'CONFORT
============================================================================= */

:root {
  --primary-green: #2d5016;
  --dark-green: #1f3a10;
  --light-green: #4a7c2c;
  --accent-yellow: #f4c430;
  --gold: #d4af37;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-light: #f8f8f8;
  --gray-medium: #e0e0e0;
}

.section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 6rem 2rem;
  align-items: center;
}

/* ===== IMAGEN ===== */
.about__image {
  position: relative;
  width: 100%;
  height: auto;
}

.about__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 550px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(45, 80, 22, 0.15);
  background: var(--gray-light);
}

.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 58, 16, 0.25) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

/* Badge de Experiencia */
.about__experience-badge {
  position: absolute;
  bottom: 35px;
  left: 35px;
  background: var(--white);
  padding: 1.3rem 2rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-8px); 
  }
}

.badge__icon {
  width: 55px;
  height: 55px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.7rem;
  flex-shrink: 0;
}

.badge__content {
  display: flex;
  flex-direction: column;
}

.badge__number {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
}

.badge__text {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  margin-top: 0.3rem;
  white-space: nowrap;
}

/* Formas Decorativas */
.about__shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.about__shape-1 {
  width: 200px;
  height: 200px;
  background: var(--accent-yellow);
  opacity: 0.15;
  top: -60px;
  right: -60px;
  filter: blur(60px);
}

.about__shape-2 {
  width: 250px;
  height: 250px;
  background: var(--primary-green);
  opacity: 0.1;
  bottom: -80px;
  left: -80px;
  filter: blur(80px);
}

/* ===== CONTENIDO ===== */
.about__content {
  padding: 2rem 0;
}

.section__subheader-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section__line {
  height: 2px;
  width: 50px;
  background: var(--accent-yellow);
}

.section__subheader {
  color: var(--accent-yellow);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.section__subheader i {
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.section__header {
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section__header .highlight {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

.section__description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ===== CARACTERÍSTICAS ===== */
.about__features {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.feature__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.8rem;
  background: var(--white);
  border-radius: 15px;
  border-left: 4px solid var(--accent-yellow);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}

.feature__item.visible {
  opacity: 1;
  transform: translateX(0);
}

.feature__item:hover {
  background: var(--gray-light);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
  transform: translateX(10px);
  border-left-color: var(--primary-green);
}

.feature__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature__text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.3rem 0;
}

.feature__text p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* ===== ESTADÍSTICAS ===== */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-medium);
}

.stat__box {
  text-align: center;
}

.stat__number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-family: 'Arial', sans-serif;
  line-height: 1;
}

.stat__number::after {
  content: '+';
  color: var(--accent-yellow);
  margin-left: 3px;
}

.stat__label {
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== CTA BUTTONS ===== */
.about__cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn__about {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn__about-primary {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.btn__about-primary:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 80, 22, 0.4);
}

.btn__about-primary i {
  transition: transform 0.3s ease;
}

.btn__about-primary:hover i {
  transform: translateX(5px);
}

.btn__about-secondary {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn__about-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about__container {
    gap: 5rem;
  }
  
  .section__header {
    font-size: 2.6rem;
  }
  
  .about__image-wrapper {
    max-width: 550px;
    height: 500px;
  }
}

@media (max-width: 1024px) {
  .about__container {
    gap: 4rem;
    padding: 5rem 2rem;
  }
  
  .about__image-wrapper {
    max-width: 480px;
    height: 450px;
  }
  
  .section__header {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
  
  .about__image-wrapper {
    max-width: 100%;
    height: 500px;
  }
  
  .about__experience-badge {
    bottom: 25px;
    left: 25px;
    padding: 1rem 1.5rem;
  }
  
  .badge__icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .badge__number {
    font-size: 1.6rem;
  }
  
  .section__header {
    font-size: 2.2rem;
  }
  
  .about__stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .stat__number {
    font-size: 3rem;
  }
  
  .about__cta {
    flex-direction: column;
  }
  
  .btn__about {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about__image-wrapper {
    height: 400px;
    border-radius: 20px;
  }
  
  .section__header {
    font-size: 1.9rem;
  }
  
  .about__experience-badge {
    padding: 0.9rem 1.2rem;
    bottom: 20px;
    left: 20px;
  }
  
  .badge__icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .badge__number {
    font-size: 1.5rem;
  }
  
  .badge__text {
    font-size: 0.75rem;
  }
  
  .stat__number {
    font-size: 2.5rem;
  }
  
  .feature__item {
    padding: 1.2rem 1.5rem;
  }
  
  .feature__icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}