body {
    background: url('fondos/fondo12.5.jpg') no-repeat center center fixed;
    background-size: cover;
}

header, footer, h1, h3, .cta-button {
    font-family: "Renogare-Regular";
}

.container {
    max-width: 1200px;
    margin: auto;
}

.logo1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo1 img{
    padding-top: 30px;
    max-width: 923px;
    max-height: 923px;
    width: 100%;
    height: auto;
}

.main-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 100%;
}

.main-section h1, .text-section h1 {
    font-size: 48px;
    color: #FFF;
    margin: 0 0 20px;
}

.main-section p {
    font-size: 24px;
    color: #FFF;
    margin: 0 0 40px;
}

.main-section img {
    max-width: 450px;
    height: auto;
    margin: 20px;
    justify-content: center;
}

.text-section {
    padding: 60px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin: 40px auto;
    max-width: 100%;
}
.text-section p {
    font-size: 24px;
    color: #FFF;
    line-height: 1.5;
    margin: 20px auto;
}

.cta-button {
    display: inline-block;
    background-color: #000;
    color: #FFF;
    font-weight: bolder;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 500ms ease;
}

.cta-button:hover {
    color:  #bfd630;
}

.product-logos img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto;
}

.product-logos img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-logos a {
    display:inline-block;
    margin: 0;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}


@media (max-width: 768px) {
    .logo1 {
        padding-top: 40px;
    }
    .main-section h1 {
        font-size: 32px;
    }

    .main-section p,
    .text-section p {
        font-size: 20px;
    }

    .product-logos {
        flex-direction: column;
    }

    .main-section img {
        margin: 0;
        padding-top: 20px;
    }

}

@media (max-width: 576px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        margin: 10px 0;
    }
}
 