/*
Theme Name: MegaVision Informática
Theme URI: https://megavisioninfo.com.br
Author: MegaVision Informática
Author URI: https://megavisioninfo.com.br
Description: Tema moderno e profissional para MegaVision Informática - Soluções em Tecnologia da Informação desde 1999
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: megavision
Tags: business, technology, responsive, modern
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b69 50%, #1a0033 100%);
    min-height: 100vh;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 40px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #00d4ff;
}

/* Home Page - Logo preenchendo toda a área */
.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px 20px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(138, 43, 226, 0.1) 50%, transparent 100%);
    animation: gradient-shift 10s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.watermark-logo {
    max-width: 90%;
    width: 800px;
    height: auto;
    margin: 0 auto 30px;
    opacity: 1;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.4));
    display: block;
}

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

.hero-text {
    background: transparent;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #00d4ff);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-description p {
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

/* Seções de conteúdo */
.content-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #1a0033;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #00d4ff);
    margin: 20px auto 0;
}

/* Grid de serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1a0033;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Formulário de contato */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #1a0033;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
}

.submit-btn {
    background: linear-gradient(90deg, #e63946, #00d4ff);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* Informações de contato */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-item h3 {
    color: #1a0033;
    margin-bottom: 10px;
}

.contact-item p,
.contact-item a {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00d4ff;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}


/* Logo Flutuante */
.floating-logo {
    position: absolute;
    top: 10px; /* Desce a logo 10px do topo */
    left: 20px; /* 20px da esquerda */
    z-index: 1001; /* Acima do header */
}

.floating-logo .site-logo img {
    max-height: 50px; /* Aumenta um pouco o tamanho da logo */
}

/* Header Ajuste */
.site-header {
    /* O padding já foi ajustado acima para 5px 0 */
}

/* Responsividade */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .watermark-logo {
        width: 95%;
        margin-bottom: 30px;
    }
    
    .hero-text {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}



/* Estilo para o card de serviço com link */
.service-card-link {
    position: relative;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #00d4ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #e63946;
    transform: translateX(5px);
}

/* Estilos para os contatos */
.contact-whatsapp,
.contact-email {
    display: block;
    margin-bottom: 10px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.contact-whatsapp:hover {
    color: #25D366;
}

.contact-email:hover {
    color: #00d4ff;
}

