:root {
    --primary-blue: #1a5f7a;
    --primary-green: #2a9d8f;
    --light-blue: #a2d2ff;
    --light-green: #a7c957;
    --neutral-light: #f8f9fa;
    --neutral-dark: #343a40;
    --neutral-gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animaciones generales */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Header y Navegación */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Ajustado ligeramente */
}

/* --- ESTILOS DEL NUEVO LOGO --- */
.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    text-decoration: none; /* Por si el a tiene subrayado */
	height: 70px; /* Define el espacio MÁXIMO que ocupará el logo y el header */
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-img {
    height: 90px; /* Altura del logo, ajústalo según tu imagen */
    width: auto;  /* Mantiene la proporción */
    object-fit: contain;
    display: block;
}
/* ----------------------------- */

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutral-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a5f7a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}
/* --- NUEVOS ESTILOS PARA LA IMAGEN DEL HERO --- */

/* Estilos base de la imagen */
.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Importante: hace que la imagen llene el espacio sin deformarse, recortando si es necesario */
    transition: transform 0.5s ease; /* Define la duración y suavidad del efecto de zoom */
    display: block; /* Elimina pequeños espacios en blanco debajo de las imágenes */
}

/* Efecto Hover */
/* Cuando pasamos el mouse sobre el contenedor padre (.hero-image),
   la imagen hija (.hero-main-img) se transforma */
.hero-image:hover .hero-main-img {
    transform: scale(1.1); /* Escala la imagen al 110% de su tamaño original */
}

/* Carrusel de Promociones */
.promotions {
    padding: 80px 0;
    background-color: var(--white);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.promo-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
}

.promo-controls {
    display: flex;
    gap: 10px;
}

.promo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-btn:hover {
    background-color: var(--primary-green);
    transform: scale(1.1);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
/* quito la nube sobre la foto del carrusel*/

.carousel-slide {
    min-width: 100%;
    padding: 40px;
    background-size: contain; /* CAMBIAR 'cover' por 'contain' */
    background-position: center;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    height: 400px;
}
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: transparent; /* Cambiado de rgba(0,0,0,0.5) a transparent para el carrusel */
    border-radius: var(--border-radius);
}

.carousel-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.carousel-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.carousel-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(26, 95, 122, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* Secciones generales */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
}

.section-title p {
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Servicios */
.services {
    background-color: var(--neutral-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-green);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Sobre nosotros */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 20px;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-item:hover {
    background-color: rgba(42, 157, 143, 0.05);
    transform: translateX(5px);
}

.value-icon {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Productos */
.products {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 3rem;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    background-color: var(--white);
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* Contacto */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background-color: rgba(42, 157, 143, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-green);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background-color: var(--primary-green);
    color: white;
    transform: rotate(10deg);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--neutral-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-blue));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
    /* Ajustado para el Footer también */
}
.footer-logo .logo-img {
    height: 80px; /* Ligeramente más pequeño en el footer */
    /*filter: brightness(0) invert(1); *//* Vuelve el logo blanco automáticamente */
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .carousel-slide {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        animation: slideDown 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .promo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .carousel-slide {
        height: 300px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .contact-form {
        padding: 30px 20px;
    }
    
    .carousel-slide {
        height: 280px;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
    }
}
/* Sección de Marcas */
#productos {
    background-color: var(--neutral-light);
    padding: 80px 0;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.brand-col {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.brand-col:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.brand-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

.brand-carousel img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    /* Eliminar estas dos líneas: */
    /* filter: grayscale(100%); */
    /* opacity: 0.9; */
    /* Agregar: */
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.brand-col:hover img {
    /* Eliminar estas líneas: */
    /* filter: grayscale(0%); */
    /* opacity: 1; */
    /* Mantener solo: */
    transform: scale(1.05);
}

.brands-info {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(26, 95, 122, 0.05);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--neutral-gray);
}

.brands-info i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* Animación para las marcas */
@keyframes brandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.brand-col:hover {
    animation: brandFloat 2s ease-in-out infinite;
}

/* Responsive para marcas */
@media (max-width: 1200px) {
    .brand-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .brand-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brand-col {
        height: 110px;
    }
}

@media (max-width: 768px) {
    .brand-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .brand-col {
        height: 100px;
    }
    
    .brand-carousel img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .brand-row {
        grid-template-columns: 1fr;
    }
    
    .brand-col {
        height: 90px;
    }
    
    .brands-info {
        font-size: 0.8rem;
        padding: 12px;
    }
}
/*test productos*/
/* Grid de tarjetas de marcas con productos */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.brand-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.brand-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 3px solid var(--primary-green);
    min-height: 85px;
	height: 110px;           /* altura fija para el contenedor */
}

.brand-header img {
    height: auto;
    width: auto;
    max-width: 150px;
	max-height: 90px; 
    object-fit: contain;
    background: white;
    border-radius: 6px;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.brand-header h4 {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    flex: 1;
    line-height: 1.3;
}

.brand-name-fallback {
    display: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.brand-products {
    padding: 1.2rem;
    margin: 0;
    list-style: none;
    flex-grow: 1;
}

.brand-products li {
    padding: 0.4rem 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.9rem;
    color: var(--neutral-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-products li::before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.brand-products li:last-child {
    border-bottom: none;
}

.brands-info {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }
    
.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;           /* altura fija para el contenedor */
    padding: 0.5rem;
}

.brand-header img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90px;        /* la imagen ocupará como máximo 90px de alto */
    object-fit: contain;
}
    
    .brand-header h4 {
        font-size: 1rem;
    }
    
    .brand-products {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

/* Ajuste para móviles para que no tape contenido */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr;  /* antes era 1fr 1fr */
    gap: 50px;
    align-items: center;
    position: relative;
}
.hero-text {
    text-align: center; /* Centra todo el contenido de hero-text */
}

.hero-text .btn {
    display: inline-block; /* Mantiene el comportamiento de botón */
    margin: 0 auto;        /* Centrado horizontal */
}
/*DAYCO LYNK*/

.brand-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.brand-link {
    display: inline-block;
    padding: 6px 12px;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background-color 0.3s;
}

.brand-link:hover {
    background-color:#1b5e20;
}