/* ===================================
   ひなた建設 - Hinata Kensetsu
   Estilos principales (Less)
   =================================== */
/* Variables */
/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #FAF8F5;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
/* Tipografía */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.4;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1rem;
}
/* Utilidades */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 1.75rem;
  color: #f1be04;
  margin-bottom: 0.5rem;
}
.section-title .subtitle {
  font-size: 0.875rem;
  color: #666666;
  letter-spacing: 0.2em;
}
/* Botones */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background-color: #f1be04;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #6B4E0A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}
.btn-secondary {
  background-color: transparent;
  color: #f1be04;
  border: 2px solid #f1be04;
}
.btn-secondary:hover {
  background-color: #f1be04;
  color: #FFFFFF;
}
.btn-line {
  background-color: #06C755;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-line:hover {
  background-color: #05A847;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f1be04, #ffd16c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}
.logo-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2C2C2C;
}
.logo-text span {
  display: block;
  font-size: 0.625rem;
  font-weight: 400;
  color: #666666;
  letter-spacing: 0.1em;
}
.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2C2C2C;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f1be04;
  transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: #2C2C2C;
  transition: all 0.3s ease;
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../imgs/interior-comedor-hogar.png') center / cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 0 20px;
}
.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-desc {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  text-align: center;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
/* Features/Pillars Section */
.pillars {
  background-color: #FFFFFF;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.pillar-card:hover .pillar-image img {
  transform: scale(1.05);
}
.pillar-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pillar-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f1be04;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pillar-content {
  padding: 28px 24px 32px;
  text-align: center;
}
.pillar-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #2C2C2C;
}
.pillar-content p {
  font-size: 0.9375rem;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.8;
}
/* Works Section */
.works {
  background-color: #FAF8F5;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.work-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-card:hover img {
  transform: scale(1.1);
}
.work-card:hover .work-overlay {
  opacity: 1;
}
.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-type {
  display: inline-block;
  padding: 4px 12px;
  background-color: #f1be04;
  color: white;
  font-size: 0.75rem;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}
.work-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
}
.works-more {
  text-align: center;
}
/* Recruit Banner */
.recruit-banner {
  background: linear-gradient(135deg, #2D5016, #1A3A0A);
  color: white;
  padding: 80px 0;
}
.recruit-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.recruit-content {
  flex: 1;
}
.recruit-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.recruit-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.recruit-image {
  flex: 0 0 400px;
  border-radius: 8px;
  overflow: hidden;
}
.recruit-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
/* Process Section */
.process {
  background-color: #FFFFFF;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, #f1be04, #ffd16c);
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #2C2C2C;
}
.process-step p {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0;
}
.step-number {
  width: 80px;
  height: 80px;
  background-color: #f1be04;
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
}
.step-number span {
  font-size: 0.75rem;
  opacity: 0.8;
}
.step-number strong {
  font-size: 1.5rem;
  line-height: 1;
}
/* Footer */
.footer {
  background-color: #2C2C2C;
  color: white;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 24px;
}
.footer-logo .logo-icon-img {
  filter: brightness(1.1);
}
.footer-logo .logo-text {
  color: white;
}
.footer-logo .logo-text span {
  color: rgba(255, 255, 255, 0.6);
}
.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: white;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}
.footer-links a:hover {
  color: white;
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-map {
  grid-column: 1 / -1;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0;
}
/* Mobile Fixed Bar */
.mobile-fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 12px 16px;
}
.mobile-fixed-bar-inner {
  display: flex;
  gap: 12px;
}
.mobile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}
.mobile-btn-tel {
  background-color: #f1be04;
  color: white;
}
.mobile-btn-line {
  background-color: #06C755;
  color: white;
}
/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/obrera-trabajando copia.png') center / cover;
  text-align: center;
  color: white;
}
.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.page-header .subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  letter-spacing: 0.2em;
}
/* About Page */
.about-section {
  padding: 80px 0;
}
.about-section:nth-child(even) {
  background-color: #FFFFFF;
}
.about-section:nth-child(odd) {
  background-color: #FAF8F5;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content.reverse {
  direction: rtl;
}
.about-content.reverse > * {
  direction: ltr;
}
.about-text h3 {
  color: #f1be04;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: #666666;
  margin-bottom: 1rem;
}
.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-info {
  padding: 24px;
}
.team-info h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.team-info .role {
  font-size: 0.875rem;
  color: #f1be04;
}
.team-info .reading {
  font-size: 0.8125rem;
  color: #666666;
  margin-top: 2px;
  margin-bottom: 12px;
}
.team-info p {
  font-size: 0.9375rem;
  color: #666666;
  margin-bottom: 0;
}
/* Philosophy */
.philosophy-box {
  background-color: #f1be04;
  color: white;
  padding: 60px;
  border-radius: 8px;
  text-align: center;
}
.philosophy-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.philosophy-box p {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}
/* Works Page */
.works-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 12px 32px;
  border: 2px solid #f1be04;
  background-color: transparent;
  color: #f1be04;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background-color: #f1be04;
  color: white;
}
.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item.hidden {
  display: none;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* Recruit Page */
.recruit-hero {
  background: linear-gradient(135deg, #2D5016, #1A3A0A);
  color: white;
  padding: 100px 0;
  text-align: center;
}
.recruit-hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.recruit-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}
.recruit-section {
  padding: 80px 0;
}
.recruit-section:nth-child(even) {
  background-color: #FFFFFF;
}
.recruit-section:nth-child(odd) {
  background-color: #FAF8F5;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background-color: white;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.benefit-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0;
}
.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: #F5F5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.workplace-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.workplace-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.salary-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.salary-table th,
.salary-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #F5F5F5;
}
.salary-table th {
  background-color: #f1be04;
  color: white;
  font-weight: 600;
}
.salary-table td {
  color: #666666;
}
.recruit-line {
  background-color: #06C755;
  color: white;
  padding: 60px;
  border-radius: 8px;
  text-align: center;
}
.recruit-line h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.recruit-line p {
  margin-bottom: 24px;
  opacity: 0.95;
}
/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}
.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2C2C2C;
}
.form-group label .required {
  color: #E53E3E;
  margin-left: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #f1be04;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-info-box {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.contact-info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #f1be04;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F5F5F5;
}
.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background-color: #FAF8F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 1rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0;
}
/* Responsive */
@media (max-width: 1024px) {
  .pillars-grid,
  .team-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .works-grid,
  .works-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    flex-wrap: wrap;
  }
  .process-steps::before {
    display: none;
  }
  .process-step {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 30px;
  }
  .recruit-banner-inner {
    flex-direction: column;
  }
  .recruit-image {
    flex: 0 0 auto;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #FAF8F5;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .section {
    padding: 60px 0;
  }
  .pillars-grid,
  .team-grid,
  .benefits-grid,
  .works-grid,
  .works-gallery,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-content.reverse {
    direction: ltr;
  }
  .process-step {
    flex: 0 0 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mobile-fixed-bar {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
  .salary-table {
    font-size: 0.875rem;
  }
  .salary-table th,
  .salary-table td {
    padding: 12px 16px;
  }
}
