/* ===== CONTÁCTENOS MEMORIAL PETS ===== */

.mp-contact-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(
    -45deg,
    #093D70,
    #4DB8DA,
    #DBDADA,
    #6EC9E5
  );
  background-size: 400% 400%;
  animation: gradientFlow 18s ease infinite;
  overflow: hidden;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  font-size: 1.1em;
}

.mp-contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.25),
    transparent 70%
  );
}

.mp-contact-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  z-index: 2;
}

/* INFO */
.mp-contact-info h2 {
  font-size: 42px;
  font-weight: 600;
  color: #193D70;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.mp-contact-info p {
  font-size: 18px;
  line-height: 1.8;
  color: #193D70;
  max-width: 520px;
}

.mp-contact-info li {
  font-size: 16px;
  color: #193D70;
  margin-bottom: 14px;
}


.mp-contact-info ul {
  list-style: none;
  padding: 0;
}


/* FORM */
.mp-contact-form {
  background: #FFF6E7;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mp-contact-form h3 {
  font-size: 28px;
  color: #193D70;
  margin-bottom: 30px;
}

/* INPUTS */
.mp-input-group {
  position: relative;
  margin-bottom: 28px;
}

.mp-input-group input,
.mp-input-group textarea {
  width: 100%;
  padding: 14px 14px;
  border: 2px solid #DADADA;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  background: transparent;
}

.mp-input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #706F6F;
  background: #FFF6E7;
  padding: 0 6px;
  pointer-events: none;
  transition: 0.3s;
}

.mp-input-group input:focus,
.mp-input-group textarea:focus {
  border-color: #CEA907;
}

.mp-input-group input:focus + label,
.mp-input-group input:valid + label,
.mp-input-group textarea:focus + label,
.mp-input-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #CEA907;
}

/* BUTTON */
.mp-contact-form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(
    135deg,
    #CEA907,
    #E0B93A
  );
  color: #010018;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mp-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(206,169,7,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mp-contact-container {
    grid-template-columns: 1fr;
  }
}
/* FOOTER BASE */
.mp-footer {
  position: relative;

}

/* PERRO */
.mp-footer-dog {
  position: absolute;
  top: -160px;              /* lo saca hacia arriba */
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  z-index: 20;              /* MÁS que el formulario */
  pointer-events: none;     /* no interfiere con clicks */
}

/* CTA */
.mp-footer-cta {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
}
/* Dropdown base */
.nav-item.dropdown {
    position: relative;
}

/* Menú oculto */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    z-index: 999;
}

/* Items del dropdown */
.dropdown-menu-custom a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

/* Hover item */
.dropdown-menu-custom a:hover {
    background-color: #f3f3f3;
}

/* Mostrar dropdown al hover */
.nav-item.dropdown:hover .dropdown-menu-custom {
    display: block;
}
html {
    scroll-behavior: smooth;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo img {
    height: 48px; /* mismo alto visual que el texto */
    width: auto;
    object-fit: contain;
}

.brand-logo h1 {
    font-size: 2.5rem;
    line-height: 1;
    margin: 0;
    font-weight: 700;
}

.mp-btn-primary {
  font-size: 1.15rem !important;   /* ajusta a 1.2rem si lo quieres más grande */
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}

.mp-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
  filter: brightness(1.05) !important;
}


.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 720px;
    padding: 40px 60px;

    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.18);

    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    z-index: 9999;
}

/* Mostrar al hover */
.mega-dropdown:hover .mega-menu {
    display: grid;
}

/* Columnas */
.mega-column h6 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #193D70;
    font-weight: 600;
}

.mega-column a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-column a:hover {
    color: #4DB8DA;
    transform: translateX(6px);
}

/* Línea divisora */
.mega-menu::before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background: #e6eef5;
}

.mega-column {
    text-align: left !important;
}

.mega-column h6 {
    margin: 0 0 20px 0 !important;
    text-align: left !important;
}