/*=============================================
=            CSS Variables & Reset            =
=============================================*/
:root {
    --primary-color: #d4af37;
    /* Gold/Treasure color */
    --secondary-color: #232323;
    /* Updated Dark */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --header-scrolled-bg: #e7e6e5;
    /* New Header Background */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: 2rem;
}

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

.bg-dark {
    background-color: var(--secondary-color);
    color: #fff;
}

.light-text {
    color: #fff;
}

.section-padding {
    padding: 100px 0;
}

.separator {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

.separator.light {
    background-color: #fff;
}

/*=============================================
=            Buttons                          =
=============================================*/
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/*=============================================
=            Header                           =
=============================================*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed), padding var(--transition-speed), box-shadow var(--transition-speed);
    padding: 20px 0;
}

.site-header.transparent-header {
    background-color: transparent;
}

.site-header.scrolled {
    background-color: #f4f4d3;
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .hamburger-inner,
.site-header.scrolled .hamburger-inner::before,
.site-header.scrolled .hamburger-inner::after {
    background-color: var(--secondary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
}

.site-branding .logo {
    display: inline-grid;
    align-items: center;
    height: 80px;
    width: 80px;
    transition: height var(--transition-speed);
}

.site-branding .header-logo {
    grid-area: 1 / 1;
    max-height: 100%;
    width: auto;
    transition: opacity 0.5s ease-in-out;
}

.logo-color {
    opacity: 0;
}

.logo-bw {
    opacity: 1;
}

.site-header.scrolled .logo {
    height: 50px;
}

.site-header.scrolled .logo-color {
    opacity: 1;
}

.site-header.scrolled .logo-bw {
    opacity: 0;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 35px;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    transition: transform 0.15s ease;
    border-radius: 2px;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/*=============================================
=            Offcanvas Menu                   =
=============================================*/
.offcanvas-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1005;
    display: flex;
    justify-content: flex-end;
}

.offcanvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.offcanvas-logo {
    margin-bottom: 40px;
    text-align: center;
}

.offcanvas-logo .menu-logo {
    max-width: 150px;
    margin: 0 auto;
    animation: logoPulse 4s infinite ease-in-out;
    filter: invert();
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.main-navigation {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
    color: #fff;
    padding: 80px 40px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.main-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.offcanvas-menu-wrapper.active {
    pointer-events: auto;
}

.offcanvas-menu-wrapper.active .offcanvas-overlay {
    opacity: 1;
}

.offcanvas-menu-wrapper.active .main-navigation {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-speed);
}

.menu-close:hover {
    color: var(--primary-color);
}

/* Sequential Animation for Menu Items */
.main-navigation ul {
    list-style: none;
}

.main-navigation ul li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.main-navigation ul li a {
    font-family: var(--font-heading);
    font-size: 32px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.main-navigation ul li a::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 150px;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.5s ease;
}

/* Ajustes para etiquetas del formulario */
.contact-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr !important;
    }

    .form-group {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-navigation ul li a::after {
        font-size: 80px;
    }
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.main-navigation ul li a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.offcanvas-menu-wrapper.active .main-navigation ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for each item up to 10 items */
.offcanvas-menu-wrapper.active .main-navigation ul li:nth-child(1) {
    transition-delay: 0.3s;
}

.offcanvas-menu-wrapper.active .main-navigation ul li:nth-child(2) {
    transition-delay: 0.45s;
}

.offcanvas-menu-wrapper.active .main-navigation ul li:nth-child(3) {
    transition-delay: 0.6s;
}

.offcanvas-menu-wrapper.active .main-navigation ul li:nth-child(4) {
    transition-delay: 0.75s;
}

.offcanvas-menu-wrapper.active .main-navigation ul li:nth-child(5) {
    transition-delay: 0.9s;
}

/*=============================================
=            Hero Section                     =
=============================================*/
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Extra height for parallax */
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
}

@media (max-width: 768px) {
    .hero-bg {
        background-image: url('/wp-content/uploads/2026/05/mob2.jpg') !important;
    }
    .hero-section {
    height: 80vh;
        
    }

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(246, 184, 103) 0%, transparent 20%), linear-gradient(rgba(0, 0, 0, 0.2), rgba(35, 35, 35, 0.0));
        
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Animation */
.fade-in-up {
    animation: fadeInUp 1s ease both;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============================================
=            Sections                         =
=============================================*/
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2026/05/dhbg21.jpg');
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

.section-title h2 {
    font-size: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    text-align: left !important;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.6;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Organic shape */
    z-index: -1;
    transform: scale(1.1) rotate(-5deg);
}

.about-image-wrapper img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: block;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center !important;
    }

    .separator {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Products Grid - Force 4 items in a row on desktop */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed);
}

/* Founders Section (Replaces old Stats/Mission section) */
.founders-section {
    position: relative;
    overflow: hidden;
}

.founders-section::after {
    content: '';
    position: absolute;
    right: -5%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background-image: url('/wp-content/uploads/2026/05/221.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    bottom: -205px;
}
/*=============================================
=        Founders 3-Column Layout             =
=============================================*/
.founders-three-col {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* La imagen en el centro es un poco más ancha */
    gap: 40px;
    align-items: center; /* Centra el texto verticalmente con la imagen */
}

/* Alineación para enmarcar la foto en pantallas grandes */
.founder-left {
    text-align: right;
}

.founder-right {
    text-align: left;
}

/* Ajustes Responsive para la sección Founders */
@media (max-width: 991px) {
    .founders-three-col {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center; /* En móviles todo va centrado */
    }

    .founder-left, .founder-right {
        text-align: center;
    }

    /* Opcional: Hacer que la imagen aparezca primero en móviles */
    .founders-three-col .about-image {
        order: -1;
    }
}
.stats-section::after {
  content: '';
  position: absolute;
  right: -5%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background-image: url('/wp-content/uploads/2026/05/221.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  bottom: -205px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Parallax Section */
.parallax-section {
    padding: 150px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 400px;
    height: 400px;
    background-image: url('/wp-content/uploads/2026/05/221.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08; /* Very subtle */
    z-index: 0;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Contact */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* Basic CF7 styling adjustments */
.wpcf7-form {
    margin: 0;
    padding: 0;
    width: 100%;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-main);
    box-sizing: border-box;
    margin: 0;
}

.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.wpcf7-submit {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s !important;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    width: 100%;
}

.wpcf7-submit:hover {
    background-color: #b5952f !important;
}

/*=============================================
=            Footer                           =
=============================================*/
.site-footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: '';
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 400px;
    height: 400px;
    background-image: url('/wp-content/uploads/2026/05/221.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05; /* Very subtle */
    filter: invert(1); /* Invert color for dark background */
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-bw-logo {
    max-width: 100px;
    filter: brightness(0) invert(1);
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #fff;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-widget p {
    margin-bottom: 10px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.biblio-member {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

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

.site-info {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

.design-credits {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 5px;
}

.design-credits a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid .about-widget {
        grid-column: 1 / -1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }

    /* Display Quick Links and Contact Us in 2 columns on mobile */
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-widget {
        width: 100%;
    }

    .footer-widget.links-widget,
    .footer-widget.contact-widget {
        width: 50%;
        text-align: left;
    }

    .footer-widget.links-widget h3::after,
    .footer-widget.contact-widget h3::after {
        left: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
        text-align: center;
    }

    .main-navigation {
        width: 100%;
    }
}


/*=============================================
=        Newsletter Section Compact (L-R)     =
=============================================*/
.newsletter-section-compact {
    background-color: var(--secondary-color);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-compact-grid {
    display: flex;
    align-items: center; /* Centra verticalmente el texto con el form */
    justify-content: space-between;
    gap: 40px;
}

/* Columna Izquierda */
.newsletter-text {
    flex: 1;
    text-align: left;
}

.newsletter-text h3 {
    font-size: 1.8rem !important;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
}

.newsletter-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0;
    font-style: italic;
}

/* Columna Derecha / Formulario */
.newsletter-form {
    flex: 0 0 45%; /* Ocupa el 45% del ancho */
    display: block !important; /* Solicitado como block */
}

/* Estilo interno del formulario del plugin */
.newsletter-form form {
    display: flex;
    flex-direction: column; /* Apilado interno (input sobre botﾃｳn) */
    gap: 10px;
    width: 100%;
}

.newsletter-form input.tnp-email {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 12px 15px !important;
    height: 48px !important;
    border-radius: 4px !important;
    width: 100% !important;
    font-family: var(--font-main);
}

.newsletter-form label {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Botﾃｳn Color Primario */
.newsletter-form input.tnp-submit {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 30px !important;
    height: 48px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important; /* Botﾃｳn ancho completo en su columna */
}

.newsletter-form input.tnp-submit:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.help-block {
  color: #f4e1a3;
}
/* VISTA Mﾃ天IL */
@media (max-width: 991px) {
    .newsletter-compact-grid {
        flex-direction: column; /* Apila las columnas */
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-text {
        text-align: center;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem !important;
    }

    .newsletter-form {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .newsletter-form input.tnp-email,
    .newsletter-form input.tnp-submit {
        max-width: 100%;
    }
}