/*
Theme Name: Goi9 Theme
Description: Tema personalizado para a Goi9 - Consultoria Digital e Cibersegurança
Version: 1.0
Author: Goi9
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Variáveis de Cores Goi9 */
:root {
    --goi9-teal: #4A6B7C;
    --goi9-green: #7CB342;
    --goi9-light-blue: #7A9FB8;
    --goi9-dark-blue: #2C4A5C;
    --goi9-white: #ffffff;
    --goi9-gray: #666666;
    --goi9-light-gray: #f5f5f5;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    background: var(--goi9-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-text {
    color: var(--goi9-white);
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-i {
    color: var(--goi9-light-blue);
    position: relative;
}

.logo-dot {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--goi9-green);
    border-radius: 50%;
    animation: logoAnimation 2.5s infinite ease-in-out;
}

@keyframes logoAnimation {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg) scale(1);
        border-radius: 50%;
    }
    50% {
        transform: translateX(-50%) rotate(180deg) scale(1.2);
        border-radius: 20%;
    }
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--goi9-teal);
    text-decoration: none;
}

/* Navegação */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: var(--goi9-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--goi9-teal);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e5e5e5;
        padding: 1rem;
    }
    
    .main-navigation.mobile-open ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(74, 107, 124, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);
    text-align: center;
}

.hero-logo {
    width: 96px;
    height: 96px;
    background: var(--goi9-teal);
    border-radius: 16px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-logo .logo-text {
    font-size: 2.5rem;
}

.hero-logo .logo-dot {
    width: 12px;
    height: 12px;
    top: -4px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-title .highlight {
    color: var(--goi9-teal);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--goi9-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--goi9-teal);
    color: white;
}

.btn-primary:hover {
    background: var(--goi9-dark-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--goi9-teal);
    border: 2px solid var(--goi9-teal);
}

.btn-outline:hover {
    background: var(--goi9-teal);
    color: white;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--goi9-green);
    font-size: 1.5rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-description {
    color: var(--goi9-gray);
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.25rem;
    color: var(--goi9-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--goi9-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--goi9-green);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.service-description {
    color: var(--goi9-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-feature {
    background: var(--goi9-light-gray);
    color: var(--goi9-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* About Section */
.about-section {
    background: rgba(245, 245, 245, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: var(--goi9-gray);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #333;
}

.mission-card {
    background: linear-gradient(135deg, rgba(74, 107, 124, 0.1) 0%, rgba(124, 179, 66, 0.1) 100%);
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
}

.mission-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--goi9-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-author .logo {
    width: 48px;
    height: 48px;
}

.author-info h4 {
    font-weight: 600;
    color: #333;
}

.author-info p {
    color: var(--goi9-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--goi9-teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--goi9-green);
    font-size: 1.5rem;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-description {
    color: var(--goi9-gray);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--goi9-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--goi9-dark-blue);
}

.contact-cta {
    text-align: center;
}

.btn-accent {
    background: var(--goi9-green);
    color: white;
}

.btn-accent:hover {
    background: #6da832;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--goi9-teal);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo {
    width: 32px;
    height: 32px;
}

.footer-logo .site-title {
    color: white;
    font-size: 1.25rem;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.footer-info .small {
    font-size: 0.8rem;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
