:root {
    --primary-color: #0066CC;
    --secondary-color: #FF9933;
    --dark-bg: #000C18;
    --accent-color: #004C99;
    --text-color: #ffffff;
    --light-text: rgba(255, 255, 255, 0.9);
    --light-bg: #f5f5f5;
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    --gradient-secondary: linear-gradient(135deg, #FF9933 0%, #FF8000 100%);
    --gradient-dark: linear-gradient(135deg, #000C18 0%, #001529 100%);
    --gradient-light: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    --gradient-section: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    background: rgba(0, 12, 24, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 51, 102, 0.98);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 153, 51, 0.2);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-link:hover {
    color: var(--secondary-color);
}

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

.logo {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Imageslogo/icone em png.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 12, 24, 0.9) 0%, rgba(0, 102, 204, 0.4) 100%);
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.logo-placeholder i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.logo-placeholder span {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.2);
}

.btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 6rem;
        background-size: 80%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 50px;
    }

    .logo-placeholder {
        width: 250px;
        height: 250px;
    }

    .logo-placeholder i {
        font-size: 2.5rem;
    }

    .logo-placeholder span {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero::before {
        background-size: 80%;
    }
}

/* Seções unificadas */
.section {
    padding: 6rem 0;
    position: relative;
    background: var(--dark-bg);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.5rem;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--light-text);
}

/* CEO Quote */
.ceo-quote {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.quote-content {
    background: rgba(0, 12, 24, 0.5);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quote-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.25);
    border-color: rgba(255, 153, 51, 0.2);
}

.quote-content:hover i.fa-quote-left {
    transform: translateY(-3px) rotate(-5deg);
    opacity: 0.3;
}

.quote-content:hover .author-image {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 153, 51, 0.3);
}

.quote-content i.fa-quote-left {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    left: 2rem;
    transition: all 0.3s ease;
}

.quote-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--light-text);
    font-style: italic;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 153, 51, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .quote-content {
        padding: 2rem;
    }

    .quote-content blockquote {
        font-size: 1.1rem;
        padding-left: 0;
        margin-top: 2rem;
    }

    .quote-content i.fa-quote-left {
        font-size: 2rem;
        top: 1.5rem;
        left: 1.5rem;
    }

    .quote-author {
        padding-left: 0;
    }
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 12, 24, 0.5);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Solutions Section */
.solutions {
    background: var(--dark-bg);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(0, 12, 24, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.2);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 12px 30px rgba(255, 153, 51, 0.3);
}

.card-icon i {
    font-size: 2.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
}

.card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    background: var(--dark-bg);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: rgba(0, 12, 24, 0.5);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
}

.partner-content {
    padding: 2rem;
    text-align: center;
}

.partner-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(29 42 139 / 21%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(29, 42, 139, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(29, 42, 139, 0.3);
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

.partner-card h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
}

.partner-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.partner-link i {
    transition: transform 0.3s ease;
}

.partner-link:hover {
    background: rgba(255, 153, 51, 0.1);
}

.partner-link:hover i {
    transform: translateX(5px);
}

/* New Partner Card */
.new-partner {
    background: rgba(0, 12, 24, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.new-partner .partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.new-partner:hover .partner-icon {
    transform: scale(1.1) rotate(15deg);
}

.partner-link.highlight {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
}

.partner-link.highlight:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        width: 240px;
        height: 180px;
    }
    .partner-logo img {
        filter: brightness(1.25);
    }
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(0, 12, 24, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
    border-color: rgba(255, 153, 51, 0.2);
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgb(29 42 139 / 21%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(29, 42, 139, 0.25);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.05);
    background: rgb(29 42 139 / 30%);
    box-shadow: 0 8px 25px rgba(29, 42, 139, 0.35);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
}

.contact-role {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 12, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-details a:hover {
    background: rgba(255, 153, 51, 0.1);
    transform: translateX(5px);
}

.contact-details i {
    font-size: 1.2rem;
}

.contact-details span {
    color: var(--light-text);
}

.whatsapp-link i {
    color: #25D366;
}

.contact-email i {
    color: var(--secondary-color);
}

.contact-social i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.footer-content {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Background Patterns */
.pattern-dots {
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.pattern-lines {
    background-image: linear-gradient(45deg, var(--primary-color) 25%, transparent 25%, transparent 75%, var(--primary-color) 75%, var(--primary-color));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.05;
}

/* About Section */
.section:nth-child(odd) {
    background: var(--dark-bg);
    position: relative;
}

.section:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a365d' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Solutions Section */
.solutions {
    background: var(--dark-bg);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 153, 51, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.card {
    background: rgba(0, 12, 24, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Products Section */
.products {
    background: var(--dark-bg);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
    opacity: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-rows: repeat(2, auto);
}

.product-card {
    background: rgba(0, 12, 24, 0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 12, 24, 0.7);
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(29, 42, 139, 0.2);
    transition: all 0.5s ease;
}

.product-image img {
    width: auto;
    height: 95%;
    object-fit: contain;
    transition: all 0.5s ease;
    background: rgb(29 42 139 / 21%);
    border-radius: 30px;
    filter: brightness(0.9);
}

.product-card:hover .product-image {
    background: rgba(0, 12, 24, 0.9);
    box-shadow: inset 0 0 30px rgba(29, 42, 139, 0.4);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(0, 102, 204, 0.5));
}

/* Efeito específico para parafusos */
.product-card:hover .product-image img[alt="Parafuso Inoxidável"] {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 102, 204, 0.7));
}

.product-card:hover .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
    opacity: 0;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.3;
        transform: scale(0.95);
    }
    to {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.mc25-image {
    height: 120%;
    transform: scale(1.2);
}

.product-card:hover .mc25-image {
    transform: scale(1.3);
}

.product-card:hover .product-image img:not(.mc25-image) {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .product-image {
        height: 200px;
    }

    .product-image img {
        filter: brightness(1.25);
    }
}

/* Grids unificados */
.solutions-grid, .partners-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Conteúdo dos cards unificado */
.card-content, .partner-content, .product-info {
    padding: 2rem;
    text-align: center;
}

.card h3, .partner-card h3, .product-info h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
}

.card p, .partner-card p, .product-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Links unificados */
.card-link, .partner-link, .product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.card-link:hover, .partner-link:hover, .product-link:hover {
    background: rgba(255, 153, 51, 0.1);
}

.card-link i, .partner-link i, .product-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i, .partner-link:hover i, .product-link:hover i {
    transform: translateX(5px);
}

/* Responsividade unificada */
@media (max-width: 768px) {
    .solutions-grid, .partners-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card, .partner-card, .product-card {
        margin: 0 1rem;
    }
}

.hero-logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.new-partner-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.new-partner-container .partner-card {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .new-partner-container .partner-card {
        max-width: 280px;
    }
}

/* Efeito de galeria para parafusos */
.product-image[data-gallery="parafusos"] {
    position: relative;
}

.product-image[data-gallery="parafusos"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 12, 24, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-image[data-gallery="parafusos"]::after {
    content: 'Ver mais parafusos';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-image[data-gallery="parafusos"]:hover::before,
.product-image[data-gallery="parafusos"]:hover::after {
    opacity: 1;
}

.product-image[data-gallery="parafusos"] img {
    transition: all 0.5s ease;
}

.product-image[data-gallery="parafusos"]:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Galeria de imagens */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 12, 24, 0.95);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.gallery-overlay.active {
    display: flex;
}

.gallery-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image.active {
    opacity: 1;
}

.gallery-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 2;
}

.gallery-nav button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr);
    }
}

.whatsapp-menu, .email-menu {
    position: absolute;
    left: 0;
    background: #001529;
    border: 2px solid #0066cc;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    min-width: 180px;
    z-index: 1002;
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.25s, transform 0.25s;
}

.whatsapp-menu.active, .email-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-menu.top, .email-menu.top {
    top: auto !important;
    bottom: 100%;
    margin-bottom: 8px;
    margin-top: 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.18);
}

.whatsapp-menu, .email-menu {
    top: 100%;
    margin-top: 8px;
}

.whatsapp-menu button {
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.whatsapp-menu button:hover {
    background: #0066cc;
}

.whatsapp-link {
    position: relative;
}

.modal-copiado {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #001529;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,102,204,0.25);
    font-size: 1.2rem;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-copiado.active {
    display: block;
    opacity: 1;
}

.email-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #001529;
    border: 1px solid #0066cc;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 180px;
    z-index: 10;
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
}

.email-menu.active {
    display: flex;
}

.email-menu button {
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.email-menu button:hover {
    background: #0066cc;
}

.contact-email {
    position: relative;
}

.modal-opcoes {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-opcoes-content {
    background: #001529;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,102,204,0.25);
    padding: 2.5rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 260px;
    align-items: center;
    position: relative;
}

.modal-opcao-btn {
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.modal-opcao-btn:hover {
    background: #004c99;
}

.modal-opcao-fechar {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1rem;
    margin-top: 0.5rem;
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-opcao-fechar:hover {
    opacity: 1;
}

@media (max-width: 600px) {
    .modal-opcoes-content {
        min-width: 80vw;
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    .modal-opcao-btn {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
} 