/* ========================================
   TEMA DE NATAL PROFISSIONAL - PROFESSIONAL CHRISTMAS THEME
   Inspirado em design moderno e elegante
   ======================================== */

/* Canvas de Neve */
#snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Guirlanda de Natal no topo */
.christmas-garland {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(34, 139, 34, 0.95) 0%,
        rgba(46, 125, 50, 0.92) 50%,
        rgba(34, 139, 34, 0.95) 100%);
    z-index: 1099;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid rgba(192, 57, 43, 0.4);
}

/* Elementos da guirlanda */
.garland-item {
    font-size: 28px;
    animation: float-gentle 3s ease-in-out infinite;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.garland-item:nth-child(odd) {
    animation-delay: 0s;
}

.garland-item:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Ajuste do body para a guirlanda */
.christmas-theme body {
    padding-top: 80px;
    background-color: #fafafa;
}

/* Paleta de cores profissional */
:root.christmas-theme {
    --christmas-primary: #1e3c30;
    --christmas-accent: #c0392b;
    --christmas-light: #ecf0f1;
    --christmas-text: #2c3e50;
    --christmas-border: #bdc3c7;
}

.christmas-theme {
    --primary-color: #1e3c30;
    --accent-color: #c0392b;
}

/* Header refinado */
.christmas-theme #header,
.christmas-theme .navbar-default {
    background: linear-gradient(135deg, #1e3c30 0%, #2d5145 100%) !important;
    border-bottom: 1px solid rgba(192, 57, 43, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    top: 80px !important;
}

/* Navegação limpa */
.christmas-theme .navbar-default .navbar-nav > li > a {
    color: #ecf0f1 !important;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.christmas-theme .navbar-default .navbar-nav > li > a:hover,
.christmas-theme .navbar-default .navbar-nav > li > a:focus {
    color: #fff !important;
    background-color: transparent;
}

.christmas-theme .navbar-default .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #c0392b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.christmas-theme .navbar-default .navbar-nav > li > a:hover::after,
.christmas-theme .navbar-default .navbar-nav > li > a:focus::after {
    width: 80%;
}

/* Logo elegante */
.christmas-theme .navbar-default .navbar-brand {
    color: #ecf0f1 !important;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.christmas-theme .navbar-default .navbar-brand:hover {
    color: #fff !important;
}

/* Botões profissionais */
.christmas-theme .btn-primary {
    background: #c0392b !important;
    border: 1px solid #a93226 !important;
    color: white !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.christmas-theme .btn-primary:hover {
    background: #a93226 !important;
    border-color: #922b21 !important;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
    transform: translateY(-1px);
}

.christmas-theme .btn-primary:focus,
.christmas-theme .btn-primary:active {
    background: #922b21 !important;
    border-color: #7b241c !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Títulos refinados */
.christmas-theme h1,
.christmas-theme h2,
.christmas-theme h3,
.christmas-theme h4,
.christmas-theme h5,
.christmas-theme h6 {
    color: #1e3c30;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.christmas-theme .section-title h2 {
    color: #1e3c30;
    position: relative;
    padding-bottom: 15px;
    font-size: 32px;
}

.christmas-theme .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #c0392b;
    border-radius: 3px;
}

/* Cards com estilo minimalista */
.christmas-theme .service-item,
.christmas-theme .portfolio-item,
.christmas-theme .features,
.christmas-theme .box {
    border: 1px solid #e8e8e8;
    border-left: 3px solid #c0392b;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.christmas-theme .service-item:hover,
.christmas-theme .portfolio-item:hover,
.christmas-theme .features:hover,
.christmas-theme .box:hover {
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.15);
    transform: translateY(-2px);
    border-left-color: #1e3c30;
}

/* Texto */
.christmas-theme p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.christmas-theme a {
    color: #c0392b;
    transition: all 0.2s ease;
}

.christmas-theme a:hover {
    color: #1e3c30;
}

/* Rodapé elegante */
.christmas-theme footer,
.christmas-theme #footer {
    background: linear-gradient(135deg, #1e3c30 0%, #2d5145 100%) !important;
    color: #ecf0f1;
    border-top: 1px solid rgba(192, 57, 43, 0.3);
}

.christmas-theme footer a,
.christmas-theme #footer a {
    color: #ecf0f1;
    transition: all 0.2s ease;
}

.christmas-theme footer a:hover,
.christmas-theme #footer a:hover {
    color: #fff;
}

/* Inputs e formulários */
.christmas-theme .form-control {
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: none;
    transition: all 0.2s ease;
}

.christmas-theme .form-control:focus {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

/* Animação suave de entrada */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.christmas-theme .navbar {
    animation: fadeInDown 0.6s ease-out;
}

/* Background de Natal */
.christmas-theme #quem-somos {
    background-image: url('https://www.cybershop.pt/img/natal-bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.christmas-theme #quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

.christmas-theme #quem-somos > .container {
    position: relative;
    z-index: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .christmas-garland {
        height: 60px;
        gap: 15px;
        padding: 0 10px;
    }
    
    .garland-item {
        font-size: 24px;
    }
    
    .christmas-theme body {
        padding-top: 60px;
    }
    
    .christmas-theme #header,
    .christmas-theme .navbar-default {
        top: 60px !important;
    }
    
    .christmas-theme .navbar-default {
        background: linear-gradient(135deg, #1e3c30 0%, #2d5145 100%) !important;
    }
    
    .christmas-theme .section-title h2 {
        font-size: 24px;
    }
    
    .christmas-theme .navbar-default .navbar-nav > li > a::after {
        display: none;
    }
    
    .christmas-theme #quem-somos {
        background-attachment: scroll;
    }
}










