/**
 * WELCOME.CSS
 * Estilos específicos da página index.html
 */

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

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 50%, #1a3a2e 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }

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

        /* Header */
        header {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-size: 3.5em;
            font-weight: bold;
            background: linear-gradient(135deg, #1a4d2e, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-family: 'Palatino', 'Book Antiqua', serif;
            letter-spacing: 2px;
        }

        .tagline {
            font-size: 1.3em;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
        }

        .subtitle {
            font-size: 1.1em;
            color: #666;
            line-height: 1.8;
        }

        /* Hero Section */
        .hero {
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 77, 46, 0.1));
            border-radius: 50%;
            transform: translate(30%, -30%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h2 {
            font-size: 2.5em;
            color: #1a4d2e;
            margin-bottom: 20px;
            font-family: 'Palatino', serif;
        }

        .hero p {
            font-size: 1.2em;
            color: #555;
            margin-bottom: 30px;
        }

        .pen-icon {
            font-size: 4em;
            margin-bottom: 20px;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(-5deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Features - 2x2 Grid */
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .feature {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }

        .feature h3 {
            color: #1a4d2e;
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .feature p {
            color: #666;
            line-height: 1.6;
        }

        /* Action Cards - Custom Layout */
        .action-cards {
            margin-bottom: 40px;
        }

        .action-card-full {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 3px solid transparent;
            margin-bottom: 30px;
        }

        .action-card-full:hover {
            border-color: #d4af37;
            transform: scale(1.02);
        }

        .action-cards-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .action-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .action-card:hover {
            border-color: #d4af37;
            transform: scale(1.05);
        }

        .action-card h3,
        .action-card-full h3 {
            color: #1a4d2e;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .action-card p,
        .action-card-full p {
            color: #666;
            margin-bottom: 25px;
            font-size: 1.05em;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            font-size: 1.1em;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            font-family: 'Georgia', serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1a4d2e, #2d5f3f);
            color: white;
            box-shadow: 0 5px 15px rgba(26, 77, 46, 0.4);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #2d5f3f, #1a4d2e);
            box-shadow: 0 8px 25px rgba(26, 77, 46, 0.6);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: white;
            color: #1a4d2e;
            border: 2px solid #1a4d2e;
        }

        .btn-secondary:hover {
            background: #1a4d2e;
            color: white;
        }

        /* Contribute Section - Full Width */
        .contribute-section {
            margin-bottom: 40px;
        }

        .contribute-card {
            background: linear-gradient(135deg, #fff9e6, #f0f7f4);
            border: 3px solid #d4af37;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contribute-icon {
            font-size: 4em;
            margin-bottom: 20px;
            animation: float 3s ease-in-out infinite;
        }

        .contribute-card h2 {
            color: #1a4d2e;
            font-size: 2.2em;
            margin-bottom: 20px;
        }

        .contribute-text {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            color: #666;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        footer p {
            margin: 5px 0;
        }

        footer a {
            color: #1a4d2e;
            text-decoration: none;
            font-weight: bold;
        }

        footer a:hover {
            color: #d4af37;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                max-width: 100%;
            }

            .logo {
                font-size: 2.5em;
            }

            .hero h2 {
                font-size: 1.8em;
            }

            .hero p {
                font-size: 1em;
            }

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

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

        /* Decorative pen illustration */
        .pen-decoration {
            position: fixed;
            bottom: 20px;
            right: 20px;
            opacity: 0.1;
            font-size: 15em;
            color: #d4af37;
            z-index: 0;
            pointer-events: none;
            transform: rotate(-15deg);
        }
