/* 
* Visual adjustments for PETsys website
* Contains adjustments to elements positioning and visual tweaks
*/

/* Set footer background image to span full width */
.bg-footer {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Ensure the image displays at full width */
.bg-footer img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Footer spacing removal - global for all pages */
.site-footer {
    margin: 0;
    padding: 0;
}

.footer-content {
    margin: 0;
    padding: 0;
    margin-top: -80px; /* Reduzido de -120px para -80px */
}

.footer-content .container {
    padding: 20px 0; /* Adicionado padding vertical menor */
}

.footer-bottom {
    margin: 0;
    padding: 10px 0; /* Reduzido o padding vertical */
}

.footer-bottom .container {
    padding: 0;
}

/* Ajuste do SVG do footer */
.bg-footer .svg-curve {
    height: 300px; /* Reduzido de 405px para 300px */
}

@media (min-width: 641px) {
    .bg-footer .svg-curve.tablet {
        height: 350px; /* Reduzido de 400px para 350px */
    }
}

@media (min-width: 1025px) {
    .bg-footer .svg-curve.desktop {
        height: 400px; /* Reduzido de 524px para 400px */
    }
}
