﻿/* Paleta de colores personalizada */
:root {
    --color-primary: #0D1B2A;        /* Azul oscuro principal */
    --color-secondary: #1B263B;      /* Azul medio para fondos */
    --color-accent: #415A77;         /* Azul claro para acentos */
    --color-light: #778DA9;          /* Azul muy claro para textos secundarios */
    --color-highlight: #E0E1DD;      /* Beige claro para fondos claros */
    --color-white: #FFFFFF;          /* Blanco */
    --color-success: #4A90E2;        /* Azul para botones y acciones */
    --color-hover: #2E4A6B;          /* Hover sobre elementos */
    --color-text-primary: #0D1B2A;   /* Texto principal */
    --color-text-secondary: #778DA9; /* Texto secundario */
    --color-border: #415A77;         /* Bordes */
}

/* Reset y estilos base */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-highlight);
    color: var(--color-text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Wrapping element */
.body-content {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Estilos para tarjetas */
.card-custom {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(13, 27, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(13, 27, 42, 0.2);
    border-color: var(--color-accent);
}

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

.card-body-custom {
    padding: 20px;
    text-align: center;
}

.card-title-custom {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Botones personalizados */
.btn-custom {
    background-color: var(--color-success);
    color: var(--color-white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--color-hover);
    color: var(--color-white);
}

.btn-secondary-custom {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-secondary-custom:hover {
    background-color: var(--color-hover);
    color: var(--color-white);
}

/* Header personalizado */
.header-custom {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px 0;
}

/* Navbar personalizado */
.navbar-custom {
    background-color: var(--color-secondary) !important;
    padding: 10px 0;
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--color-highlight) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: var(--color-white) !important;
}

/* Barra de búsqueda */
.search-bar-custom {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 25px;
    padding: 8px 20px;
    width: 100%;
    max-width: 500px;
}

.search-bar-custom:focus {
    outline: none;
    border-color: var(--color-success);
}

/* Selector de provincia */
.province-selector {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--color-text-primary);
    font-weight: 500;
}

.province-selector:focus {
    outline: none;
    border-color: var(--color-success);
}

/* Carrusel de promociones */
.carousel-promociones {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(13, 27, 42, 0.15);
}

.carousel-promociones img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Tarjetas de productos */
.product-card {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(13, 27, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 27, 42, 0.2);
}

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

.product-card-body {
    padding: 15px;
}

.product-title {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 50px;
}

.product-price {
    color: var(--color-success);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-price-contado {
    color: var(--color-success);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Responsive para precios */
@media screen and (max-width: 576px) {
    .product-price-contado {
        font-size: 1.1rem;
    }
    
    .product-price span {
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    .product-price-contado {
        font-size: 1.2rem;
    }
}

/* Carrusel de marcas */
.carousel-marcas {
    margin: 30px 0;
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(13, 27, 42, 0.1);
}

.carousel-marcas img {
    height: 80px;
    object-fit: contain;
    margin: 0 20px;
}

/* Sección de contacto */
.contact-section {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 40px 0;
    margin-top: 50px;
}

.contact-info {
    color: var(--color-highlight);
}

.contact-info h5 {
    color: var(--color-white);
    margin-bottom: 15px;
}

/* Mapa */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(13, 27, 42, 0.15);
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* VerProducto responsive */
@media screen and (max-width: 768px) {
    .product-detail-container .row {
        flex-direction: column;
    }
    
    .product-gallery {
        margin-bottom: 20px;
    }
    
    .product-info {
        margin-top: 20px;
    }
    
    .price-container .price {
        font-size: 2rem !important;
    }
    
    .product-gallery-thumbs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-gallery-thumbs img {
        width: 60px;
        height: 60px;
        margin: 5px;
    }
}

/* Paginación */
.pagination-custom .page-link {
    color: var(--color-primary);
    border-color: var(--color-border);
}

.pagination-custom .page-link:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--color-success);
    border-color: var(--color-success);
}

/* Galería de producto */
.product-gallery {
    margin-bottom: 30px;
}

.product-gallery-main img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(13, 27, 42, 0.15);
}

.product-gallery-thumbs {
    margin-top: 15px;
}

.product-gallery-thumbs img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--color-success);
}

/* Información del producto */
.product-info {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(13, 27, 42, 0.1);
}

.product-info h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.product-info .price {
    color: var(--color-success);
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
}

.product-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 20px 0;
}

/* Botón WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* Sección Quiénes Somos */
.about-section {
    background-color: var(--color-white);
    padding: 50px 0;
    margin-top: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(13, 27, 42, 0.15);
}

.about-text {
    flex: 1;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.about-text h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* Hero section con imagen de fondo */
.hero-section {
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 42, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 50px;
}

.hero-logo-full {
    width: 100%;
    max-width: 100vw;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 40px auto;
    padding-bottom: 25px;
}

.hero-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
    margin-top: 54px;
}
.modern-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(13,27,42,0.11);
    text-align: center;
    width: 230px;
    margin: 0 28px 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.4,2,.6,.9), box-shadow 0.22s;
    padding-bottom: 18px;
    padding-top: 0;
    border: none;
    outline: none;
}
.modern-card-img-holder {
    width: 100%;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    box-shadow: none;
    background: none;
    transition: box-shadow 0.3s;
    margin-bottom: 0;
}
.modern-card-img {
    width: 100%;
    height: 148px;
    object-fit: contain;
    background: #fff;
    transition: transform 0.28s cubic-bezier(.2,2,.6,1), filter 0.2s;
    border-radius: 18px 18px 0 0;
}
.modern-card-title,
.modern-card-desc {
    display: block;
    margin-left: 0;
    margin-right: 0;
}
.modern-card-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 22px 0 5px 0;
    letter-spacing: 0.6px;
    text-shadow: none;
}
.modern-card-desc {
    font-size: 1.04rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    margin: 0 0 0px 0;
    text-shadow: none;
}
.modern-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 32px rgba(13,27,42,0.17);
}
.modern-card:hover .modern-card-img {
    transform: scale(1.09) rotate(-2deg);
    filter: brightness(1.08) drop-shadow(0 8px 32px rgba(65,90,119,.07));
}
@media (max-width: 1000px) {
    .modern-card { width: 98vw; max-width: 360px; margin: 0 0 32px 0; }
    .hero-cards {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
}
.modern-card:hover .modern-card-img-holder {
    box-shadow: 0 8px 32px rgba(13,27,42,0.18);
}
@media (max-width: 800px) {
    .modern-card {
        width: 100%;
        max-width: 350px;
        margin: 0 0 30px 0;
    }
    .modern-card-img { height: 88px; }
    .hero-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

/* Responsive - Mobile First */
@media screen and (max-width: 576px) {
    /* Asegurar que el body-content no tenga overflow horizontal */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .body-content {
        width: 100%;
        max-width: 100vw;
        padding: 0 10px !important;
        margin: 0 !important;
        box-sizing: border-box;
    }
    
    /* Header responsive */
    .header-custom {
        width: 100%;
        padding: 10px 5px !important;
    }
    
    .header-custom .row {
        flex-direction: column;
        gap: 10px;
        margin: 0 !important;
    }
    
    .header-custom .col-md-3,
    .header-custom .col-md-6,
    .header-custom .col-md-3 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center;
        padding: 5px !important;
    }
    
    .header-custom img {
        max-height: 50px;
        max-width: 100%;
        height: auto;
    }
    
    /* Navbar responsive */
    .navbar-custom {
        width: 100%;
        padding: 10px 5px !important;
    }
    
    .navbar-custom .navbar-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        padding: 10px 5px !important;
        text-align: center;
    }
    
    .province-selector {
        width: 100% !important;
        margin-top: 10px;
        max-width: 100%;
    }
    
    /* Productos responsive */
    .product-card,
    .card-custom {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }
    
    .product-card img,
    .card-custom img {
        height: 180px;
        width: 100%;
        object-fit: cover;
    }
    
    .product-title,
    .card-title-custom {
        font-size: 1rem;
        min-height: 40px;
        word-wrap: break-word;
    }
    
    .product-price-contado {
        font-size: 1.1rem !important;
    }
    
    /* Precios responsive */
    .product-prices {
        margin-bottom: 8px;
    }
    
    /* VerProducto responsive */
    .price-container {
        margin-bottom: 15px;
    }
    
    .price {
        font-size: 2rem !important;
    }
    
    /* Carrusel responsive */
    .carousel-promociones {
        width: 100%;
        margin: 15px 0;
    }
    
    .carousel-promociones img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    
    .carousel-marcas {
        width: 100%;
        overflow-x: auto;
    }
    
    .carousel-marcas img {
        height: 60px;
        margin: 0 10px;
    }
    
    /* Contacto responsive */
    .contact-section {
        width: 100%;
        padding: 20px 10px !important;
    }
    
    .contact-section .row {
        flex-direction: column;
        margin: 0 !important;
    }
    
    .contact-section .col-md-6,
    .contact-section .col-md-4 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 10px !important;
    }
    
    .map-container {
        width: 100%;
    }
    
    .map-container iframe {
        height: 250px;
        width: 100%;
    }
    
    /* Footer responsive */
    footer {
        padding: 15px 10px !important;
        font-size: 0.85rem;
        width: 100%;
    }
    
    /* Botones responsive */
    .btn-custom,
    .btn-secondary-custom {
        width: 100% !important;
        max-width: 100%;
        padding: 12px !important;
        font-size: 0.9rem;
    }
    
    /* Barra de búsqueda responsive */
    .search-bar-custom {
        width: 100% !important;
        max-width: 100%;
        margin: 10px 0;
    }
    
    /* Hero section responsive */
    .hero-section {
        min-height: 300px !important;
        padding: 20px 10px !important;
    }
    
    .hero-logo {
        max-width: 80% !important;
    }
    
    /* Cards modernas responsive */
    .modern-card,
    .modern-card-no-frame {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
    }
    
    /* Grid de productos responsive */
    #productosContainer .col-md-3,
    #productosContainer .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media screen and (min-width: 577px) and (max-width: 768px) {
    /* Tablets pequeñas */
    .product-card img {
        height: 220px;
    }
    
    .carousel-promociones img {
        height: 300px;
    }
    
    .price {
        font-size: 2.2rem !important;
    }
}

@media screen and (max-width: 768px) {
    .hero-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .product-gallery-thumbs img {
        width: 70px;
        height: 70px;
    }
    
    .carousel-promociones img {
        height: 250px;
    }
    
    /* Productos en grid responsive */
    #productosContainer .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px){
    .hero-section{
        min-height: 320px;
    }
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
    
    /* Grid de productos para tablets */
    #productosContainer .col-md-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Desktop - 4 columnas */
@media screen and (min-width: 992px) {
    #productosContainer .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .product-card img {
        height: 250px;
    }
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 100%;
}

.modern-card-no-frame {
  background: none;
  border: none;
  box-shadow: none;
  width: 340px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.23s cubic-bezier(.3,2,.4,.9);
  margin: 0 45px 0 45px;
}
.modern-card-img-no-frame {
  width: 100%;
  height: 260px;
  max-width: 330px;
  object-fit: contain;
  border-radius: 0;
  background: none;
  box-shadow: none;
  display: block;
  transition: transform 0.24s, filter 0.18s;
  padding: 0;
  margin-bottom: 25px;
}
.modern-card-no-frame:hover .modern-card-img-no-frame {
  transform: scale(1.07);
  filter: brightness(1.12);
}
.hero-cards { gap: 80px; }
.modern-card-title {
    font-size: 1.40rem;
    color: #fff;
    font-weight: 700;
    margin: 10px 0 2px 0;
    letter-spacing: 0.4px;
    text-shadow: 0 3px 10px rgba(13,27,42,0.14);
}
.modern-card-desc {
    font-size: 1.04rem;
    color: var(--color-light);
    font-weight: 400;
    margin: 3px 0 0 0;
    text-shadow: none;
}
@media (max-width: 1000px) {
    .modern-card-no-frame { width: 98vw; max-width: 360px; margin: 0 0 42px 0; }
    .modern-card-img-no-frame { height: 140px; max-width: 320px; }
    .hero-cards { flex-direction: column; gap: 32px; align-items: center; }
}

.moderno-center-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  width: 100vw;
  padding-top: 50px;
}
.modern-cards-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 64px;
  min-height: 400px;
  width: 100vw;
}
.glass-card-futuristic {
  background: rgba(255,255,255,0.22);
  border-radius: 34px;
  box-shadow: 0 8px 32px 0 rgba(13,27,42,0.20), 0 0 24px 0 rgba(74,144,226,.08) inset;
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border: 1.5px solid rgba(150, 170, 240, 0.23);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 34px 26px 34px;
  min-width: 240px;
  min-height: 330px;
  transition: transform .27s cubic-bezier(.33,1.6,.44,.97), box-shadow .21s;
  cursor: pointer;
}
.glass-card-futuristic:hover {
  box-shadow: 0 18px 38px 2px #0adfff44, 0 10px 42px 0 #4169e170;
  transform: scale(1.05) rotateZ(-2deg) translateY(-12px);
  border-color: #3fa1ff77;
}
.glass-card-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 30px;
  margin-top: 8px;
  border-radius: 22px;
  box-shadow: 0 3px 30px #3fa1ff44;
  background: transparent;
  transition: filter 0.15s, box-shadow 0.21s;
}
.glass-card-futuristic:hover .glass-card-icon {
  filter: brightness(1.14) drop-shadow(0 0 34px #4A90E2BB);
  box-shadow: 0 6px 44px #0adfff44;
}
.glass-card-txt {
  width: 100%;
  text-align: center;
}
.glass-card-title {
  color: #0d1b2a;
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-shadow: 0 2px 18px #E0E1DDCC;
}
.glass-card-desc {
  color: #415a77;
  font-size: 1.04rem;
  font-weight: 400;
  margin: 0 0 2px 0;
}
@media (max-width: 1100px){
  .modern-cards-row { gap: 30px; }
  .glass-card-futuristic { padding: 19px 13px 17px 13px; min-width: 155px; min-height: 220px; }
  .glass-card-icon { width: 75px; height: 75px; }
  .glass-card-title { font-size: 1.10rem; }
}
@media (max-width: 700px) {
  .modern-cards-row {
    flex-direction: column;
    gap: 30px;
    width: 100vw;
  }
  .glass-card-futuristic { width: 96vw; max-width: 340px; }
}

.fancy-word-cta {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 2.9rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  letter-spacing: 5px;
  background: rgba(14, 36, 88, 0.08);
  box-shadow: 0 0 0px 0 #1B263B40;
  border: none;
  border-radius: 28px;
  padding: 32px 46px;
  margin: 0 48px 0 48px;
  transition: all 0.25s cubic-bezier(.36,1.7,.37,1.03);
  cursor: pointer;
  text-shadow: 0 12px 36px #415A77a2, 0 0 6px #0044ee99;
  backdrop-filter: blur(2px);
  outline: none;
  opacity: 0.96;
}
.fancy-word-cta:hover {
  color: #0ADFFF;
  background: rgba(14, 80, 180, 0.18);
  box-shadow: 0 13px 54px 14px #0adfff3c, 0 2px 42px 0 #4169e180;
  transform: scale(1.08) rotateZ(-2.5deg);
  text-shadow: 0 22px 60px #52a9e5, 0 0 22px #4A90E2cc, 0 0 28px #0adfff99;
  opacity: 1.0;
}
@media (max-width: 900px) {
  .fancy-word-cta {
    font-size: 1.55rem;
    padding: 18px 14px; margin: 0 8vw 22px 8vw;
  }
  .modern-cards-row { flex-direction: column; gap: 28px; }
}

.negro-futuro-section {
    background: #0D1B2A;
    min-height: 480px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 66px;
    padding-bottom: 44px;
}
.hero-logo-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-home {
    max-width: 210px;
    width: 38vw;
    height: auto;
    display: block;
    margin: 0 auto;
    background: transparent;
    border-radius: 16px;
    box-shadow: none;
}
@media (max-width: 700px){
  .logo-home {
    max-width: 60vw;
  }
  .negro-futuro-section { padding-top: 32px; padding-bottom: 20px; }
  .modern-cards-row { gap: 26px; }
}
