/* =====================================================
   CORAZONES PELUDOS — style.css
   Estrutura: Reset → Base → Seções de cima pra baixo
===================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET / BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.64em;
    color: #5F6973;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #184341;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    color: #FE7A00;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LOGO TOPO ===== */
.site-logo {
    background-color: #2D1B15;
    text-align: center;
    padding: 10px 20px;
}

.site-logo img {
    max-width: 11%;
    height: auto;
}

@media (max-width: 767px) {
    .site-logo img {
        max-width: 30%;
    }
}

/* ===== BANNER PRINCIPAL ===== */
.banner-section {
    width: 100%;
    line-height: 0;
}

.banner-section img {
    width: 100%;
    display: block;
}

/* ===== VSL (VIDEO SALES LETTER) ===== */
.vsl-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    position: relative;
    background-color: #FFF9F2;
}

.vsl-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: block;
}

.vsl-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    cursor: pointer;
    object-fit: cover;
    z-index: 2;
}

.vsl-progress-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    z-index: 3;
    overflow: hidden;
}

.vsl-progress {
    width: 0%;
    height: 100%;
    background-color: #e13f14;
    border-radius: 4px;
    transition: width 0.1s linear;
}

/* ===== CTA BOTÃO PRINCIPAL ===== */
.an-cta-wrapper {
    text-align: center;
    padding: 20px 10px;
    width: 100%;
    background-color: #FFF9F2;
}

.an-cta-btn {
    background: linear-gradient(135deg, #D94528 0%, #E85D3F 100%);
    color: #ffffff !important;
    padding: 16px clamp(20px, 8vw, 75px);
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
    white-space: nowrap;
    max-width: 100%;
    width: auto;
    border: none;
    font-family: 'Montserrat', sans-serif !important;
    box-shadow: 0 8px 20px rgba(217, 69, 40, 0.25);
    animation: warmPulse 2s infinite ease;
    transition: all 0.4s ease;
}

@keyframes warmPulse {
    0%   { box-shadow: 0 0 0 0 rgba(217, 69, 40, 0.4); }
    70%  { box-shadow: 0 0 0 15px rgba(217, 69, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 69, 40, 0); }
}

.an-cta-btn:hover {
    background: linear-gradient(135deg, #C23A20 0%, #D94528 100%);
    transform: scale(1.03);
    animation-play-state: paused;
}

@media (max-width: 350px) {
    .an-cta-btn {
        padding: 12px 20px;
        letter-spacing: -0.5px;
    }
}

/* ===== LOCALIZAÇÃO (PILL) ===== */
.location-compact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 15px;
    background-color: #FFF9F2;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFF3E0;
    color: #E65100;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #FFE0B2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 100%;
}

.location-icon-svg {
    width: 18px;
    height: 18px;
    fill: #FF8B3D;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .location-pill {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* ===== DIVISOR GRADIENTE ===== */
.gold-divider {
    position: relative;
    height: 4px;
    background: linear-gradient(90deg, #FFF9F2 0%, #E69925 50%, #FFF9F2 100%);
    width: 100%;
}

/* ===== SEÇÃO: QUIÉNES SOMOS ===== */
.huella-about-pro {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

.huella-container {
    max-width: 1200px;
    margin: 0 auto;
}

.huella-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d94528;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.huella-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 6px;
    background: #E69925;
    margin: 12px auto 0;
    border-radius: 10px;
}

.huella-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(.23,1,.32,1);
}

.huella-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.huella-text p {
    font-size: 1.1rem;
    color: #785A4F;
    max-width: 820px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.7;
}

.huella-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    max-width: 950px;
    margin: 60px auto 0;
}

.huella-stat {
    background: #FFF9F2;
    padding: 40px 25px;
    border-radius: 22px;
    text-align: center;
    border: 2px solid rgba(230,153,37,0.2);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(60px);
}

.huella-stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.huella-stat:hover {
    transform: translateY(-10px);
    border-color: #E69925;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(217,69,40,0.18);
}

.huella-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.huella-icon img {
    width: 100%;
    height: 100%;
    filter: invert(29%) sepia(87%) saturate(1897%) hue-rotate(343deg) brightness(95%) contrast(95%);
    animation: pulseIcon 2.5s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.huella-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4A2C22;
    line-height: 1;
    transition: transform 0.3s ease;
}

.huella-number.bounce {
    animation: bounceFinish 0.4s ease;
}

@keyframes bounceFinish {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.huella-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #E69925;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

@media (max-width: 480px) {
    .huella-title  { font-size: 1.7rem; }
    .huella-number { font-size: 2.3rem; }
}

/* ===== SEÇÃO: SALVA EL REFUGIO ===== */
.save-shelter-section {
    background: linear-gradient(180deg, #FDEED9 0%, #FFF9F2 100%);
    padding: 20px 0;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #D94528;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.banner2-container {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 40px;
}

.banner2-image {
    width: 100%;
    display: block;
    animation: subtleZoom 8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes subtleZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.urgent-message {
    max-width: 720px;
    margin: 0 auto 45px;
}

.urgent-message p {
    font-size: 1.15rem;
    color: #4A2C22;
    line-height: 1.6;
}

.highlight {
    color: white !important;
    background: #D94528;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-top: 12px;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(217,69,40,.35); }
    70%  { box-shadow: 0 0 0 12px rgba(217,69,40,0); }
    100% { box-shadow: 0 0 0 0 rgba(217,69,40,0); }
}

.impact-section {
    background: white;
    border-radius: 28px;
    padding: 50px 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.impact-section h3 {
    margin-bottom: 30px;
    font-size: 1.3rem;
    color: #4A2C22;
}

.impact-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .impact-grid { grid-template-columns: repeat(3, 1fr); }
}

.impact-item {
    background: #FFF9F2;
    border-radius: 20px;
    padding: 26px;
    transition: all .35s ease;
    border: 2px solid transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.impact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(217,69,40,.10);
}

.impact-item.active {
    border: 2px solid #D94528;
    background: #FFF1ED;
}

.impact-value {
    display: inline-block;
    background: linear-gradient(135deg, #D94528, #E85C3B);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3px;
    align-self: flex-start;
    box-shadow: 0 8px 18px rgba(217,69,40,.20);
    transition: transform .3s ease;
}

.impact-item:hover .impact-value {
    transform: scale(1.03);
}

.impact-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6E4B42;
}

.impact-section > p {
    margin-top: 35px;
    font-size: 0.95rem;
    color: #785A4F;
}

@media (max-width: 480px) {
    .save-shelter-section { padding: 20px 0 !important; }
    .section-title { font-size: 1.8rem; margin-bottom: 25px !important; }
    .impact-section { padding: 35px 20px; }
    .impact-item { padding: 22px; gap: 16px; }
    .impact-value { font-size: 1rem; padding: 14px 24px; }
    .impact-description { font-size: 1rem; }
}

/* ===== SEÇÃO: DOAÇÃO NEQUI ===== */
.donation-section {
    background: linear-gradient(135deg, #D94528 0%, #C0392B 100%);
    color: #ffffff;
    padding: 60px 0;
}

.donation-section .section-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.donation-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background: #E69925;
    margin: 10px auto 0;
    border-radius: 10px;
}

.pix-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    justify-items: center;
    align-items: center;
    margin-bottom: 40px;
}

.pix-col {
    width: 100%;
    text-align: center;
}

.pix-img {
    width: 220px;
    height: 320px;
    object-fit: contain;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    padding: 1px;
}

.pix-instructions {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    text-align: left;
}

.pix-instructions h3 {
    color: #E69925;
    margin-bottom: 15px;
}

.pix-instructions li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.pix-key-container {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    margin: 15px auto 25px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
}

.pix-key {
    font-size: 2rem;
    font-weight: 800;
    color: #4A2C22;
    background: #FFF9F0;
    padding: 12px 10px;
    border: 2px dashed #E69925;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
    word-break: break-all;
    user-select: all;
}

.pix-recipient {
    background: #f4f4f4;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    color: #785A4F;
    margin-bottom: 15px;
}

.pix-recipient strong { color: #D94528; }

.copy-btn {
    background: #E69925;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 3px 0 #C98218;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.copy-btn:hover {
    background: #C98218;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #C98218;
}

.copy-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 #C98218;
}

.copy-icon { font-size: 1.2rem; margin-top: -2px; }

.donation-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .pix-image { grid-template-columns: 1fr; gap: 0px; }
    .pix-img   { width: 50%; height: auto; }
    .pix-key   { font-size: 1.6rem; }
}

/* ===== SEÇÃO: TRANSFORMAÇÕES ===== */
.transformation-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.transformation-section .container { overflow: visible; }

.transformation-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.transformation-item {
    flex: 0 0 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .transformation-item { flex: 0 0 calc((100% - 30px) / 2); }
}

@media (min-width: 1024px) {
    .transformation-item { flex: 0 0 calc((100% - 60px) / 3); }
}

.transformation-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease;
}

.transformation-card:hover { transform: translateY(-5px); }

.transformation-images { margin-bottom: 20px; }

.before-after {
    display: flex;
    gap: 10px;
}

.image-container {
    flex: 1;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0px 0px !important;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0px;
    text-align: center;
    color: #ffffff;
}

.before-label { background: rgba(0, 0, 0, 0.75); }
.after-label  { background: #E69925; }

.transformation-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #234f46;
}

.transformation-content p {
    line-height: 1.7;
    color: #5f6c72;
}

.transformation-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.transformation-btn {
    background: #D94528 !important;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.transformation-btn:hover {
    background: #fe7a00 !important;
    transform: scale(1.05);
}

.transformation-indicators { display: flex; gap: 8px; }

.transformation-message { margin-top: 40px; text-align: center; width: 100%; }

.transformation-cta-btn {
    display: inline-block;
    padding: 14px 45px;
    background: #D94528;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif !important;
}

.transformation-cta-btn:hover {
    background: #B53218;
    transform: scale(1.05);
}

.transformation-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #5f6c72;
}

/* ===== SEÇÃO: DEPOIMENTOS ===== */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.testimonials-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #5f6c72;
}

.testimonials-carousel { position: relative; overflow: visible; }

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.testimonial-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .testimonial-item { flex: 0 0 calc(33.333% - 20px); }
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: transform .3s ease;
    height: 100%;
}

.testimonial-card:hover { transform: translateY(-6px); }

.testimonial-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.testimonial-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.testimonial-btn {
    background: #ff7a00 !important;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
}

.testimonial-btn:hover { background: #d94124 !important; }

.testimonial-indicators { display: flex; gap: 8px; }

.testimonial-indicators span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.testimonial-indicators span.active { background: #ff7a00 !important; }

/* ===== SEÇÃO: CTA FINAL ===== */
.cta-section {
    position: relative;
    background-color: #D94124;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section .container { max-width: 800px; z-index: 2; }

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    animation: fadeUp 0.8s ease-out forwards;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeUp 1s ease-out forwards;
}

.cta-section .cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #D94124;
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    animation: pulseHeart 2.5s infinite;
}

.cta-section .cta-btn:hover,
.cta-section .cta-btn:focus,
.cta-section .cta-btn:active {
    background-color: #ffffff !important;
    color: #B32E16 !important;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.cta-btn a {
    color: #d94124;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    width: 100%;
}

.cta-btn a:hover { color: #fe7a00; }

.heart-icon {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .heart-icon { transform: scale(1.3); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseHeart {
    0%  { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    15% { transform: scale(1.04); }
    30% { transform: scale(1);    box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100%{ transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 480px) {
    .cta-section { padding: 70px 15px; }
    .cta-section .cta-btn { padding: 18px 30px; width: 90%; font-size: 1rem; }
}

/* ===== FOOTER ===== */
.footer {
    background: #2D1B15;
    color: #DDDDDD;
    padding: 60px 0 30px;
    font-size: 0.95rem;
    text-align: center;
}

.footer .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-logo img {
    width: 160px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

.footer-logo h3 {
    color: #E69925;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.footer-section h4 {
    color: #E69925;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-link {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #E69925 !important;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    color: #888;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .footer-info {
        flex-direction: row;
        justify-content: center;
        gap: 80px;
        align-items: flex-start;
    }
    .footer-content { gap: 60px; }
}

/* ===== TOAST DE DOAÇÕES ===== */
#donation-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
}

.donation-toast {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    transform: translateX(-130%);
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
    opacity: 0;
}

@media (min-width: 1024px) {
    .donation-toast { max-width: 480px; padding: 18px 30px; border-radius: 80px; }
    .dog-icon-wrapper { width: 65px !important; height: 65px !important; margin-right: 25px !important; }
    .donor-name { font-size: 20px !important; }
    .donation-text { font-size: 16px !important; }
    .donation-amount { font-size: 20px !important; }
}

.donation-toast.active { transform: translateX(0); opacity: 1; }

.dog-icon-wrapper {
    width: 45px;
    height: 45px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(255, 71, 87, 0.3);
}

.dog-icon-wrapper svg { width: 60%; height: 60%; fill: white; }

.donation-info { display: flex; flex-direction: column; }

.donor-name {
    font-size: 14px;
    font-weight: 700;
    color: #2f3542;
    margin-bottom: 2px;
}

.donation-text { font-size: 12px; color: #57606f; line-height: 1.3; }

.donation-amount { color: #2ed573; font-weight: 800; font-size: 14px; }

@media (max-width: 480px) {
    #donation-container { left: 15px; right: auto; bottom: 20px; display: block; }
    .donation-toast { width: fit-content; max-width: 90vw; padding: 10px 18px; border-radius: 40px; transform: translateX(-120%); }
    .donation-toast.active { transform: translateX(0); }
    .donation-text { white-space: nowrap; font-size: 11px; }
    .donation-text br { display: none; }
    .dog-icon-wrapper { width: 38px; height: 38px; margin-right: 12px; }
    .donor-name { font-size: 13px; }
    .donation-amount { font-size: 13px; }
}
