@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap");

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Outfit", sans-serif !important;
  font-weight: 400 !important;
}

body {
  font-family: "Inter", sans-serif !important;
}

/*** M E N U ***/

.bg-white {
  background-color: #fff !important;
}

/* Adams Hospitality 360 - Estilos Personalizados */

/* ===========================
   Variables y Reset
   =========================== */
:root {
  --primary-color: #6b4c9a;
  --primary-dark: #543a7b;
  --secondary-color: #4a4a4a;
  --text-dark: #2d2d2d;
  --text-light: #6c6c6c;
  --bg-light: #f9f6fb;
  --bg-gray: #e8e8ec;
  --bg-gray-light: #fafafa;
  --white: #ffffff;
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
  background-color: var(--bg-light);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-square {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 10px;
  border-radius: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.current_page_item {
  background-color: #fafafa;
  border-radius: 4px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  color: #232124 !important;
  padding-right: 0.7rem !important;
  padding-left: 0.7rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link.phone {
  color: var(--text-light);
}

.btn-contacto {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-contacto:hover {
  background-color: var(--primary-dark);
  color: white;
}

.menu-item-44 {
  margin-left: 2rem !important;
  position: relative;
}
.menu-item-44::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/wa.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 27%;
  transform: translateX(-50%);
  left: -7px;
}

#menu-item-47 {
  background-color: #f8edff !important;
  border-radius: 4px;
}

/* ===========================
   Hero Sections
   =========================== */
.hero {
  position: relative;
  padding: 80px 0 180px;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(75, 55, 95, 0.7) 0%,
    rgba(45, 45, 45, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.hero-simple {
  background-color: var(--bg-gray-light);
  color: var(--primary-color);
  padding: 80px 0 60px;
}

.hero-simple h1 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--primary-color);
}

/* Hero con Feature Cards superpuestas */
.hero-with-cards {
  padding-bottom: 100px;
  margin-bottom: 120px;
}

.hero-cards-wrapper {
  position: relative;
  z-index: 3;
  margin-top: -100px;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary-custom {
  background-color: #726a7a;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background-color: var(--text-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-primary-custom i {
  font-size: 0.85rem;
}

.btn-outline-custom {
  border: none;
  color: var(--text-dark);
  background: transparent;
  padding: 12px 0;
  font-weight: 400;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom i {
  transition: transform 0.3s ease;
}

.btn-outline-custom:hover {
  color: var(--primary-color);
}

.btn-outline-custom:hover i {
  transform: translateX(3px);
}

/* Botón enviar del formulario */
.btn-submit {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
  color: white;
}

/* ===========================
   Cards
   =========================== */
.feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.feature-card .icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Cards superpuestas en hero */
.feature-cards-overlay {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 10;
}

.feature-card-transparent {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* ===========================
   Service Items
   =========================== */
.service-item {
  margin-bottom: 4rem;
}

.service-content {
  padding: 2rem;
}

.service-number {
  font-size: 14px;
  background-color: var(--bg-light);
  color: #52495c !important;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: table !important;
  padding: 5px 10px;
}

.service-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.service-item p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-item ul {
  list-style: none;
  padding: 0;
}

.service-item ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.service-item ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   Accordion
   =========================== */
.accordion-item {
  border: none;
  border-bottom: 1px solid #e8e8e8;
  background: transparent;
}

.accordion-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.accordion-button {
  background: transparent;
  font-weight: 400;
  color: var(--text-dark);
  font-size: 20px;
  padding: 1.25rem 0;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--text-dark);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  content: "";
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("../img/cerrado.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/abierto.svg");
  transform: none;
}

.accordion-body {
  padding: 0 0 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===========================
   Team Section
   =========================== */
.team-card {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ===========================
   Certification Cards
   =========================== */
.cert-card {
  padding: 2rem;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cert-card .icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.cert-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #5b3c6f;
}

.cert-card p {
  font-size: 16px;
  color: #5b3c6f;
  text-align: left;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
  padding: 1rem 2rem;
  border-left: 4px solid var(--primary-color);
  margin: 3rem 0;
  width: 80%;
}

.quote-section p {
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   Forms
   =========================== */
.form-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.form-section h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  text-align: left;
  color: var(--text-dark);
}

.form-section .form-intro {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.form-label {
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
}

.form-control,
.form-select {
  border: none !important;
  border-bottom: 1px solid #d0d0d0 !important;
  border-radius: 0 !important;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--text-light);
}

.form-control::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  border-bottom-width: 2px;
  background-color: transparent;
}

.form-select {
  background-position: right center;
  cursor: pointer;
}

.form-check {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.form-check-input {
  border-color: #d0d0d0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(107, 76, 154, 0.25);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 0.5rem;
  cursor: pointer;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
  border: none !important;
  border-bottom: 1px solid #d0d0d0 !important;
  border-radius: 0 !important;
}

.wpcf7-form input[type="submit"] {
  background-color: #f8edff !important;
  border: none !important;
  color: #232124 !important;
  font-size: 16px !important;
}

.wpcf7 {
  width: 100% !important;
  max-width: initial !important;
}

/* Estilos de filas del formulario */
.form-row {
  margin-bottom: 1.5rem;
}

/* ===========================
   Footer
   =========================== */
.wrapper {
  padding: 0px !important;
}
footer {
  background-color: #fafafa;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.footer-info {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links a:before {
  content: "→ ";
  margin-right: 0.5rem;
}

.social-icons a {
  display: inline-block;
  width: 56px;
  height: 56px;
  background-color: #f9f6fb;
  color: #5b3c6f;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  margin-right: 0.5rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: var(--bg-light);
  padding: 4rem 2rem;
  text-align: center;
  color: #5b3c6f;
  margin: 4rem 0;
  border-radius: 0;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.cta-section .btn {
  background-color: #726a7a;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.cta-section .btn:hover {
  background-color: var(--text-dark);
}

/* ===========================
   Utility Classes
   =========================== */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 0.9rem;
  color: #52495c !important;
  background-color: var(--bg-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  padding: 5px 15px;
  display: table;
}

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

.bg-light-custom {
  background-color: var(--bg-light);
}

.bg-gray-custom {
  background-color: var(--bg-gray);
}

/* ===========================
   Experiencia Section (30 años)
   =========================== */
.experiencia-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.experiencia-section .section-subtitle {
  color: var(--text-light);
}

.experiencia-section .section-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.experiencia-images {
  display: flex;
  gap: 1rem;
}

.experiencia-images img {
  border-radius: var(--border-radius);
  object-fit: cover;
  height: 250px;
}

.experiencia-text {
  padding: 2rem 0;
}

.experiencia-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.experiencia-text p {
  color: var(--text-light);
  font-size: 16px;
}

/* ===========================
   Soluciones Section
   =========================== */
.soluciones-section {
  padding: 5rem 0;
}

.soluciones-section .section-title {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}

/* ===========================
   Contact Section Styling
   =========================== */
.contact-section {
  padding: 4rem 0;
}

.contact-section .section-subtitle {
  color: var(--primary-color);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* ===========================
   Service Item Improvements
   =========================== */
.service-item .service-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-item .service-image img {
  transition: transform 0.4s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.03);
}

.service-number {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.service-item h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-family: "Outfit", sans-serif !important;
}

/* ===========================
   Remodelaciones Section
   =========================== */
.remodelaciones-section {
  background: var(--bg-light);
  padding: 4rem 0;
  color: var(--text-dark);
  text-align: center;
}

.remodelaciones-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  background-color: white;
}

.remodelaciones-section h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #5b3c6f;
}

.remodelaciones-section p {
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.remodelaciones-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.remodelaciones-images img {
  border-radius: var(--border-radius);
  height: 250px;
  object-fit: cover;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-simple h1 {
    font-size: 1.6rem;
  }

  .service-item {
    margin-bottom: 3rem;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-image {
    margin: 0 auto;
  }

  .feature-cards-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -60px;
  }

  .experiencia-images {
    flex-direction: column;
  }

  .experiencia-images img {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .quote-section p {
    font-size: 1rem;
  }

  .form-section {
    padding: 2rem 1rem;
  }

  .remodelaciones-images {
    flex-wrap: wrap;
  }

  .remodelaciones-images img {
    width: 45%;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
