.site-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* CONTAINER */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
html {
  scroll-behavior: smooth;
}
/* LOGO */
.logo a {
    font-size: 22px;
    font-weight: 600;
    color: #1A2E44;
    text-decoration: none;
    letter-spacing: 1px;
}

/* NAV */
.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: #5A6475;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

/* HOVER NAV (línea elegante) */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: #c9a14a;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #1A2E44;
}

.nav a:hover::after {
    width: 100%;
}



/* BOTÓN CTA */
.cta {
    padding: 8px 18px;
    border: 1px solid #c9a14a;
    border-radius: 30px;
    color: #c9a14a;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.cta:hover {
    background-color: #c9a14a;
    color: #ffffff;
}
/* Estado normal del botón */
.boton-animado {
    transition: transform 0.3s ease; /* Hace que el movimiento sea suave */
}

/* Estado al pasar el cursor (Hover) */
.boton-animado:hover {
    transform: scale(1.1); /* Aumenta el tamaño un 10% */
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .nav {
        display: none; /* luego puedes añadir menú hamburguesa */
    }
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	background: #F7F4EE; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px; padding: 12px 14px; color: #1A2E44;
    font-family: 'DM Sans', sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none;
	border-radius: 15px; padding: 12px 14px; color: #C9A84C;
}
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 select, .wpcf7 textarea {
    background: #F7F4EE; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 15px; padding: 12px 14px; color: #0D1B2A;
    font-family: 'DM Sans', sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none;
  }
.wpcf7 input[type="text"]:focus,.wpcf7 input[type="email"]:focus, .wpcf7 textarea:focus { border-color: #C9A84C; }