@charset "UTF-8";
/*
Theme Name: Sefey
Theme URI: https://sefey.mx
Description: Version 0.1
Version: 0.1
Author: sefey.mx
Author URI: https://sefey.mx

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

html, body {
  height: 100%;
}

html {
  font-size: clamp(14px, 1vw, 16px);
}

body {
  font-family: "Montserrat", sans-serif;
  color: #444;
  background: linear-gradient(135deg, #f6f5f4 30%, #ffffff 70%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  background: url("bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

header {
  position: sticky;
  top: 0;
  background: rgba(36, 70, 107, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem;
}
header #header-content {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header #header-content .top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
header #header-content .top-section .site-logo img {
  max-width: 150px;
  height: auto;
}
header #header-content .top-section #site {
  display: none;
}

nav ul.primary-menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav ul.primary-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
nav ul.primary-menu li a:hover {
  color: #e5a50a;
}
nav ul.primary-menu li.current-page-ancestor a, nav ul.primary-menu li.current-menu-item a, nav ul.primary-menu li.current-menu-parent a, nav ul.primary-menu li.current-menu-ancestor a {
  color: #e5a50a;
  font-weight: bold;
  border-bottom: 3px solid #e5a50a;
}
nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
nav .menu-toggle:hover, nav .menu-toggle:focus {
  background: rgba(36, 70, 107, 0.1);
}
nav .menu-toggle .hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
nav .menu-toggle .hamburger::before, nav .menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
nav .menu-toggle .hamburger::before {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}
nav .menu-toggle .hamburger::after {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
}
nav .menu-toggle[aria-expanded=true] .hamburger {
  background: transparent;
}
nav .menu-toggle[aria-expanded=true] .hamburger::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav .menu-toggle[aria-expanded=true] .hamburger::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  nav .menu-toggle {
    display: block;
  }
  nav ul.primary-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(36, 70, 107, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  nav ul.primary-menu li {
    padding: 0.5rem 1rem;
    text-align: center;
  }
  nav ul.primary-menu li a {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
  }
  nav ul.primary-menu.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
  }
}
main {
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
main #main-content {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  background: #fff;
  padding: 1rem 1.5rem;
}
main #main-content article {
  padding: 1rem;
  max-width: 1200px;
  width: 100%;
  text-align: left;
  line-height: 1.6;
}
main #main-content article a {
  color: #24466B;
  text-decoration: underline;
  font-weight: 500;
}
main #main-content article a:visited {
  color: #172d45;
}
main #main-content article a:hover {
  text-decoration: underline;
}
main #main-content article h1, main #main-content article h2, main #main-content article h3, main #main-content article h4, main #main-content article h5 {
  color: #002060;
  font-family: "Montserrat", sans-serif;
  margin: clamp(0.8rem, 1.1vw, 1.1rem) 0 1rem;
  line-height: 1.2;
}
main #main-content article h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
}
main #main-content article h2 {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: bold;
  position: relative;
}
main #main-content article h2::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 15%;
  height: 2px;
  background: #e5a50a;
  border-radius: 4px;
}
main #main-content article .post-content {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}
main #main-content article .post-content p {
  margin: 0.7em 0;
  line-height: 1.5;
}

.page-content, .solutions,
.products,
.product-categories,
.products-featured,
.blog-posts,
.blog {
  padding: 1rem 0;
}
.page-content h2, .solutions h2,
.products h2,
.product-categories h2,
.products-featured h2,
.blog-posts h2,
.blog h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  position: relative;
}
.page-content h2::after, .solutions h2::after,
.products h2::after,
.product-categories h2::after,
.products-featured h2::after,
.blog-posts h2::after,
.blog h2::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 15%;
  height: 2px;
  background: #e5a50a;
  border-radius: 4px;
}
.page-content .grid, .solutions .grid,
.products .grid,
.product-categories .grid,
.products-featured .grid,
.blog-posts .grid,
.blog .grid {
  display: grid;
  gap: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .page-content .grid, .solutions .grid,
  .products .grid,
  .product-categories .grid,
  .products-featured .grid,
  .blog-posts .grid,
  .blog .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-content .grid, .solutions .grid,
  .products .grid,
  .product-categories .grid,
  .products-featured .grid,
  .blog-posts .grid,
  .blog .grid {
    grid-template-columns: 1fr;
  }
}
.page-content .grid-item, .solutions .grid-item,
.products .grid-item,
.product-categories .grid-item,
.products-featured .grid-item,
.blog-posts .grid-item,
.blog .grid-item {
  background: white;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.page-content .grid-item:hover, .solutions .grid-item:hover,
.products .grid-item:hover,
.product-categories .grid-item:hover,
.products-featured .grid-item:hover,
.blog-posts .grid-item:hover,
.blog .grid-item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.page-content .grid-item a, .solutions .grid-item a,
.products .grid-item a,
.product-categories .grid-item a,
.products-featured .grid-item a,
.blog-posts .grid-item a,
.blog .grid-item a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.page-content .grid-item a .post-thumbnail, .solutions .grid-item a .post-thumbnail,
.products .grid-item a .post-thumbnail,
.product-categories .grid-item a .post-thumbnail,
.products-featured .grid-item a .post-thumbnail,
.blog-posts .grid-item a .post-thumbnail,
.blog .grid-item a .post-thumbnail {
  margin-bottom: 1rem;
}
.page-content .grid-item a .post-thumbnail img, .solutions .grid-item a .post-thumbnail img,
.products .grid-item a .post-thumbnail img,
.product-categories .grid-item a .post-thumbnail img,
.products-featured .grid-item a .post-thumbnail img,
.blog-posts .grid-item a .post-thumbnail img,
.blog .grid-item a .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.page-content .grid-item a h3, .solutions .grid-item a h3,
.products .grid-item a h3,
.product-categories .grid-item a h3,
.products-featured .grid-item a h3,
.blog-posts .grid-item a h3,
.blog .grid-item a h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.2rem);
  margin-bottom: 0.5rem;
  color: #002060;
}
.page-content .grid-item a .post-excerpt, .solutions .grid-item a .post-excerpt,
.products .grid-item a .post-excerpt,
.product-categories .grid-item a .post-excerpt,
.products-featured .grid-item a .post-excerpt,
.blog-posts .grid-item a .post-excerpt,
.blog .grid-item a .post-excerpt {
  font-size: 1rem;
  color: #444;
}

.page-productos main {
  background: #fff;
  padding: 2rem 0;
}
.page-productos .section-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.page-productos .btn, .page-productos .post-content a.button, .post-content .page-productos a.button, .page-productos .post-content a.btn-inline, .post-content .page-productos a.btn-inline {
  margin-top: 1rem;
}

.intro {
  padding: 3rem 1.5rem;
  background: #24466B;
  color: #fff;
  text-align: center;
}
.intro h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}
.intro p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 2rem;
}
.intro .btn, .intro .post-content a.button, .post-content .intro a.button, .intro .post-content a.btn-inline, .post-content .intro a.btn-inline {
  background: #e5a50a;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.intro .btn:hover, .intro .post-content a.button:hover, .post-content .intro a.button:hover, .intro .post-content a.btn-inline:hover, .post-content .intro a.btn-inline:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.page-content {
  background: white;
  padding: 1rem 0;
}
.page-content .section-container {
  max-width: 1000px;
  margin: 0 auto;
}
.page-content p {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  margin: 1em 0;
}
.page-content ul, .page-content ol {
  text-align: left;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
}
.page-content iframe, .page-content video {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  border-radius: 4px;
}

.post-content {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: #444;
  line-height: 1.8;
  text-align: left;
}
.post-content p {
  font-size: 1.1em;
  margin: 0 0 1.5rem;
}
.post-content h1, .post-content h2, .post-content h3 {
  margin: 2rem 0 1rem;
  color: #002060;
}
.post-content h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}
.post-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}
.post-content ul, .post-content ol {
  margin: 0 0 1.5rem 2rem;
  text-align: left;
}
.post-content blockquote {
  border-left: 4px solid #e5a50a;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #fceabf;
  font-style: italic;
}
.post-content a.button, .post-content a.btn-inline {
  margin-top: 1rem;
  display: inline-block;
}

footer {
  color: #fafafa;
  width: 100%;
  background: linear-gradient(50deg, #4d4d4d, #a6a6a6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 1.5rem 0;
}
footer #footer-content {
  max-width: 1200px;
  width: 90%;
  text-align: center;
}
footer #footer-content p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}
@media (max-width: 768px) {
  footer #footer-content p {
    font-size: 1rem;
  }
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}
.pagination .nav-links {
  display: inline-block;
}
.pagination .nav-links a, .pagination .nav-links span {
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.pagination .nav-links a:hover, .pagination .nav-links span:hover {
  background: #ddd;
}
.pagination .nav-links .current {
  background: #e5a50a;
  color: #fff;
}

ul, ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table th, table td {
  padding: 0.5rem;
  border: 1px solid #ddd;
  text-align: left;
}
table th {
  background: #24466B;
  color: #fff;
  font-weight: bold;
}
table tr {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
table tr:hover {
  background: #f1f1f1;
}
table tr:nth-child(even) {
  background: #f9f9f9;
}

.btn, .post-content a.button, .post-content a.btn-inline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1rem);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.btn:hover, .post-content a.button:hover, .post-content a.btn-inline:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.contact-cta {
  padding: 3rem 1.5rem;
  background: #24466B;
  color: #fff;
  text-align: center;
}
.contact-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}
.contact-cta p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  margin-bottom: 2rem;
}
.contact-cta .btn, .contact-cta .post-content a.button, .post-content .contact-cta a.button, .contact-cta .post-content a.btn-inline, .post-content .contact-cta a.btn-inline {
  background: #e5a50a;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.products-list {
  padding: 2rem 0;
}
.products-list h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  position: relative;
}
.products-list h2::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 15%;
  height: 2px;
  background: #e5a50a;
  border-radius: 4px;
}
.products-list .grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .products-list .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .products-list .grid {
    grid-template-columns: 1fr;
  }
}
.products-list .grid-item {
  background: white;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.products-list .grid-item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.products-list .grid-item a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.products-list .grid-item a .post-thumbnail {
  margin-bottom: 1rem;
}
.products-list .grid-item a .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 4px;
}
.products-list .grid-item a h3 {
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: #002060;
}
.products-list .grid-item .producto-detalles {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #444;
}
.products-list .grid-item .producto-detalles p {
  margin: 0.5rem 0;
}

.breadcrumbs {
  margin: 1rem 0;
  font-size: clamp(0.85rem, 1vw, 0.9rem);
  color: #444;
}
.breadcrumbs a {
  color: #24466B;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.breadcrumbs a:hover {
  color: #e5a50a;
}
.breadcrumbs .current {
  color: #e5a50a;
  font-weight: bold;
}
.breadcrumbs::before {
  content: "Usted está aquí: ";
  color: #444;
}

.grid-item .post-thumbnail {
  overflow: hidden;
  width: 100%;
  height: 200px;
  position: relative;
}
.grid-item .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Estilos modernos para el formulario de contacto */
.wpcf7 {
  max-width: 600px;
  margin: 0 auto;
}

.wpcf7 form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wpcf7 label {
  font-weight: 500;
  color: #444;
  margin-bottom: 0.5rem;
  display: block;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email],
.wpcf7 textarea {
  width: 90%;
  padding: 0.75rem;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.wpcf7 input[type=text]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 textarea:focus {
  border-color: #e5a50a;
  -webkit-box-shadow: 0 0 0 2px rgba(229, 165, 10, 0.2);
  box-shadow: 0 0 0 2px rgba(229, 165, 10, 0.2);
  outline: none;
}

.wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7-submit {
  background-color: #e5a50a;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.wpcf7-submit:hover {
  background-color: #b48208;
}

.wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-weight: 500;
}

/* Estilos para mensajes de error */
.wpcf7 .wpcf7-not-valid-tip {
  color: #835f06;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #fbe2a6;
  border: 1px solid #e5a50a;
  color: #835f06;
}

/* Estilos para mensaje de éxito */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #bffba6;
  border: 1px solid #4ae50a;
  color: #2a8306;
}

/* Animación sutil para los campos del formulario */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.wpcf7 .wpcf7-form-control-wrap {
  -webkit-animation: fadeIn 0.5s ease-out forwards;
  animation: fadeIn 0.5s ease-out forwards;
}