.elementor-kit-7{--e-global-color-primary:#000000;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#E501E1;--e-global-typography-primary-font-family:"Sora";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Sora";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Sora";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Sora";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Configuração básica para todos os dispositivos */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout responsivo para grades */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Estilos padrão para desktop */
header, .portfolio-gallery, .portfolio-cta {
    padding: 20px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-gallery img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.portfolio-gallery img:hover {
    transform: scale(1.05);
}

/* Botões */
a.btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 25px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

a.btn:hover {
    background: linear-gradient(90deg, #feb47b, #ff7e5f);
    transform: translateY(-3px);
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    h1, h2 {
        font-size: 2rem;
        text-align: center;
    }

    a.btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* Responsividade para smartphones */
@media (max-width: 768px) {
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }

    .portfolio-cta {
        text-align: center;
        padding: 20px 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    a.btn {
        font-size: 0.8rem;
        padding: 10px;
    }
}

/* Responsividade para telas pequenas (até 480px) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    a.btn {
        padding: 8px;
        font-size: 0.7rem;
    }
}/* End custom CSS */