/* Estilos independentes para a seção de boas-vindas */
.main-content {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

section.welcome-section {
    background: linear-gradient(45deg, #8b4513, #deb887);
    padding: 6rem 0;
    margin: 0 calc(var(--container-padding) * -1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
    display: block !important;
    visibility: visible !important;
}

section.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    animation: rotate 30s linear infinite;
}

div.welcome-content {
    max-width: var(--content-width);
    margin: 0 auto !important;
    text-align: center;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.welcome-text-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.3s ease;
}

.welcome-text-wrapper:hover {
    transform: perspective(1000px) rotateX(2deg);
}

.welcome-content p {
    margin-bottom: 2.5rem !important;
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: #5a4632 !important;
    position: relative;
    transition: all 0.3s ease;
}

.welcome-content p:hover {
    transform: translateY(-5px);
}

.welcome-content p:first-child {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #8b4513;
    background-image: -webkit-linear-gradient(45deg, #8b4513, #a0522d);
    background-image: -moz-linear-gradient(45deg, #8b4513, #a0522d);
    background-image: linear-gradient(45deg, #8b4513, #a0522d);
    -webkit-background-clip: text !important;
    -moz-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 3rem !important;
    animation: pulse 2s infinite;
    display: block;
}

.welcome-content strong {
    font-weight: 700 !important;
    padding: 0 5px;
    position: relative;
    display: inline-block;
    color: #8b4513;
    background-image: -webkit-linear-gradient(45deg, #8b4513, #a0522d);
    background-image: -moz-linear-gradient(45deg, #8b4513, #a0522d);
    background-image: linear-gradient(45deg, #8b4513, #a0522d);
    -webkit-background-clip: text !important;
    -moz-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.welcome-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.2), rgba(222, 184, 135, 0.2));
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.welcome-decoration-1 { top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.welcome-decoration-2 { top: 60%; right: 8%; animation: float 8s ease-in-out infinite; }
.welcome-decoration-3 { bottom: 15%; left: 15%; animation: float 7s ease-in-out infinite; }

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

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-section {
        padding: 4rem 0;
    }
    
    .welcome-content p {
        font-size: 1.1rem !important;
    }
    
    .welcome-content p:first-child {
        font-size: 1.6rem !important;
    }
    
    .welcome-content p:last-child {
        font-size: 1.3rem !important;
    }
    
    .welcome-text-wrapper {
        padding: 2rem;
    }
}
