/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

/* Tecnologia Section */
.tecnologia-section {
    margin: 50px 0;
}

.tecnologia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tecnologia-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tecnologia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 159, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.tecnologia-card:hover::before {
    left: 100%;
}

.tecnologia-card:hover {
    transform: translateY(-5px);
    border-color: #cd9f6b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.tecnologia-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.tecnologia-card h3 {
    color: #cd9f6b;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #000;
}

.tecnologia-card p {
    color: #d4c0a1;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Projetos Section */
.projetos-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.projeto-item {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.projeto-item:hover {
    transform: translateY(-3px);
    border-color: #cd9f6b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.projeto-item h4 {
    color: #cd9f6b;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
}

.projeto-item p {
    color: #d4c0a1;
    font-size: 0.9em;
    line-height: 1.4;
}

/* Sistemas Operacionais */
.sistemas-operacionais {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #5f4d41;
}

.sistemas-operacionais h3 {
    color: #cd9f6b;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.3em;
    text-shadow: 1px 1px 2px #000;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.os-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(95, 77, 65, 0.2);
    border: 1px solid #5f4d41;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.os-item:hover {
    background: rgba(95, 77, 65, 0.3);
    border-color: #cd9f6b;
    transform: translateY(-2px);
}

.os-item .os-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.os-item span {
    color: #d4c0a1;
    font-weight: bold;
}

.hero-description {
    color: #d4c0a1;
    font-size: 1.1em;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #cd9f6b;
}

.pricing-card.featured {
    border-color: #cd9f6b;
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #cd9f6b, #e6b583);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(205, 159, 107, 0.3);
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #5f4d41;
}

.plan-image {
    margin-bottom: 15px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.7));
}

.plan-name {
    color: #cd9f6b;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #000;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    color: #d4c0a1;
    font-size: 1.2em;
    font-weight: bold;
}

.amount {
    color: #7fbf7f;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000;
}

.period {
    color: #d4c0a1;
    font-size: 1em;
}

/* Card Body */
.card-body {
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #d4c0a1;
    border-bottom: 1px solid rgba(95, 77, 65, 0.3);
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #7fbf7f;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1em;
}

.features-list i {
    color: #7fbf7f;
    width: 16px;
    text-align: center;
    margin-right: 8px;
}

.features-list li {
    display: flex;
    align-items: center;
}

/* Card Footer */
.card-footer {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #cd9f6b, #e6b583);
    color: #1a1a1a;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(205, 159, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 159, 107, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #3b3b3b, #4b4b4b);
    color: #d4c0a1;
    border: 2px solid #5f4d41;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b4b4b, #5b5b5b);
    border-color: #cd9f6b;
    transform: translateY(-2px);
}

/* NavServer Section */
.navserver-section {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-description {
    text-align: center;
    color: #d4c0a1;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.navserver-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    border: 2px solid #5f4d41;
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
}

.navserver-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #5f4d41;
}

.navserver-image {
    flex-shrink: 0;
}

.navserver-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.navserver-card:hover .navserver-icon {
    transform: scale(1.1);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.7));
}

.navserver-title-price {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navserver-title-price h3 {
    color: #cd9f6b;
    font-size: 1.8em;
    margin: 0;
}

.navserver-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.navserver-price .currency {
    color: #d4c0a1;
    font-size: 1.2em;
}

.navserver-price .amount {
    color: #7fbf7f;
    font-size: 2.5em;
    font-weight: bold;
}

.navserver-price .period {
    color: #d4c0a1;
    font-size: 1em;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(95, 77, 65, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(95, 77, 65, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(95, 77, 65, 0.2);
    border-color: #cd9f6b;
    transform: translateY(-2px);
}

.feature-item .feature-icon {
    font-size: 2em;
    color: #7fbf7f;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-text h4 {
    color: #cd9f6b;
    margin: 0 0 8px 0;
    font-size: 1.1em;
}

.feature-text p {
    color: #d4c0a1;
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

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

/* Benefits Section */
.benefits-section {
    margin: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #cd9f6b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    color: #7fbf7f;
}

.benefit-item h3 {
    color: #cd9f6b;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.benefit-item p {
    color: #d4c0a1;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
}

.contact-description {
    color: #d4c0a1;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navserver-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .navserver-title-price {
        flex-direction: column;
        gap: 10px;
    }
    
    .navserver-icon {
        width: 60px;
        height: 60px;
    }
    
    .plan-icon {
        width: 50px;
        height: 50px;
    }
    
    .tecnologia-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projetos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .os-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .navserver-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .tecnologia-card {
        padding: 20px;
    }
    
    .projetos-section {
        padding: 20px;
    }
    
    .projetos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .os-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .navserver-section {
        padding: 20px;
    }
    
    .amount {
        font-size: 2.5em;
    }
    
    .navserver-price .amount {
        font-size: 2em;
    }
} 