﻿/* Main Styles */
:root {
    --primary: #f97316;
    --secondary: #ea580c;
    --accent: #fbbf24;
    --warm: #fb923c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 50;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-800);
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.cta-button.danger {
    background: #dc2626;
}

.cta-button.danger:hover {
    background: #b91c1c;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/fachada.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Estilos especÃ­ficos para botÃµes do hero */
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 16px 32px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s !important;
    display: inline-block !important;
    min-width: 180px !important;
    max-width: 200px !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.hero-buttons .btn-primary {
    background: white !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.hero-buttons .btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.hero-buttons .btn-secondary:hover {
    background: white !important;
    color: var(--primary) !important;
    transform: translateY(-2px) !important;
}

.btn-primary {
    background: white;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.stat-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Testimonials */
.testimonials {
    background: var(--gray-100);
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 24px;
    padding-top: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/fachada.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    margin: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: white;
    color: var(--primary);
}

/* Carousel */
.carousel-container {
    margin: 60px 0;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    flex: 1;
    height: 100%;
    position: relative;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-300);
    position: relative;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.15));
    border-color: var(--primary);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(249, 115, 22, 0.05) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.6;
    color: var(--gray-400);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.image-placeholder:hover .placeholder-icon {
    opacity: 0.8;
    color: var(--primary);
    transform: scale(1.1);
}

.carousel-content {
    flex: 1;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.carousel-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .carousel-content {
        padding: 40px;
    }
    
    .carousel-content h3 {
        font-size: 2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-slides {
        height: 400px;
    }
    
    .carousel-slide {
        flex-direction: column;
    }
    
    .carousel-image {
        flex: 0 0 60%;
    }
    
    .carousel-content {
        flex: 0 0 40%;
        padding: 30px;
    }
    
    .carousel-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        opacity: 0;
        transform: translateX(50px);
        animation: slideInRight 0.3s ease forwards;
    }
    
    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-item:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 15px 30px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(249, 115, 22, 0.2);
        transform: scale(1.05);
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        height: 4px;
        background: white;
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        margin-left: 8px;
        margin-top: 0;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 12px 25px;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .carousel-slides {
        height: 350px;
    }
    
    .carousel-content {
        padding: 20px;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .carousel-content p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* User Dropdown Menu */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.user-menu-toggle:hover {
    background: #e55a1a;
}

.user-name {
    font-size: 0.9rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-menu-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-item.logout:hover {
    background: #fee;
    color: #dc2626;
}

.dropdown-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid var(--gray-200);
}

.dropdown-form {
    margin: 0;
}

/* Estilos para itens administrativos no menu dropdown */
.dropdown-item.admin-item {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.dropdown-item.admin-item:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.dropdown-item.admin-item .dropdown-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px;
    border-radius: 4px;
    margin-right: 8px;
}
/* Auth Pages */
.auth-body {
    font-family: ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #FDFDFC;
    padding: 16px;
}

.auth-card {
    background: #fff;
    border: 1px solid #e3e3e0;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

.auth-card.register {
    max-width: 440px;
}

.auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-left {
    background: #F26A21;
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.auth-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff55;
    overflow: hidden;
}

.auth-left h2 {
    font-size: 22px;
    margin: 0;
}

.auth-left p {
    opacity: .95;
    text-align: center;
    max-width: 280px;
}

.auth-right {
    padding: 32px;
}

.auth-box {
    border: 1px solid #ececea;
    background: #fbfbfa;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-input {
    width: 100%;
    border: 1px solid #e9e9e7;
    background: #f6f6f5;
    border-radius: 10px;
    padding: .75rem 1rem;
    padding-left: 2.5rem;
}

.auth-field {
    position: relative;
}

.auth-field .auth-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .6;
}

.auth-btn {
    display: inline-block;
    width: 100%;
    padding: .5rem .75rem;
    background: #1b1b18;
    color: #fff;
    border: 1px solid #1b1b18;
    border-radius: 4px;
}

.auth-btn.primary {
    background: #F26A21;
    border-color: #F26A21;
    border-radius: 24px;
    padding: .75rem 1rem;
    font-weight: 600;
}

.auth-btn.register {
    padding: .75rem 1rem;
    background: #F26A21;
    color: #fff;
    border: 1px solid #F26A21;
    border-radius: 24px;
    font-weight: 600;
}

.auth-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: .85rem;
    color: #666;
}

.auth-title {
    text-align: center;
    color: #1b1b18;
}

.auth-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 16px;
}

.auth-link {
    color: #F26A21;
}

.login-required-body {
    font-family: ui-sans-serif, system-ui, sans-serif;
    color: #333;
    background: #f7f6f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-required-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: #9a7662;
    color: #fff;
    z-index: 10;
}

.login-required-brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.login-required-brand img {
    height: 60px;
}

.login-required-menu a {
    margin: 0 14px;
    color: #fff;
    text-decoration: none;
}

.login-required-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
}

.login-required-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.login-required-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #333;
}

.login-required-subtitle {
    color: #666;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
}

.login-required-btn {
    display: inline-block;
    background: #F26A21;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    margin: 8px;
}

.login-required-btn:hover {
    background: #e55a1a;
}

.login-required-btn.secondary {
    background: #666;
    color: #fff;
}

.login-required-btn.secondary:hover {
    background: #555;
}

.login-required-link {
    color: #F26A21;
}

.auth-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-required-subtitle {
    font-size: 12px;
    opacity: .8;
}

.login-required-login-btn {
    background: #F26A21;
    padding: 8px 16px;
    border-radius: 6px;
    margin-left: 8px;
}

.login-required-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

.auth-error {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.auth-label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.auth-link-text {
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .auth-card {
        max-width: 800px;
    }
    
    .auth-split {
        gap: 24px;
    }
    
    .auth-image {
        padding: 40px;
    }
    
    .auth-form {
        padding: 40px;
    }
    
    .auth-title {
        font-size: 1.8rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .auth-body {
        padding: 12px;
    }
    
    .auth-card {
        max-width: 100%;
    }
    
    .auth-split {
        grid-template-columns: 1fr;
    }
    
    .auth-image {
        display: none;
    }
    
    .auth-form {
        padding: 32px 24px;
    }
    
    .auth-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .auth-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .auth-tabs {
        padding: 8px;
        margin-bottom: 24px;
    }
    
    .auth-tab {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .auth-input {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .auth-button {
        padding: 14px;
        font-size: 16px;
    }
    
    .auth-form-group {
        margin-bottom: 20px;
    }
    
    .auth-label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .auth-remember {
        font-size: 0.8rem;
    }
    
    .auth-link-text {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .auth-body {
        padding: 8px;
    }
    
    .auth-form {
        padding: 24px 20px;
    }
    
    .auth-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .auth-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .auth-tabs {
        padding: 6px;
        margin-bottom: 20px;
    }
    
    .auth-tab {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .auth-input {
        padding: 10px;
        font-size: 14px;
    }
    
    .auth-button {
        padding: 12px;
        font-size: 14px;
    }
    
    .auth-form-group {
        margin-bottom: 16px;
    }
    
    .auth-label {
        font-size: 0.75rem;
    }
    
    .auth-remember {
        font-size: 0.75rem;
    }
    
    .auth-link-text {
        font-size: 0.75rem;
    }
    
    .auth-error {
        font-size: 0.8rem;
    }
}
/* Admin Dashboard Styles */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-header {
    margin-bottom: 30px;
    text-align: center;
}

.admin-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.admin-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.alert-icon {
    font-size: 1.2rem;
    margin-right: 15px;
}

.alert-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.alert-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.stat-card.pending {
    border-left: 4px solid #f39c12;
}

.stat-card.accepted {
    border-left: 4px solid #27ae60;
}

.stat-card.completed {
    border-left: 4px solid #9b59b6;
}

.stat-icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.stat-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 40px;
}

.quick-actions h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.action-card.pending {
    border-left: 4px solid #f39c12;
}

.action-card.accepted {
    border-left: 4px solid #27ae60;
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.action-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.action-card p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
}

/* Recent Donations */
.recent-donations h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.donations-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.donations-table table {
    width: 100%;
    border-collapse: collapse;
}

.donations-table th {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 1px solid #dee2e6;
}

.donations-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.donations-table tr:last-child td {
    border-bottom: none;
}

.donations-table tr:hover {
    background-color: #f8f9fa;
}

.donor-info strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
}

.donor-info small {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.type-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.type-badge.type-dinheiro {
    background-color: #d4edda;
    color: #155724;
}

.type-badge.type-alimentos {
    background-color: #fff3cd;
    color: #856404;
}

.type-badge.type-material {
    background-color: #cce5ff;
    color: #004085;
}

.items-description {
    color: #6c757d;
    font-style: italic;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-em_espera {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.status-aceita {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.status-recusada {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.status-reagendada {
    background-color: #ffeaa7;
    color: #d63031;
}

.status-badge.status-confirmada {
    background-color: #cce5ff;
    color: #004085;
}

.status-badge.status-recebida {
    background-color: #e2e3f3;
    color: #6f42c1;
}

.status-badge.status-cancelada {
    background-color: #f1f3f4;
    color: #6c757d;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

.view-all {
    text-align: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-state p {
    color: #7f8c8d;
    margin: 0;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .admin-container {
        padding: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .admin-title {
        font-size: 2.2rem;
    }
    
    .donations-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .admin-container {
        padding: 15px;
    }

    .admin-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .donations-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .donations-table table {
        min-width: 600px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .alert {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .admin-container {
        padding: 12px;
    }
    
    .admin-title {
        font-size: 1.8rem;
    }
    
    .admin-subtitle {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .action-card {
        padding: 16px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .donations-table table {
        font-size: 0.85rem;
    }
    
    .donations-table th,
    .donations-table td {
        padding: 8px 6px;
    }
}









/* Account Page Styles */

.account-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.account-header {
    text-align: center;
    margin-bottom: 40px;
}

.account-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.account-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.account-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    background: var(--gray-50);
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.card-content {
    padding: 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.action-btn.primary {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

.action-btn.primary:hover {
    background: var(--primary);
    color: white;
}

.action-btn.primary:hover .action-icon {
    transform: scale(1.1);
}

.action-btn.secondary:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.action-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.action-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.action-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.action-btn.primary .action-content h3,
.action-btn.primary .action-content p {
    color: inherit;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .account-container {
        padding: 100px 20px 40px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-header {
        padding: 18px 20px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .account-container {
        padding: 100px 16px 40px;
    }
    
    .account-title {
        font-size: 2rem;
    }
    
    .account-subtitle {
        font-size: 1rem;
    }
    
    .account-content {
        gap: 20px;
    }
    
    .card-content {
        padding: 18px;
    }
    
    .card-header {
        padding: 16px 18px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-item {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
    
    .info-label {
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .action-btn {
        padding: 16px;
    }
    
    .action-icon {
        font-size: 1.5rem;
    }
    
    .action-content h3 {
        font-size: 1rem;
    }
    
    .action-content p {
        font-size: 0.8rem;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .account-container {
        padding: 90px 12px 30px;
    }
    
    .account-header {
        margin-bottom: 30px;
    }
    
    .account-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .account-subtitle {
        font-size: 0.9rem;
    }
    
    .account-content {
        gap: 16px;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-header {
        padding: 14px 16px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .info-grid {
        gap: 12px;
    }
    
    .info-item {
        padding: 10px 0;
    }
    
    .info-label {
        font-size: 0.75rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-item {
        padding: 14px;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .actions-grid {
        gap: 12px;
    }
    
    .action-btn {
        padding: 14px;
        gap: 12px;
    }
    
    .action-icon {
        font-size: 1.3rem;
    }
    
    .action-content h3 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .action-content p {
        font-size: 0.75rem;
    }
}














/* Contact Page Styles */

.contact-hero {
    background: linear-gradient(135deg, rgba(242, 106, 33, 0.9), rgba(255, 140, 0, 0.9));
    background-image: url('/images/fachada.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #F26A21;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #F26A21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #F26A21;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #F26A21;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: #F26A21;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #e55a1a;
}

.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container h2 {
    text-align: center;
    color: #F26A21;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-hero-content {
        padding: 0 24px;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 35px 25px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-hero-content {
        padding: 0 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-submit {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .location-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 0;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-hero-content {
        padding: 0 16px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-container {
        padding: 0 16px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px 16px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-item {
        padding: 15px 0;
    }
    
    .contact-icon {
        font-size: 1.8rem;
    }
    
    .contact-text h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 14px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .location-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
}

/* Dashboard */

.main-content {
    padding: 100px 0;
    min-height: 100vh;
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    margin-bottom: 32px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.dashboard-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin: 8px 0 0 0;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.dashboard-stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.dashboard-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dashboard-stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.dashboard-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.dashboard-stat-label {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.action-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--gray-800);
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.action-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.action-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .main-content {
        padding: 90px 0;
    }
    
    .dashboard-card {
        padding: 32px;
        margin-bottom: 28px;
    }
    
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .dashboard-stat-card {
        padding: 20px;
    }
    
    .action-card {
        padding: 20px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .main-content {
        padding: 80px 0;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card {
        padding: 24px;
    }
    
    .dashboard-card h2 {
        font-size: 1.5rem;
    }
    
    .dashboard-card h3 {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .action-card {
        padding: 20px;
    }
    
    .action-icon {
        font-size: 2rem;
    }
    
    .action-title {
        font-size: 1.1rem;
    }
    
    .action-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 60px 0;
    }
    
    .dashboard-card {
        padding: 20px 16px;
    }
    
    .dashboard-card h2 {
        font-size: 1.3rem;
    }
    
    .dashboard-card h3 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .action-card {
        padding: 16px;
    }
    
    .action-icon {
        font-size: 1.8rem;
    }
    
    .action-title {
        font-size: 1rem;
    }
    
    .action-description {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
/* Donation */

/* Estilos para etapa 2 - Dados da DoaÃ§Ã£o */
.donation-type-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.donation-type-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.donation-type-option {
    cursor: pointer;
}

.donation-type-option input[type="radio"] {
    display: none;
}

.option-card {
    padding: 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.option-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 106, 33, 0.15);
}

.donation-type-option input[type="radio"]:checked + .option-card {
    border-color: var(--primary);
    background: rgba(242, 106, 33, 0.05);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.option-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.option-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

.donation-value-section {
    margin-bottom: 32px;
}

.value-options {
    margin-top: 16px;
}

.quick-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.value-btn {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: white;
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.value-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.value-btn.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.custom-value {
    margin-top: 16px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.currency {
    position: absolute;
    left: 12px;
    color: var(--gray-500);
    font-weight: 600;
    z-index: 1;
}

.input-group input {
    padding-left: 40px;
}

.non-monetary-info {
    margin-top: 16px;
}

.info-card {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.info-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.items-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.item-category h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.item-category ul {
    list-style: none;
    padding: 0;
}

.item-category li {
    padding: 4px 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.item-category li::before {
    content: "â€¢";
    color: var(--primary);
    margin-right: 8px;
}

.donation-frequency-section {
    margin-bottom: 32px;
}

.frequency-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.frequency-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.frequency-option:hover {
    background: var(--gray-50);
}

.frequency-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.frequency-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary);
}

.frequency-option input[type="radio"]:checked + .radio-custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.frequency-text {
    font-weight: 500;
    color: var(--gray-700);
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-secondary {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    background: white;
    color: var(--gray-700);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

/* Responsive para etapa 2 */
@media (max-width: 768px) {
    .quick-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .items-list {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Estilos para etapa 3 - EndereÃ§o e HorÃ¡rios */
.address-section {
    margin-bottom: 32px;
}

.lar-address-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    text-align: center;
}

.address-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.address-info p {
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 1rem;
}

.address-info p:last-child {
    margin-bottom: 0;
}

.schedule-section {
    margin-bottom: 32px;
}

.schedule-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.schedule-day {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.schedule-day h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.time-slot {
    cursor: pointer;
    display: block;
}

.time-slot input[type="radio"] {
    display: none;
}

.time-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.time-label:hover {
    border-color: var(--primary);
    background: rgba(242, 106, 33, 0.05);
}

.time-slot input[type="radio"]:checked + .time-label {
    border-color: var(--primary);
    background: rgba(242, 106, 33, 0.1);
}

.time-slot.selected .time-label {
    border-color: var(--primary);
    background: rgba(242, 106, 33, 0.1);
}

.time-icon {
    font-size: 1.5rem;
}

.time-text {
    font-weight: 500;
    color: var(--gray-700);
}

.schedule-note {
    background: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 16px;
}

.schedule-note p {
    margin: 0;
    color: #92400e;
    font-size: 0.875rem;
}

.instructions-section {
    margin-bottom: 32px;
}

.instructions-section textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

.instructions-section textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Responsive para etapa 3 */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .delivery-options {
        grid-template-columns: 1fr;
    }
    
    .cep-group,
    .address-group,
    .number-group,
    .complement-group,
    .neighborhood-group,
    .city-group,
    .state-group {
        grid-column: 1;
    }
}

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-section {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.checkbox-group {
    margin: 24px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
    color: var(--gray-700);
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary);
}

.btn-donate {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

.btn-donate:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 16px;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.progress-circle.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.progress-circle.inactive {
    background: var(--gray-300);
    color: var(--gray-600);
}

.progress-line {
    width: 32px;
    height: 2px;
    background: var(--gray-300);
    transition: all 0.3s;
}

.progress-line.active {
    background: var(--primary);
}

.progress-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
}

.image-section {
    background: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?q=80&w=1000&auto=format&fit=crop') center/cover;
    border-radius: 16px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(234, 88, 12, 0.8));
    border-radius: 16px;
}

.image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 48px;
}

.image-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.image-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .donation-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-section {
        padding: 32px;
    }
    
    .image-section {
        min-height: 300px;
    }
    
    .image-title {
        font-size: 2rem;
    }
    
    .progress {
        flex-direction: column;
        gap: 12px;
    }
    
    .progress-step {
        flex-direction: column;
        text-align: center;
    }
    
    .progress-line {
        width: 2px;
        height: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .donation-container {
        gap: 24px;
    }
    
    .form-section {
        padding: 24px 16px;
    }
    
    .image-section {
        min-height: 250px;
    }
    
    .image-title {
        font-size: 1.5rem;
    }
    
    .image-subtitle {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .progress-step {
        padding: 8px;
    }
    
    .progress-step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .progress-step-text {
        font-size: 0.8rem;
    }
}

/* Estilos para pÃ¡ginas de confirmaÃ§Ã£o e sucesso */
.confirmation-summary {
    margin-bottom: 32px;
}

.summary-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.summary-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
}

.summary-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.summary-item {
    display: flex;
    margin-bottom: 8px;
    gap: 12px;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .label {
    font-weight: 600;
    color: var(--gray-700);
    min-width: 100px;
}

.summary-item .value {
    color: var(--gray-600);
    flex: 1;
}

.confirmation-info {
    margin-top: 24px;
}

.info-card {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.info-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 4px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 20px;
}

.info-card li::before {
    content: "â€¢";
    color: #0ea5e9;
    position: absolute;
    left: 0;
}

/* PÃ¡gina de sucesso */
.success-header {
    text-align: center;
    margin-bottom: 32px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.success-details {
    margin-bottom: 32px;
}

.detail-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.detail-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-weight: 600;
    color: var(--gray-700);
}

.detail-item .value {
    color: var(--gray-600);
}

.next-steps {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.next-steps h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e55a1a;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: var(--gray-700);
    text-decoration: none;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .donation-container {
        padding: 20px;
    }
    
    .donation-type-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .donation-form {
        padding: 24px;
    }
    
    .step-indicator {
        padding: 0 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .donation-container {
        padding: 16px;
    }
    
    .donation-type-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .option-card {
        padding: 16px;
    }
    
    .option-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .option-title {
        font-size: 1rem;
    }
    
    .option-description {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .donation-form {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
    
    .step-indicator {
        padding: 0 16px;
        margin-bottom: 20px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .step-title {
        font-size: 0.8rem;
    }
    
    .step-line {
        display: none;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }
    
    .summary-item .label {
        min-width: auto;
        font-weight: 600;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
    
    .confirmation-card,
    .success-card {
        padding: 20px;
        margin: 16px 0;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .donation-container {
        padding: 12px;
    }
    
    .donation-form {
        padding: 16px;
    }
    
    .form-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .option-card {
        padding: 12px;
    }
    
    .option-icon {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .option-title {
        font-size: 0.9rem;
    }
    
    .option-description {
        font-size: 0.8rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px;
    }
    
    .btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .step-indicator {
        padding: 0 12px;
        margin-bottom: 16px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }
    
    .step-title {
        font-size: 0.75rem;
    }
    
    .success-title {
        font-size: 1.3rem;
    }
    
    .success-message {
        font-size: 0.9rem;
    }
    
    .confirmation-card,
    .success-card {
        padding: 16px;
        margin: 12px 0;
    }
}
/* ===================================
   GESTÃƒO DE IDOSOS - ESTILOS ESPECÃFICOS
   =================================== */

/* Grid de Idosos */
.idosos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* Cards dos Idosos */
.idoso-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #007bff;
    position: relative;
    overflow: hidden;
}

.idoso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.idoso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.idoso-card.inativo {
    border-left-color: #dc3545;
    opacity: 0.75;
    background: #f8f9fa;
}

.idoso-card.inativo::before {
    background: linear-gradient(90deg, #dc3545, #c82333);
}

/* Header do Card */
.idoso-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

/* Foto do Idoso */
.idoso-foto {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.idoso-foto-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* InformaÃ§Ãµes do Idoso */
.idoso-info h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.idoso-info .idade {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Badges de Status */
.alert-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-badge.warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #000;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.alert-badge.danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Detalhes do Idoso */
.idoso-details {
    margin-bottom: 20px;
}

.idoso-details p {
    margin: 8px 0;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.idoso-details strong {
    color: #2c3e50;
    font-weight: 600;
    min-width: 80px;
}

/* AÃ§Ãµes do Card */
.idoso-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.idoso-actions .btn {
    flex: 1;
    min-width: 100px;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Perfil do Idoso */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.profile-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: bold;
    border: 5px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.profile-info h1 {
    margin: 0 0 10px 0;
    font-size: 2.8rem;
    font-weight: 700;
}

.profile-info .idade {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Status Badges no Perfil */
.profile-status {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.ativo {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 2px solid rgba(40, 167, 69, 0.4);
}

.status-badge.inativo {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.4);
}

.status-badge.alerta {
    background: rgba(255, 193, 7, 0.2);
    color: #e0a800;
    border: 2px solid rgba(255, 193, 7, 0.4);
}

/* ConteÃºdo do Perfil */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #007bff;
}

.info-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
    min-width: 150px;
    font-size: 0.95rem;
}

.info-value {
    color: #2c3e50;
    flex: 1;
    text-align: right;
    font-size: 0.95rem;
}

/* Items de Medicamentos e Consultas */
.medicamento-item, .consulta-item, .condicao-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 5px solid #007bff;
    transition: transform 0.2s ease;
}

.medicamento-item:hover, .consulta-item:hover {
    transform: translateX(5px);
}

.medicamento-item h5, .consulta-item h5 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.medicamento-dosagem {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.medicamento-horarios {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.consulta-data {
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.consulta-medico {
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.consulta-dias {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consulta-dias.warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #000;
}

/* SeÃ§Ãµes de largura completa */
.full-width {
    grid-column: 1 / -1;
}

/* ObservaÃ§Ãµes */
.observacoes-text {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #17a2b8;
    line-height: 1.7;
    white-space: pre-wrap;
    font-size: 0.95rem;
    color: #495057;
}

/* BotÃµes de AÃ§Ã£o */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

/* Mensagem Vazia */
.empty-message {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

/* FormulÃ¡rios */
.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.form-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-top: 4px solid #007bff;
}

.form-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Upload de Foto */
.photo-upload {
    text-align: center;
    padding: 40px;
    border: 3px dashed #dee2e6;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
}

.photo-upload:hover {
    border-color: #007bff;
    background: #e3f2fd;
}

.photo-preview {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Listas DinÃ¢micas */
.dynamic-list {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    background: #f8f9fa;
}

.dynamic-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dynamic-item:last-child {
    margin-bottom: 0;
}

.remove-item {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.2s ease;
}

.remove-item:hover {
    background: #c82333;
    transform: scale(1.1);
}

.add-item {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Listas Simples */
.simple-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.simple-item input {
    flex: 1;
}

/* Toggle de Status */
.status-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.status-toggle input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* AÃ§Ãµes do FormulÃ¡rio */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
    margin-top: 40px;
}

.form-actions .btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    min-width: 150px;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .container {
        padding: 100px 20px 40px;
    }
    
    .idosos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .profile-header {
        padding: 35px 24px;
    }
    
    .action-buttons {
        gap: 12px;
    }
    
    .form-actions {
        gap: 16px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .idosos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons, .form-actions {
        flex-direction: column;
    }
    
    .info-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .info-value {
        text-align: left;
    }
    
    .idoso-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .form-section, .info-section {
        padding: 20px;
    }
    
    .profile-header {
        padding: 20px 15px;
    }
    
    .profile-info h1 {
        font-size: 2.2rem;
    }
    
    .idoso-actions {
        flex-direction: column;
    }
    
    .idoso-actions .btn {
        min-width: auto;
    }
}





/* Priorities */
.priority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.priority-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.priority-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.priority-card.urgent {
    border-left: 5px solid #ef4444;
    background: linear-gradient(135deg, #fff, #fef2f2);
}

.priority-card.high {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, #fff, #fffbeb);
}

.priority-card.medium {
    border-left: 5px solid #eab308;
    background: linear-gradient(135deg, #fff, #fefce8);
}

.priority-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.priority-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.priority-description {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.priority-items {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.priority-items li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
}

.priority-items li:last-child {
    border-bottom: none;
}

.priority-items li::before {
    content: "â€¢";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.priority-level {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-level.urgent {
    background: #ef4444;
    color: white;
}

.priority-level.high {
    background: #f59e0b;
    color: white;
}

.priority-level.medium {
    background: #eab308;
    color: var(--gray-900);
}

.donate-btn {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

.donate-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

/* Responsive */
/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .priority-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin: 50px 0;
    }
    
    .priority-card {
        padding: 28px;
    }
    
    .priority-title {
        font-size: 1.3rem;
    }
    
    .priority-description {
        font-size: 0.95rem;
    }
    
    .priority-icon {
        font-size: 2.8rem;
    }
    
    .priority-items li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .donate-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .priority-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }
    
    .priority-card {
        padding: 24px;
    }
    
    .priority-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .priority-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .priority-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .priority-level {
        top: 12px;
        right: 12px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .priority-items {
        margin-bottom: 20px;
    }
    
    .priority-items li {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .donate-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .priority-grid {
        gap: 16px;
    }
    
    .priority-card {
        padding: 20px;
    }
    
    .priority-title {
        font-size: 1.1rem;
    }
    
    .priority-description {
        font-size: 0.85rem;
    }
    
    .priority-icon {
        font-size: 2rem;
    }
    
    .priority-items li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .donate-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* Status Page Styles */

.status-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

/* Mensagem de sucesso */
.alert {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid;
}

.alert-success {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.alert-content p {
    margin: 0;
    font-size: 0.95rem;
}

.status-header {
    text-align: center;
    margin-bottom: 40px;
}

.status-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.status-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.donations-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donation-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gray-300);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.donation-card.status-pendente {
    border-left-color: #f59e0b;
}

.donation-card.status-em_espera {
    border-left-color: #6366f1;
}

.donation-card.status-aceita {
    border-left-color: #10b981;
}

.donation-card.status-recusada {
    border-left-color: #ef4444;
}

.donation-card.status-reagendada {
    border-left-color: #f59e0b;
}

.donation-card.status-confirmada {
    border-left-color: #10b981;
}

.donation-card.status-recebida {
    border-left-color: #3b82f6;
}

.donation-card.status-cancelada {
    border-left-color: #ef4444;
}

.donation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.donation-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.donation-date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-pendente {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-em_espera {
    background: #e0e7ff;
    color: #3730a3;
}

.status-badge.status-aceita {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.status-recusada {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.status-reagendada {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-confirmada {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.status-recebida {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.status-cancelada {
    background: #fee2e2;
    color: #991b1b;
}

.donation-details {
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    margin-bottom: 8px;
}

.detail-label {
    font-weight: 600;
    color: var(--gray-700);
    min-width: 120px;
    margin-right: 12px;
}

.detail-value {
    color: var(--gray-600);
    flex: 1;
}

.donation-timeline {
    position: relative;
    padding-left: 32px;
}

.donation-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-step {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 3px solid white;
    z-index: 1;
}

.timeline-step.completed::before {
    background: #10b981;
}

.timeline-step.cancelled::before {
    background: #ef4444;
}

.timeline-step.pending::before {
    background: #f59e0b;
}

.timeline-icon {
    font-size: 1.5rem;
    margin-top: 4px;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e55a1a;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .status-container {
        padding: 100px 24px 40px;
    }
    
    .donations-list {
        gap: 20px;
    }
    
    .donation-card {
        padding: 20px;
    }
    
    .donation-title {
        font-size: 1.1rem;
    }
    
    .donation-timeline {
        padding-left: 28px;
    }
    
    .timeline-step {
        margin-bottom: 20px;
        gap: 12px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .status-container {
        padding: 100px 16px 40px;
    }
    
    .status-header {
        margin-bottom: 30px;
    }
    
    .status-title {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .status-subtitle {
        font-size: 1rem;
    }
    
    .donations-list {
        gap: 18px;
    }
    
    .donation-card {
        padding: 18px;
    }
    
    .donation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .donation-title {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .donation-date {
        font-size: 0.8rem;
    }
    
    .status-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .donation-details {
        margin-bottom: 18px;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .detail-label {
        min-width: auto;
        margin-right: 0;
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .donation-timeline {
        padding-left: 24px;
    }
    
    .donation-timeline::before {
        left: 12px;
    }
    
    .timeline-step {
        margin-bottom: 18px;
        gap: 12px;
    }
    
    .timeline-step::before {
        left: -12px;
        width: 10px;
        height: 10px;
        top: 6px;
    }
    
    .timeline-icon {
        font-size: 1.3rem;
    }
    
    .timeline-content h4 {
        font-size: 0.95rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
    
    .alert {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .alert-icon {
        font-size: 1.3rem;
    }
    
    .alert-content h4 {
        font-size: 1rem;
    }
    
    .alert-content p {
        font-size: 0.9rem;
    }
    
    .empty-state {
        padding: 40px 16px;
    }
    
    .empty-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }
    
    .empty-state h3 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .empty-state p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .status-container {
        padding: 90px 12px 30px;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .status-subtitle {
        font-size: 0.9rem;
    }
    
    .donation-card {
        padding: 16px;
    }
    
    .donation-title {
        font-size: 1rem;
    }
    
    .donation-date {
        font-size: 0.75rem;
    }
    
    .status-badge {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .detail-label {
        font-size: 0.85rem;
    }
    
    .detail-value {
        font-size: 0.85rem;
    }
    
    .donation-timeline {
        padding-left: 20px;
    }
    
    .donation-timeline::before {
        left: 10px;
    }
    
    .timeline-step::before {
        left: -10px;
        width: 8px;
        height: 8px;
    }
    
    .timeline-icon {
        font-size: 1.2rem;
    }
    
    .timeline-content h4 {
        font-size: 0.9rem;
    }
    
    .timeline-content p {
        font-size: 0.75rem;
    }
    
    .alert {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .alert-icon {
        font-size: 1.2rem;
    }
    
    .alert-content h4 {
        font-size: 0.95rem;
    }
    
    .alert-content p {
        font-size: 0.85rem;
    }
    
    .empty-state {
        padding: 30px 12px;
    }
    
    .empty-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .empty-state h3 {
        font-size: 1.2rem;
    }
    
    .empty-state p {
        font-size: 0.85rem;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 14px;
    }
}
