:root {
    /* Colors */
    --primary-color: #2c3e50;
    /* Dark Navy Blue - Header/Footer */
    --accent-color: #902020;
    /* Deep Red/Burgundy - Contact Form */
    --text-color: #2c3e50;
    /* Grey text */
    --light-bg: #e4e2e3;
    /* Light grey background */
    --white: #ffffff;
    --gold: #c5a059;

    /* Typography */
    --font-primary: 'Myriad Pro', 'Myriad', sans-serif;
    --font-secondary: 'Myriad Pro', 'Myriad', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: var(--font-secondary);
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.4;
    font-size: 1.1rem;
    text-wrap: pretty;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

/* Header Styles */
.main-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding-bottom: 2rem;
}

.top-bar {
    padding: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    /* Image shows top left social icons */
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.1rem;
}

.social-icons a:hover {
    color: var(--gold);
}

.header-content {
    text-align: center;
    margin-top: 1rem;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.logo-img {
    max-height: 180px;
    width: auto;
    display: block;
}

/* Hide old text elements if any remain */
.logo h1,
.logo p,
.logo-circle {
    display: none;
}

/* Navigation */
.main-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.nav-list {
    list-style: none;
    /* Remove bullets */
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-list a {
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
}

.nav-list a:hover {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    /* Specific light grey from image */
    padding: 1.5rem 0;
    text-align: center;
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0 auto 3rem;
    color: var(--primary-color);
    /* Lighter grey for headline as per image? Or dark? Image looks like light grey text actually? No, it's dark text on light bg, maybe slightly muted */
    color: var(--primary-color);
    line-height: 1.3;
    letter-spacing: 1px;
    text-wrap: balance;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.5;
    font-weight: 300;
}

/* Portfolio / Gallery Section */
.portfolio-section {
    padding: 2rem 0;
    text-align: center;
    background-color: var(--light-bg);
}

.section-label {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: 0.3s;
}

.gallery-item img:hover {
    filter: brightness(1);
    transform: scale(1.02);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 2rem 0;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--accent-color);
}

.features-text {
    max-width: 1000px;
    margin: 3rem auto 0;
    text-align: left;
}

.features-text p {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 2rem 0;
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 200px;
}

.about-image img {
    width: 100%;
    border-radius: 2px;
    filter: grayscale(100%);
}

.about-text {
    flex: 1;
}

.about-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text h4 span {
    font-weight: 300;
    color: var(--primary-color);
    margin-left: 10px;
    font-style: italic;
    font-family: var(--font-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
}

.contact-box {
    background-color: transparent;
    padding: 3rem 4rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    /* Center the box */
    color: var(--white);
    box-shadow: none;
}

/* Standard Form Styles */
.standard-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.standard-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.standard-form label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.standard-form input,
.standard-form select,
.standard-form textarea {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 12px 15px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--primary-color);
    outline: none;
    transition: 0.3s;
    width: 100%;
}

.standard-form input:focus,
.standard-form select:focus,
.standard-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.standard-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    text-align: right;
    margin-top: 10px;
}

.submit-btn {
    background-color: var(--primary-color);
    /* Navy Blue Button for contrast on Red */
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.submit-btn:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

/* Responsive Form */
@media (max-width: 768px) {
    .standard-form .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
}

/* Carousel Styles */
.slide-grid {
    display: flex;
    gap: 15px;
    width: 100%;
}
.slide-grid img {
    flex: 0 0 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    height: auto;
    border-radius: 8px;
    display: block;
    cursor: pointer;
    transition: 0.3s;
    object-fit: cover;
}
.slide-grid img:hover {
    transform: scale(1.02);
}

.indicados-gallery {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center; /* To ensure they don't stretch weirdly if different aspect ratios */
}
.indicados-gallery img {
    flex: 1;
    min-width: 0;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    transition: 0.3s;
}
.indicados-gallery img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .indicados-gallery {
        flex-direction: column;
    }
}

.carousel-container {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    padding: 0 50px;
    /* Add padding for arrows */
}

.gallery-slide,
.about-slide,
.service-slide {
    display: none;
    animation: fadeEffect 0.5s ease-in-out;
}

.gallery-slide.active,
.about-slide.active,
.service-slide.active {
    display: block !important;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Carousel Arrows */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    /* Navy Blue background for Visibility */
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 15px 12px;
    transition: 0.3s;
    z-index: 100;
    opacity: 0.9;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent-color);
    opacity: 1;
}

.carousel-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.carousel-next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
}

.main-footer h2 {
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 300;
}

.main-footer p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: none;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background-color: var(--primary-color);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        margin: 10px auto;
        color: var(--white);
    }

    .main-header {
        position: relative;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h2 {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label {
        margin-bottom: 5px;
        white-space: normal;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
}

/* Desktop Margin Standard */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        width: 100%;
        padding: 0 40px;
        margin: 0 auto;
    }
}

/* Indicados Page Styles */
.page-indicados .indicados-intro {
    background-color: var(--light-bg);
    /* Match the grey background from image */
    padding: 2rem 0 3rem;
    color: var(--primary-color);
}

.intro-circle-logo {
    width: 70px;
    height: 70px;
    /* Standard W logo */
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-family: var(--font-primary);
    font-weight: 300;
    margin-bottom: 2rem;
    padding-top: 6px;
    color: white;
}

.intro-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.indicados-list {
    list-style: none;
    max-width: 800px;
}

.indicados-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.4;
}

.indicados-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Cases Grid */
.cases-section {
    padding: 2rem 0;
    background-color: var(--light-bg);
}

.case-group {
    margin-bottom: 3rem;
    text-align: left;
}

.case-label {
    color: var(--accent-color);
    /* Red title */
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.case-grid {
    display: flex;
    gap: 15px;
}

.case-grid.three-cols .case-item {
    flex: 1;
}

.cases-mix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

.case-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.3s;
    cursor: pointer;
}

.case-item img:hover {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Indicados */
@media (max-width: 768px) {
    .case-grid {
        flex-direction: column;
    }

    .cases-mix-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.page-services .services-main {
    background-color: var(--light-bg);
    padding-bottom: 2rem;
}

.services-intro {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.intro-circle-logo-grey {
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 1rem;
    padding-top: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 300;
    font-family: var(--font-primary);
}

.services-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-block {
    margin-bottom: 4rem;
}

.service-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    /* Grey title */
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 1000px;
    margin-bottom: 2rem;
}

.client-label {
    color: var(--accent-color);
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.service-grid.two-cols .service-img {
    flex: 1;
}

.service-grid.five-cols {
    gap: 10px;
}

.service-grid.five-cols .service-img {
    flex: 1;
}

.service-img img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: 0.3s;
}

.service-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wide-gap {
    gap: 50px;
}

.dots-separator {
    text-align: center;
    margin-top: 2rem;
    color: var(--accent-color);
    letter-spacing: 5px;
    font-size: 0.8rem;
}

/* Event Grid Specific */
.mixed-event-grid {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.mixed-event-grid .service-img {
    flex: 1;
}

.mixed-event-grid .main-event {
    flex: 1.5;
    /* Larger middle image */
}

/* Responsive Services */
@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
    }

    .service-grid.five-cols {
        flex-direction: row;
        /* Keep small images side by side or scroll? Let's wrap */
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-grid.five-cols .service-img {
        flex: 0 0 45%;
        margin-bottom: 10px;
    }

    .wide-gap {
        gap: 20px;
    }
}

/* Events Page Styles */
.page-events {
    background-color: var(--light-bg);
    /* Light beige/grey based on image */
}

.events-main {
    padding-bottom: 2rem;
}

.events-intro-section,
.events-gallery-section,
.events-details-section {
    padding: 2rem 0;
}

.intro-circle-logo-white {
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 2rem;
    padding-top: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 300;
    font-family: var(--font-primary);
}

.events-headline {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.events-text {
    color: var(--primary-color);
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 1000px;
}

.events-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-list {
    list-style: none;
    margin-bottom: 2rem;
}

.events-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.events-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.esg-block {
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary-color);
    border-left: 3px solid #ccc;
    padding-left: 15px;
}

.events-cta-container {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.events-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #900;
    /* Dark Red Border */
    color: #900;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.5);
    /* Slight transparency */
    transition: 0.3s;
    border-radius: 5px;
}

.events-cta-btn:hover {
    background-color: #900;
    color: #fff;
}

.service-grid.three-cols {
    display: flex;
    gap: 15px;
}

.service-grid.three-cols .service-img {
    flex: 1;
}

@media (max-width: 768px) {
    .service-grid.three-cols {
        flex-direction: column;
    }
}

/* Fale Conosco Page Styles */
.page-contact {
    background-color: var(--light-bg);
    /* Very light grey for background */
}

.contact-main {
    padding: 2rem 0 3rem;
}

.contact-split-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-info-col {
    flex: 1;
    padding-top: 2rem;
}

.contact-form-col {
    flex: 1;
}

.contact-title-large {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: #2c3e50;
    /* Navy Blue */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-intro-text {
    font-size: 1.15rem;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 3rem;
    max-width: 600px;
}

.contact-channels {
    margin-bottom: 3rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.channel-item i {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.channel-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.channel-item p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
}

.social-connect h3 {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.social-big-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    color: #fff;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Form Card Style */
.form-card {
    background: transparent;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: none;
}

.form-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.submit-btn.full-width {
    width: 100%;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-col {
        padding-top: 0;
    }

    .contact-title-large {
        font-size: 2rem;
    }
}


/* ===== GALERIA AJUSTE RESPONSIVO E CONSISTENTE ===== */

.slide-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
align-items:center;
width:100%;
}

.slide-grid img{
width:100%;
height:420px;
object-fit:contain;
background:transparent;
display:block;
border-radius:10px;
margin:0 auto;
min-width:0;
transform:translateZ(0);
backface-visibility:hidden;
}

.indicados-gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
align-items:center;
}

.indicados-gallery img{
width:100%;
height:420px;
object-fit:contain;
background:transparent;
border-radius:10px;
display:block;
margin:0 auto;
}

.gallery-item{
background:transparent;
padding:0;
}

.gallery-item img{
width:100%;
height:320px;
object-fit:cover;
background:transparent;
display:block;
border-radius:10px;
}

/* remove bordas visuais do container */
.carousel-container{
background:transparent;
}

/* suavização visual */
.slide-grid img,
.indicados-gallery img,
.gallery-item img{
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* estabilidade safari/mac */
.slide-grid,
.indicados-gallery{
min-width:0;
}

/* responsivo */
@media (max-width:900px){

.slide-grid{
grid-template-columns:1fr;
}

.indicados-gallery{
grid-template-columns:1fr;
}

.slide-grid img,
.indicados-gallery img{
height:auto;
max-height:420px;
}

}
