:root {
    --blue: #138dd3;
    --blue-dark: #07558f;
    --navy: #07324f;
    --yellow: #ffda3e;
    --red: #ff4d3d;
    --green: #19a968;
    --paper: #f7fbff;
    --white: #fff;
    --text: #163044;
    --muted: #607587;
    --radius: 28px;
    --shadow: 0 20px 60px rgba(5, 74, 119, .14)
}

* {
 
    box-sizing: border-box;
    margin: 0;
    padding: 0

}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden
}

body.modal-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

button,
input,
textarea {
    font: inherit
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto
}

.section {
    padding: 105px 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: var(--yellow)
}

h1,
h2,
h3,
.brand-name {
    font-family: "Baloo 2", sans-serif;
    line-height: 1.04
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: -.03em;
    margin-top: 12px
}

.header {
    height: 88px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(20, 84, 120, .09);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px)
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.brand-mark {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border: 4px solid var(--yellow);
    outline: 3px solid var(--red);
    font-family: "Baloo 2";
    font-size: .72rem;
    line-height: .82;
    color: var(--yellow);
    transform: rotate(-3deg);
    text-shadow: 1px 1px 0 var(--navy)
}

.brand-mark b:last-child {
    color: #fff
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy)
}

.brand-name small {
    font-family: "Nunito";
    display: block;
    font-size: .66rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto
}

.nav a {
    font-size: .91rem;
    font-weight: 800;
    color: #425c6e;
    transition: .2s
}

.nav a:hover {
    color: var(--blue)
}

.cart-button {
    height: 45px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    font-size: .87rem;
    font-weight: 800
}

.cart-button b {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    width: 42px
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    margin: 5px auto
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #eaf8ff 0%, #fff 53%, #fff9d7 100%);
    overflow: hidden;
    padding: 70px 0 110px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 75px
}

.hero-copy {
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: clamp(3.3rem, 6vw, 5.5rem);
    letter-spacing: -.045em;
    color: var(--navy);
    margin: 18px 0 23px
}

.hero h1 em {
    font-style: normal;
    color: var(--blue);
    position: relative
}

.hero h1 em:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background: var(--yellow);
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 10px
}

.hero-copy>p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 34px 0 30px
}

.btn {
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: .22s
}

.btn:hover {
    transform: translateY(-3px)
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 25px rgba(255, 77, 61, .25)
}

.btn-ghost {
    background: #fff;
    color: var(--navy);
    border: 2px solid #dceaf2
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: .82rem;
    font-weight: 800;
    color: #527086
}

.trust-row span:before {
    color: var(--green)
}

.hero-visual {
    position: relative
}

.hero-photo {
    width: min(550px, 85vw);
    height: min(550px, 85vw);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border: 10px solid var(--yellow);
    outline: 10px solid var(--red);
    font-family: "Baloo 2";
    font-size: .72rem;
    line-height: .82;
    color: var(--yellow);
    transform: rotate(-3deg);
    text-shadow: 1px 1px 0 var(--navy)
    

}

.hero-photo>img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover
   
}
.floating-card {
    position: absolute;
    left: 22px;
    bottom: 24px;
    background: rgba(255, 255, 255, .94);
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 28px rgba(7, 50, 79, .18);
    transform: rotate(-2deg)
}

.floating-card b {
    font-family: "Baloo 2";
    font-size: 1.1rem;
    color: var(--navy)
}

.floating-card span {
    font-size: .78rem;
    color: var(--muted)
}

.shape {
    position: absolute;
    border-radius: 50%
}

.shape-yellow {
    width: 190px;
    height: 190px;
    background: var(--yellow);
    right: -55px;
    top: -55px
}

.shape-red {
    width: 100px;
    height: 100px;
    background: var(--red);
    left: -25px;
    bottom: -20px
}

.confetti {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image: radial-gradient(circle at 12% 20%, var(--red) 0 4px, transparent 5px), radial-gradient(circle at 47% 85%, var(--blue) 0 4px, transparent 5px)
}

.wave {
    position: absolute;
    left: -5%;
    bottom: -95px;
    width: 110%;
    height: 150px;
    border-radius: 50% 50% 0 0;
    background: #fff
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 38px
}

.section-head>p {
    max-width: 430px;
    color: var(--muted)
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.filter {
    border: 1px solid #d6e7f0;
    background: #fff;
    color: #577082;
    border-radius: 99px;
    padding: 10px 18px;
    font-weight: 800;
    cursor: pointer
}

.filter.active,
.filter:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff
}

.toy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.toy-card {
    border: 1px solid #e2edf3;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(7, 50, 79, .07);
    transition: .25s
}

.toy-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.toy-card.hidden {
    display: none
}

.toy-image {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #e9f7ff
}

.toy-image img {
    height: 100%;
    object-fit: cover;
    transition: .35s
}

.toy-card:hover .toy-image img {
    transform: scale(1.05)
}

.toy-image>span {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #fff;
    color: var(--blue-dark);
    padding: 6px 11px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 900
}

.toy-content {
    padding: 22px
}

.toy-content h3 {
    font-size: 1.55rem;
    color: var(--navy)
}

.toy-content p {
    font-size: .9rem;
    color: var(--muted);
    margin: 7px 0 18px;
    min-height: 48px
}

.add-button {
    width: 100%;
    height: 47px;
    border: 2px solid #dce9ef;
    border-radius: 13px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: .2s
}

.add-button span {
    font-size: 1.35rem
}

.add-button:hover,
.add-button.added {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

.steps {
    background: var(--paper)
}

.section-title {
    text-align: center;
    margin-bottom: 50px
}

.section-title .eyebrow:before {
    display: none
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.step {
    position: relative;
    background: #fff;
    border-radius: 26px;
    padding: 34px;
    text-align: center;
    border: 1px solid #e5f0f5
}

.step>b {
    position: absolute;
    top: 16px;
    right: 19px;
    color: #dbeaf2;
    font-family: "Baloo 2";
    font-size: 2.2rem
}

.step-icon {
    margin: auto;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: #fff3b5;
    display: grid;
    place-items: center;
    font-size: 2rem;
    transform: rotate(-4deg)
}

.step:nth-child(2) .step-icon {
    background: #d9f2ff
}

.step:nth-child(3) .step-icon {
    background: #ffdcd8
}

.step h3 {
    font-size: 1.6rem;
    margin: 22px 0 8px;
    color: var(--navy)
}

.step p {
    color: var(--muted);
    font-size: .93rem
}

.gallery {
    background: var(--navy);
    color: #fff
}

.section-head.light .eyebrow {
    color: var(--yellow)
}

.section-head.light h2 {
    color: #fff
}

.section-head.light>a {
    font-weight: 900;
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow)
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    grid-template-rows: 250px 250px;
    gap: 18px
}

.gallery-grid figure {
    overflow: hidden;
    border-radius: 24px;
    position: relative
}

.gallery-grid img {
    height: 100%;
    object-fit: cover;
    transition: .4s
}

.gallery-grid figure:hover img {
    transform: scale(1.04)
}

.gallery-main {
    grid-row: span 2
}

.gallery-main:after {
    content: "";
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(transparent, rgba(4, 35, 54, .8))
}

.gallery-main figcaption {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 24px;
    font-family: "Baloo 2";
    font-size: 1.7rem
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 100px
}

.about-visual {
    min-height: 500px;
    background: linear-gradient(140deg, var(--blue), #5bc8f0);
    border-radius: 45% 55% 60% 40% / 45% 40% 60% 55%;
    display: grid;
    place-items: center;
    position: relative
}

.about-logo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--blue-dark);
    border: 12px solid var(--yellow);
    outline: 8px solid var(--red);
    color: var(--yellow);
    font-family: "Baloo 2";
    font-size: 3rem;
    font-weight: 900;
    line-height: .78;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-4deg);
    text-shadow: 3px 3px 0 var(--navy)
}

.about-logo span:nth-child(2) {
    color: #fff
}

.about-logo small {
    font-family: "Nunito";
    text-shadow: none;
    font-size: .58rem;
    line-height: 1;
    margin-top: 22px;
    letter-spacing: .13em;
    text-transform: uppercase
}

.about-badge {
    position: absolute;
    right: -22px;
    bottom: 50px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.about-copy>p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 23px 0
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 28px 0
}

.about-points>div {
    display: flex;
    gap: 12px
}

.about-points span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
    background: #fff2af;
    display: grid;
    place-items: center;
    color: var(--red)
}

.about-points p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.4
}

.about-points b {
    display: block;
    color: var(--navy);
    font-size: .95rem
}

.contact {
    padding-top: 40px
}

.contact-card {
    padding: 55px 60px;
    border-radius: 34px;
    background: linear-gradient(120deg, var(--blue), #0675ba);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.contact-card:after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 35px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    right: -80px;
    top: -90px
}

.contact-card .eyebrow {
    color: var(--yellow)
}

.contact-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    max-width: 700px
}

.contact-card p {
    opacity: .82
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    font-weight: 800;
    font-size: .88rem
}

.btn-whatsapp {
    background: #17b768;
    color: #fff;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 12px 25px rgba(0, 70, 35, .2)
}

footer {
    margin-top: 100px;
    background: #062d47;
    color: #fff;
    padding: 60px 0 20px
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px
}

.brand-footer .brand-name {
    color: #fff
}

.footer-wrap>p {
    color: #9fb8c7
}

.footer-wrap>div {
    display: flex;
    gap: 24px;
    font-weight: 800
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    font-size: .8rem;
    color: #8ea9ba
}

.floating-cart {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 40;
    transform: translateX(-50%);
    width: min(460px, calc(100% - 28px));
    height: 62px;
    border: 0;
    border-radius: 18px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 14px 40px rgba(7, 50, 79, .35);
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    cursor: pointer
}

.floating-cart.visible {
    display: flex
}

.floating-cart>span {
    font-size: 1.5rem
}

.floating-cart strong {
    font-size: .9rem
}

.floating-cart small {
    margin-left: auto;
    color: var(--yellow);
    font-weight: 900
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none
}

.modal.open {
    display: block
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 29, 46, .7);
    backdrop-filter: blur(5px)
}

.modal-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(560px, 100%);
    background: #fff;
    padding: 42px;
    overflow-y: auto;
    animation: slideIn .25s ease
}

.modal-close {
    position: absolute;
    right: 22px;
    top: 18px;
    border: 0;
    background: #eef5f8;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer
}

.modal-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 22px
}

.selected-list {
    display: grid;
    gap: 10px;
    margin-bottom: 26px
}

.selected-item {
    background: #f2f8fb;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800
}

.selected-item button {
    border: 0;
    background: #fff;
    color: var(--red);
    width: 31px;
    height: 31px;
    border-radius: 50%;
    cursor: pointer
}

form label {
    display: grid;
    gap: 7px;
    font-size: .84rem;
    font-weight: 900;
    color: #38576b;
    margin-bottom: 16px
}

input,
textarea {
    width: 100%;
    border: 1px solid #cadce6;
    background: #fbfdfe;
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
    color: var(--navy)
}

input:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(19, 141, 211, .12)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-submit {
    width: 100%;
    margin-top: 6px
}

.form-note {
    text-align: center;
    color: var(--muted);
    font-size: .75rem;
    margin-top: 12px
}

.toast {
    position: fixed;
    top: 105px;
    left: 50%;
    z-index: 120;
    transform: translate(-50%, -20px);
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    padding: 11px 18px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transition: .25s
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0)
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s, transform .65s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes slideIn {
    from {
        transform: translateX(100%)
    }

    to {
        transform: none
    }
}

@media(max-width:1000px) {
    .nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 26px 30px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #dde9ef;
        box-shadow: 0 18px 35px rgba(7, 50, 79, .1)
    }

    .nav.open {
        display: flex
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .hero {
        min-height: auto
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .hero-copy {
        text-align: center
    }

    .hero-copy>p {
        margin: auto
    }

    .hero-actions,
    .trust-row {
        justify-content: center
    }

    .hero-visual {
        max-width: 630px;
        margin: auto;
        width: 100%
    }

    .toy-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-grid {
        gap: 55px
    }

    .about-visual {
        min-height: 430px
    }

    .about-logo {
        width: 230px;
        height: 230px;
        font-size: 2.5rem
    }

    .contact-card {
        align-items: flex-start;
        flex-direction: column
    }

    .cart-text {
        display: none
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 28px, 1160px)
    }

    .section {
        padding: 75px 0
    }

    .header {
        height: 76px
    }

    .nav {
        top: 76px
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        font-size: .62rem
    }

    .brand-name {
        font-size: 1.18rem
    }

    .brand-name small {
        font-size: .58rem
    }

    .cart-button {
        display: none
    }

    .hero {
        padding: 52px 0 105px
    }

    .hero h1 {
        font-size: 3.2rem
    }

    .hero-copy>p {
        font-size: 1rem
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .trust-row {
        display: none
    }

    .hero-photo>img {
        height: 380px
    }

    .floating-card {
        left: 12px;
        right: 12px;
        bottom: 14px
    }

    .shape-yellow {
        width: 140px;
        height: 140px
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px
    }

    .section-head h2 {
        font-size: 2.45rem
    }

    .toy-grid {
        grid-template-columns: 1fr
    }

    .toy-image {
        height: 245px
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 170px
    }

    .gallery-main {
        grid-column: span 2;
        grid-row: auto
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .about-visual {
        min-height: 390px
    }

    .about-badge {
        right: 5px
    }

    .about-points {
        grid-template-columns: 1fr
    }

    .contact-card {
        padding: 38px 25px
    }

    .contact-card h2 {
        font-size: 2.4rem
    }

    .contact-links {
        flex-direction: column
    }

    .footer-wrap {
        flex-direction: column;
        text-align: center
    }

    .footer-wrap>div {
        justify-content: center
    }

    .modal-panel {
        padding: 35px 20px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .floating-cart small {
        font-size: .7rem
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    * {
        animation: none !important;
        transition: none !important
    }
}
.table{
margin-left: 7px;
color: #607587;

}
.lista1{
margin-left: 25px;

}

.quem-somos {
  margin-top: 80px;
  padding-top: 70px;
  border-top: 1px solid #e2edf3;
}

.quem-somos-titulo {
  max-width: 680px;
  margin: 0 auto 45px;
  text-align: center;
}

.quem-somos-titulo p {
  margin-top: 15px;
  color: #607587;
  font-size: 1rem;
}

.donos-grid {
  display: flex;
  align-items:center ;
  justify-content: center;
 width: center;}

.dono-card {
  overflow: hidden;
  border: 1px solid #e2edf3;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(7, 50, 79, 0.1);
  transition: 0.3s;
}

.dono-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(5, 74, 119, 0.14);
}

.dono-card img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}

.dono-info {
  padding: 22px;
  text-align: center;
}

.dono-info h3 {
  color: #07324f;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.6rem;
}

.dono-info span {
  color: #138dd3;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 700px) {
  .quem-somos {
    margin-top: 55px;
    padding-top: 55px;
  }

  .donos-grid {
    grid-template-columns: 1fr;
  }

  .dono-card img {
    height: 330px;
  }
}

.header{
    background-color: #138dd3;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 280px;
  position: relative;
  z-index: 2;
}

.contact-buttons .btn-whatsapp {
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .contact-buttons {
    width: 100%;
  }

  .contact-buttons .btn-whatsapp {
    white-space: normal;
  }
}
.btn-insta{
background: linear-gradient(
  45deg,
  #FEDA75,
  #FA7E1E,
  #D62976,
  #962FBF,
  #4F5BD5
);

}
.btn-whatsapp i {
  font-size: 22px;
}
