/* ============================================
   CASINHA DA LALAY - ESTILOS GLOBAIS
   ============================================ */

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

:root {
    --primary-color: #D32F2F;
    --secondary-color: #F4E6E6;
    --light-bg: #FFF0F0;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --border-radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

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

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-section:hover {
    opacity: 0.8;
}

.logo {
    width: 40px;
    height: 40px;
}

.app-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-desktop {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background-color: #FFF0F0;
    padding: 48px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.logo-box {
    background-color: var(--white);
    padding: 8px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.logo-text {
    font-size: 11px;
    font-weight: bold;
    color: var(--dark-text);
    line-height: 1.2;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--dark-text);
}

.hero-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.hero-btn {
    width: fit-content;
}

.hero-badge {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
    width: fit-content;
    margin-top: 16px;
}

.hero-badge-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.hero-badge-text {
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 14/9; /* você pode mudar para 4/3, 3/2, etc */
    width: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mantém ela inteira */
    display: block;
}


.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    border-radius: 8px;
    clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 30% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-text {
    color: var(--white);
    text-align: center;
    padding-right: 32px;
}

.hero-overlay-text p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.hero-overlay-highlight {
    font-size: 36px;
    color: #FFD700;
    margin-top: 8px;
}

.hero-heart-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--white);
    border-radius: 50%;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.hero-heart-icon:hover {
    background-color: #FFF0F0;
}

.hero-heart-icon span:first-child {
    font-size: 24px;
}

.hero-heart-text {
    font-size: 10px;
    color: #555;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
}

.highlight {
    color: var(--primary-color);
}

/* ============================================
   SEÇÃO NOSSA MISSÃO
   ============================================ */

.nossa-missao {
    padding: 60px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.missao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.missao-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.missao-text p {
    color: var(--light-text);
    line-height: 1.8;
}

.missao-image {
    position: relative;
}

.missao-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-seguranca {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.missao-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.card p {
    color: var(--light-text);
    font-size: 14px;
}

.text-center {
    text-align: center;
}

/* ============================================
   CAMPANHA ESPECIAL
   ============================================ */

.campanha-especial {
    padding: 60px 0;
    background-color: #FFF5F5;
}

.badge-container {
    text-align: center;
    margin-bottom: 24px;
}

.badge-campanha {
    background-color: var(--primary-color);
    color: var(--white);
}

.campanha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.campanha-item h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 1s ease;
}

.progress-text {
    color: var(--light-text);
    font-size: 14px;
}

.meta-box {
    background-color: #F4E6E6;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #e0e0e0;
}

.stat-number {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--light-text);
}

/* ============================================
   RANKING DOADORES
   ============================================ */

.ranking-section {
    padding: 60px 0;
    background-color: #F8E9E9;
}

.donors-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.donor-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.donor-card:hover {
    box-shadow: var(--shadow-lg);
}

.donor-medal {
    font-size: 28px;
    margin-right: 16px;
}

.donor-info {
    flex: 1;
}

.donor-name {
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.donor-title {
    font-size: 12px;
    color: var(--light-text);
}

.donor-amount {
    text-align: right;
}

.amount {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.animals {
    font-size: 12px;
    color: var(--light-text);
}

.donor-highlight {
    background-color: #FFF0F0;
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
}

.donor-highlight p {
    margin-bottom: 8px;
}

/* ============================================
   SEÇÃO DOAÇÕES
   ============================================ */

.doacoes-section {
    padding: 60px 0;
    background-color: #DED6D3;
}

.btn-pix {
    display: block;
    margin: 0 auto 40px;
    border-radius: 20px;
}

.doacoes-content {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.como-fazer {
    background-color: #FAEBEB;
    padding: 24px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
}

.como-fazer h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.como-fazer ol {
    list-style: none;
    counter-reset: step-counter;
}

.como-fazer li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--light-text);
    font-size: 14px;
}

.step-number {
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.donation-btn {
    padding: 20px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    background-color: #FAEBEB;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.donation-btn:hover {
    border-color: var(--primary-color);
    background-color: #F0D4CC;
}

.donation-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.donation-desc {
    font-size: 12px;
    color: var(--light-text);
}

.custom-btn {
    border: 2px solid var(--primary-color);
    background-color: var(--white);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.benefit-card h4 {
    margin-bottom: 8px;
    color: var(--dark-text);
}

.benefit-card p {
    font-size: 14px;
    color: var(--light-text);
}

/* ============================================
   ANTES E DEPOIS
   ============================================ */

.antes-depois-section {
    padding: 60px 0;
    background-color: var(--white);
}

.transformacoes {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.transformacao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.transformacao:nth-child(even) {
    direction: rtl;
}

.transformacao:nth-child(even) > * {
    direction: ltr;
}

.transformacao-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transformacao-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.transformacao-box {
    background-color: #FFF0F0;
    padding: 16px;
    border-radius: var(--border-radius);
}

.transformacao-box p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--light-text);
}

.transformacao-box p:last-child {
    margin-bottom: 0;
}

.transformacao-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 14px;
}

.transformacao-desc {
    font-size: 12px;
    color: var(--light-text);
}

.transformacao-image {
    position: relative;
}

.transformacao-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.badge-antes-depois {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: var(--white);
}

.transformacao-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
}

.transformacao-cta h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.transformacao-cta p {
    color: var(--light-text);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos-section {
    padding: 60px 0;
    background-color: #FAEBEB;
}

.text-dark {
    color: var(--dark-text);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.depoimento-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    position: relative;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.quote-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stars {
    margin-bottom: 16px;
    font-size: 14px;
}

.depoimento-text {
    color: var(--light-text);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.depoente {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.depoente-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.depoente-info {
    flex: 1;
}

.depoente-name {
    font-weight: bold;
    color: var(--dark-text);
    font-size: 14px;
    margin-bottom: 2px;
}

.depoente-location {
    font-size: 12px;
    color: var(--light-text);
}

.heart-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 20px;
    color: var(--primary-color);
}

.depoimento-highlight {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
}

.depoimento-highlight h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.depoimento-highlight p {
    color: var(--light-text);
    margin-bottom: 24px;
}

.highlight-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 20px;
}

.stat-text {
    color: var(--dark-text);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--white);
    color: var(--dark-text);
    padding: 40px 0;
}

.footer-border-top {
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.footer-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.footer-heart-message {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #b71c1c;
    transform: scale(1.1);
}

.footer-divider {
    border-top: 1px solid #e0e0e0;
    margin: 24px 0;
}

.footer-message {
    background-color: #FFF0F0;
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.footer-message-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.footer-message p {
    color: #555;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.footer-links-bottom {
    display: flex;
    gap: 16px;
}

.footer-links-bottom a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 24px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: 32px;
    }


    .section-title {
        font-size: 28px;
    }

    .missao-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .missao-cards {
        grid-template-columns: 1fr;
    }

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

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

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

    .transformacao:nth-child(even) {
        direction: ltr;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .highlight-stats {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-content {
        padding: 12px 0;
    }

    .app-title {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-title {
        font-size: 24px;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }

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