:root{
  --color-primario: #9C9695;
  --color-secundario: #FFFFFF;
  --color-hover: #797776;
}
h1{
  color: #373435 !important;
}
h2{
  color: #373435;
}
h3{
  color: #373435;
}
p{
  color: var(--color-primario) !important;
}
/** TOP HEADER **/
.contact-list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.contact-list li {
    display: flex;
    align-items: center;
    font-size: 12px;
}
.contact-list i {
    margin-right: 6px;
}
.section-bg{
  background-color: var(--color-primario) !important;
}
.header-top-section::before{
  background-color: var(--color-primario) !important;
}
.list-top-header{
  color: #fff;
}
.header-top-wrapper .contact-list li a{
  color: #fff;
}
.header-top-wrapper .contact-list li i{
  color: #fff;
}

.header-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 0 0;
    position: relative;
}
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
}
.user-account a {
    font-size: 24px;
    color: var(--color-primario);
    margin-left: 16px;
}
.main-menu-wrapper {
    width: 100%;
    position: relative;
    margin-top: 16px;
    margin-bottom: 0px;
}

.main-menu-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e5e5e5;
}

.main-menu-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e5e5e5;
}

.main-menu-wrapper .container {
    display: flex;
    justify-content: center;
}
.main-menu-wrapper ul {
    display: flex;
    gap: 32px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-transform: uppercase;
    font-size: 14px;
}

/* Estilos para el menú principal */
.main-menu-wrapper ul li {
    position: relative;
    padding: 5px 0;
}

.main-menu-wrapper ul li a {
    color: #373435;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-menu-wrapper ul li a:hover {
    color: var(--color-hover);
}

/* Estilos para submenús */
.main-menu-wrapper ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: none;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
}

.main-menu-wrapper ul li:hover ul {
    display: flex;
}

.main-menu-wrapper ul li ul li {
    padding: 0;
    margin: 0;
}

.main-menu-wrapper ul li ul li a {
    display: block;
    padding: 12px 20px;
    color: #373435;
    font-size: 14px;
    text-transform: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.3s ease;
}

.main-menu-wrapper ul li ul li:last-child a {
    border-bottom: none;
}

.main-menu-wrapper ul li ul li a:hover {
    background-color: #f8f8f8;
    color: var(--color-hover);
}
.theme-btn{
  background: transparent !important;
  color: var(--color-primario) !important;
  border: 1px solid var(--color-primario) !important;
  padding: 10px 10px !important;
  font-size: 14px !important;
}
.theme-btn:hover{
    background: var(--color-hover) !important;
}
.btn-2{
    background: #9C9695;
    color: #fff;
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.fa-user:before{
  color: var(--color-primario);
}

/** INICIO - SOBRE NOSOTROS **/

.icon-items {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.icon-items .icon img {
    width: 32px;
    height: auto;
    display: block;
}
.icon-items .content p {
    margin: 0;
    color: #8c8681;
    font-size: 17px;
}
.about-wrapper .about-content.style-3 .icon-items .icon{
  width: 25px !important;
  height: 35px !important;
}
.theme-btn.padding-style{
  padding: 10px 10px !important;
}
.theme-btn.radius-none{
  border-radius: 5px;
}
.section-title span{
  color: var(--color-primario);
  font-size: 12px;
}
.section-title h2{
  text-transform: none !important;
}
.section-title{
    text-transform: none;
}

/** INICIO - NUESTROS SERVICIOS **/

.servicios-section {
    background-size: cover;
    background-position: center;
    padding: 60px 0 40px 0;
}
.servicios-header {
    margin-bottom: 32px;
}
.servicios-cards-row {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.servicio-card {
    background: #fff;
    border: 1.5px solid #d6d2cd;
    border-radius: 8px;
    padding: 32px 24px 0 24px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.servicio-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}
.servicio-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.servicio-content h3 {
    font-size: 18px;
    margin: 0 0 6px 0;
    color: #373435;
}
.servicio-content p {
    font-size: 15px;
    color: #8c8681;
    margin: 0;
}
.servicio-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    width: 100%;
    background: #8c8681;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border: none;
    border-radius: 0 0 8px 8px;
    font-size: 15px;
    margin-top: 24px;
    text-decoration: none;
    transition: background 0.2s;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 0 8px 8px;
}
.servicio-btn:hover {
    background: #373435;
}

.servicio-card:hover .servicio-btn {
    opacity: 1;
    pointer-events: auto;
}

/** INICIO - NUESTRAS CORTINAS **/

.portfolio-btn {
    display: inline-block;
    margin-top: 18px;
    color: #fff;
    border-bottom: 1.5px solid #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.2s, border-color 0.2s;
}
.portfolio-single-items .portfolio-image .portfolio-content{
  background-color: rgba(0, 0, 0, 0.7) !important;
}

/** INICIO - NUESTROS PRODUCTOS **/
.producto-item {
    position: relative !important;
    width: 200px;
    height: 200px;
    display: inline-block;
}
.producto-img img {
    width: 100%;
    height: 100%;
    display: block;
}
.producto-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.7) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s !important;
    z-index: 10 !important;
    
}
.producto-item:hover .producto-overlay {
    opacity: 1 !important;
}

.achievement-wrapper .counter-area .counter-item{
  margin-top: 40px;
}

.footer-bg {
  background-color: #DDDDD7;
}

/** BANNER **/

.banner-section {
    background-size: cover;
    background-position: center;
    width: 100%;
}

.banner-content {
    padding: 60px 0;
    text-align: left;
}

.banner-subtitulo {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #373435; /* Ajusta el color si lo necesitas */
    text-transform: uppercase;
}

.banner-titulo {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    color: #373435; /* Ajusta el color si lo necesitas */
    margin: 0;
    text-transform: uppercase;
}

.confeccion-medida-list .confeccion-item {
    font-size: 1.1em;
    padding: 10px 0;
}
.confeccion-medida-list hr {
    margin: 8px auto 0 auto;
    width: 60%;
    border-top: 2px solid #ccc;
}

.banner-servicio {
    background-size: cover;
    background-position: center;
    padding: 50px 0 30px 0;
    position: relative;
}
.banner-servicio-inner {
    position: relative;
    z-index: 2;
}
.banner-servicio-content {
    display: flex;
    align-items: center;
}
.banner-servicio-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.banner-servicio-subtitulo {
    display: block;
    font-size: 12px;
    color: #444;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.banner-servicio-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}

/* Sidebar de Servicios */
.main-sidebar .widget-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #555;
}

.widget-categories-styled ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories-styled ul li {
    margin-bottom: 5px;
}

.widget-categories-styled ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.widget-categories-styled ul li a:hover {
    color: #A07C5B; /* Color de ejemplo, ajústalo a tu paleta */
}

/* Widget de Contacto */
.contact-widget {
    background-color: #f0f0f0;
    padding: 30px;
    margin-top: 40px;
}

.contact-widget .contact-text .question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.contact-widget .contact-text .theme-btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 12px 30px;
    border: 1px solid #ddd;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-widget .contact-text .theme-btn:hover {
    background-color: #333;
    color: #fff;
}

.contact-widget .contact-text .showroom-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.mas-detalles-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    text-align: left;
    gap: 16px;
}
.icono-repetidor img {
    max-height: 48px;
    width: auto;
    display: block;
}
.mas-detalles-item .fw-bold {
    font-size: 1.1rem;
    color: #333;
}
.mas-detalles-item .text-muted {
    font-size: 0.95rem;
    color: #888;
}

.banner-productos {
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    color: #333;
}
.subtitulo-productos {
    font-size: 13px;
    letter-spacing: 1px;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.titulo-productos {
    font-size: 2.2rem;
    font-weight: 700;
    color: #393636;
    margin-bottom: 10px;
}
.descripcion-productos {
    font-size: 1.1rem;
    color: #373435 !important;
    margin-bottom: 25px;
}
.btn-primary-productos {
    background: #888 !important;
    color: #fff;
    border: 1px solid #888;
    border-radius: 5px;
    padding: 5px 10px;

}
.btn-primary-productos:hover {
    background: #555;
    color: #fff;
}
.btn-secondary-productos {
    background: #fff;
    color: #888;
    border: 1px solid #bbb;
}
.btn-secondary-productos:hover {
    background: #eee;
    color: #555;
}
@media (max-width: 767px) {
    .titulo-productos { font-size: 1.3rem; }
    .banner-productos { min-height: 140px; }
}

/** PRODUCTOS - TIPOS DE CORTINAS **/

.cortina-card {
    background: #fff;
    border: none;
    min-height: 270px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: none;
    transition: box-shadow 0.2s;
}
.cortina-img {
    display: block;
    width: 100% !important;
    height: 350px;
    object-fit: cover;
    transition: filter 0.3s;
}
.cortina-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    background: rgba(255,255,255,0.5);
    opacity: 0;
    padding: 25px 18px 18px 18px;
    transition: opacity 0.3s;
    pointer-events: none;
    text-align: left;
}
.cortina-card:hover .cortina-overlay,
.cortina-card:focus-within .cortina-overlay {
    opacity: 1;
    pointer-events: auto;
}
.cortina-nombre {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #222;
    text-transform: uppercase;
}
.cortina-desc {
    color: #666;
    font-size: 0.97rem;
}
@media (max-width: 767px) {
    .cortina-img { height: 140px; }
}

.producto-img {
    position: relative;
    cursor: pointer;
}
.producto-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1rem;
}
.producto-img:hover .producto-overlay,
.producto-img:focus-within .producto-overlay {
    opacity: 1;
}

.section-title.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-title.text-center span,
.section-title.text-center h2,
.section-title.text-center .text-muted {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.sidebar .widget-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}
.sidebar ul.list-unstyled {
    margin: 0;
    padding: 0;
}
.sidebar ul.list-unstyled li {
    border: none;
    padding: 0 0 12px 0;
    margin-bottom: 0;
}
.sidebar ul.list-unstyled li:last-child {
    border: none;
}
.sidebar .img-fluid {
    border-radius: 4px;
}

/** CONTACTO **/

.contact-section {
    padding: 40px 0 30px 0;
}
.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}
.contact-info strong {
    font-size: 1rem;
    color: #222;
    display: block;
    margin-bottom: 2px;
}
.contact-info {
    font-size: 1.05rem;
    color: #444;
}
.contact-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 0px;
    border: none;
}
@media (max-width: 991px) {
    .contact-info h3 {
        margin-top: 30px;
        text-align: center;
    }
    .contact-info {
        text-align: center;
    }
}

.wpforms-container-full button[type=submit]{
    background-color: #9C9695 !important;
    height: 36px;
    width: 250px;
}

.portfolio-wrapper-3 .portfolio-content ul li i{
    color: #373435;
}


.galeria-espacios-section .descripcion-superior-custom {
    margin-bottom: 150px; /* ajustá a gusto */
}


.portfolio-items .portfolio-image{
    height: 335px;
}

.footer-widgets-wrapper{
    padding: 90px 0px 52px;
}

/* Mobile styles for productos section */
@media (max-width: 767px) {
    .producto-img {
        margin-right: 35px;
    }
}

/** HEADER STICKY **/

.header-1.sticky .header-center{
    margin: 7px !important;
}


.menu-sticky-only {
    display: none;
}

.header-1.sticky .menu-sticky-only {
    display: block;
}
/* Ocultar el menú normal cuando sticky está activo */
.header-1.sticky .menu-normal {
    display: none;
}
.header-1.sticky .menu-sticky-only::before,
.header-1.sticky .menu-sticky-only::after {
    content: none !important;
    display: none !important;
}

.header-1.sticky .custom-logo {
    height: 70px; /* o el tamaño que necesites */
    transition: all 0.3s ease;
    width: 100%;
	object-fit: contain;
}

@media (max-width: 991px) {
    .main-menu-wrapper.menu-sticky-only,
    #mobile-menu {
        display: none !important;
    }
}
