/* Responsive CSS - Pisada do Sertão */

/* Media queries para responsividade */

/* Mobile First - Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

/* Utilities para responsividade */
.responsive-text {
    font-size: clamp(1rem, 2.5vw, 2rem);
}

.responsive-padding {
    padding: clamp(1rem, 5vw, 3rem);
}

.responsive-margin {
    margin: clamp(0.5rem, 2.5vw, 2rem);
}
