/* 
    Created on : 15 oct 2025, 7:38:54
    Author     : Pablo.Barrado
*/

/* ========================================
   MOVILDOMO CHILD THEME - ESTILOS PERSONALIZADOS
   ======================================== */

/* VARIABLES DE COLOR */
:root {
  --movildomo-primary: #00CED1; /* Turquesa principal */
  --movildomo-dark: #0A1628; /* Azul oscuro */
  --movildomo-light: #FFFFFF;
  --movildomo-gray: #F5F5F5;
  --movildomo-text: #333333;
}

/* TIPOGRAFÍA */
body {
  font-family: 'Roboto', 'Arial', sans-serif;
  color: var(--movildomo-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--movildomo-dark);
}

/* HEADER PERSONALIZADO */
#header {
  background: var(--movildomo-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
  background: var(--movildomo-primary);
  color: var(--movildomo-light);
  padding: 10px 0;
}

.header-nav {
  background: var(--movildomo-light);
}

/* LOGO */
#header .logo {
  padding: 15px 0;
}

#header .logo img {
  max-height: 60px;
}

/* NAVEGACIÓN */
.main-menu {
  background: var(--movildomo-light);
}

.main-menu .top-menu a {
  color: var(--movildomo-dark);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.main-menu .top-menu a:hover {
  color: var(--movildomo-primary);
  background: var(--movildomo-gray);
}

/* BANNER PRINCIPAL */
.hero-banner {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  text-align: center;
  position: relative;
}

.hero-banner h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--movildomo-dark);
  margin-bottom: 20px;
}

.hero-banner p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

/* SECCIONES DE PRODUCTOS */
.product-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--movildomo-dark);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: #666;
}

/* CATEGORÍAS CON IMÁGENES */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--movildomo-light);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-card .category-info {
  padding: 20px;
  background: var(--movildomo-light);
}

.category-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--movildomo-dark);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* PRODUCTOS TOP */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.product-miniature {
  background: var(--movildomo-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-miniature:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.product-miniature .product-thumbnail {
  position: relative;
  overflow: hidden;
  background: var(--movildomo-gray);
}

.product-miniature .product-thumbnail img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-miniature:hover .product-thumbnail img {
  transform: scale(1.05);
}

/* SECCIÓN VIDA INTELIGENTE */
.smart-life-section {
  background: var(--movildomo-dark);
  color: var(--movildomo-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smart-life-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,206,209,0.1) 0%, rgba(10,22,40,0.9) 100%);
  z-index: 1;
}

.smart-life-section .container {
  position: relative;
  z-index: 2;
}

.smart-life-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--movildomo-light);
  margin-bottom: 15px;
}

.smart-life-section .subtitle {
  font-size: 20px;
  color: var(--movildomo-primary);
  margin-bottom: 40px;
  font-weight: 300;
}

/* SECCIÓN DE APP */
.app-section {
  background: var(--movildomo-dark);
  color: var(--movildomo-light);
  padding: 60px 0;
}

.app-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--movildomo-light);
  margin-bottom: 20px;
}

.app-section p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 30px;
}

.qr-codes {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.qr-codes img {
  width: 120px;
  height: 120px;
}

.download-button {
  background: var(--movildomo-primary);
  color: var(--movildomo-light);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-button:hover {
  background: #00B8BB;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,206,209,0.3);
}

/* FOOTER */
#footer {
  background: #0A1628;
  color: #FFFFFF;
  padding: 50px 0 20px;
}

#footer h3 {
  color: var(--movildomo-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

#footer ul {
  list-style: none;
  padding: 0;
}

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

#footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer ul li a:hover {
  color: var(--movildomo-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #888;
}

/* BOTONES */
.btn-primary {
  background: var(--movildomo-primary);
  border-color: var(--movildomo-primary);
  color: var(--movildomo-light);
  border-radius: 5px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #00B8BB;
  border-color: #00B8BB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,206,209,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 32px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}



@media (min-width: 1200px) {
    .container {
        width: 1540px;
        max-width: 100%;
    }
}

 

.footer-container .h3, .footer-container .h4 {
    color: #ddd;
}


.carousel .carousel-inner {
    height: 100%;
}


#wrapper {
    padding-top: 0rem;
}


span.hidden-sm-down {
    display: none;
}

#header .header-top a[data-depth="0"] {
    color: #ffffff;
    text-transform: uppercase;
}


#wrapper .breadcrumb {
    padding: 0;
    background: 0 0;
    margin-top: 38px;
}

#search_widget form input {
    width: 100%;
    padding: 10px 20px 10px 40px;
    outline: none;
    background-color: #00ced1;
    border: 1px solid #fff;
    border-radius: 5px;
}


input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #ffffff;
}

div#_desktop_cart {
    display: inline-block;
    max-width: 90px;
    float: right !important;
    margin-right: 25px;
    margin-top: 10px;
}
#_desktop_user_info {
    display: inline-block;
    max-width: 125px;
    float: right !important;
    margin-right: 25px;
    margin-top: 10px;
}


#_desktop_user_info div a {
    color: #fff;
}

@media only screen and (min-width: 992px) {
    #search_widget {
        min-width: 14.5rem;
        margin-right: 34px;
    }
}


#main .page-footer {
    margin-bottom: 0px !important;
}


.blockreassurance_product p.block-title {
    line-height: 40px;
    margin-bottom: 3px;
    margin-left: 23px;
    font-size: 16px;
}

.featured-products .products {
        gap: 30px 0px;
}


.block-category {
    min-height: 10px;
    margin-bottom: 1.563rem;
}