/* HelveticaNeue - identidade visual oficial Inside Data */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('fonts/HelveticaNeue.ttc') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

﻿/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(82, 172, 220, 0.25);
    z-index: 1000;
    overflow: hidden;
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    opacity: 0;
    transform: translateX(-10px);
    animation: wordmarkIn 0.45s ease-out 0.12s forwards;
}

.brand-top-logo {
    width: 180px;
    max-width: 42vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(82, 172, 220, 0.26));
}

.brand-bottom {
    margin-top: 0.28rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: #52acdc;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.24;
    max-width: 260px;
    text-wrap: balance;
}

@keyframes wordmarkIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #52acdc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #111111 50%, #232323 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 108px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(82, 172, 220, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #52acdc;
    border-color: #52acdc;
}

.btn-secondary:hover {
    background: #52acdc;
    color: #fff;
    transform: translateY(-2px);
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.hero-graphic i {
    font-size: 12rem;
    color: #52acdc;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


/* Hero art image */
.hero-art-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(82, 172, 220, 0.25);
    display: block;
    margin: 0 auto;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #52acdc;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.about-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(82, 172, 220, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #52acdc;
    font-weight: bold;
}

/* Stacks Section */
.stacks {
    padding: 100px 0;
    background: #fff;
}

.stacks-categories {
    display: grid;
    gap: 3rem;
}

.stack-category {

/* Process Section */
.process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.process-step h3 {
    margin: 0.5rem 0 0.8rem;
    color: #333;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.process-step ul {
    list-style: none;
}

.process-step ul li {
    padding-left: 1.2rem;
    position: relative;
    color: #555;
    margin-bottom: 0.5rem;
}

.process-step ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #52acdc;
    font-weight: 700;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #52acdc;
}


/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #232323 60%, #52acdc 120%);
    color: #fff;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-text p {
    color: #e6e6e6;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Defense Section */
.defense {
    padding: 100px 0;
    background: #fff;
}

.defense-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.defense-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.defense-card h3 {
    margin-bottom: 0.8rem;
    color: #333;
}

.defense-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.defense-card ul {
    list-style: none;
}

.defense-card li {
    padding-left: 1.2rem;
    position: relative;
    color: #555;
    margin-bottom: 0.5rem;
}

.defense-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #52acdc;
    font-weight: 700;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #fff;
}

.trust-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.trust-text h2 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.trust-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trust-text ul {
    list-style: none;
}

.trust-text li {
    padding-left: 1.2rem;
    position: relative;
    color: #555;
    margin-bottom: 0.4rem;
}

.trust-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #52acdc;
    font-weight: 700;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
}

.badge {
    background: #e8f4fb;
    color: #3d8fbf;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid #b0d8ef;
}

/* Privacy Section */
.privacy {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-content {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.privacy-content h2 {
    margin-bottom: 0.8rem;
    color: #333;
}

.privacy-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-content ul {
    list-style: none;
}

.privacy-content li {
    padding-left: 1.2rem;
    position: relative;
    color: #555;
    margin-bottom: 0.4rem;
}

.privacy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #52acdc;
    font-weight: 700;
}
.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.category-title i {
    color: #52acdc;
    font-size: 1.3rem;
}

.stack-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stack-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(82, 172, 220, 0.15);
}

.stack-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.stack-name {
    font-weight: 500;
    color: #333;
    text-align: center;
    font-size: 0.9rem;
}

/* Stack specific colors */
.databricks { background: linear-gradient(45deg, #ff3621, #ff6b47); }
.snowflake { background: linear-gradient(45deg, #56b3ff, #1e90ff); }
.bigquery { background: linear-gradient(45deg, #4285f4, #34a853); }
.sqlserver { background: linear-gradient(45deg, #cc2927, #e74c3c); }
.mongodb { background: linear-gradient(45deg, #4db33d, #47a049); }
.airflow { background: linear-gradient(45deg, #007a88, #017cee); }
.aws-glue { background: linear-gradient(45deg, #ff9900, #ff6600); }
.azure-data-factory { background: linear-gradient(45deg, #0078d4, #106ebe); }
.metabase { background: linear-gradient(45deg, #509ee3, #4285f4); }
.langchain { background: linear-gradient(45deg, #1c3b72, #2b5797); }
.salesforce { background: linear-gradient(45deg, #00a1e0, #0176d3); }
.sap { background: linear-gradient(45deg, #0f7db8, #0a5b8a); }
.aws { background: linear-gradient(45deg, #ff9900, #ff6600); }
.azure { background: linear-gradient(45deg, #0078d4, #106ebe); }
.gcp { background: linear-gradient(45deg, #4285f4, #34a853); }

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image i {
    font-size: 4rem;
    color: #fff;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #e8f4fb;
    color: #3d8fbf;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #52acdc, #3d8fbf);
    color: #fff;
    transform: translateY(-2px);
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #52acdc;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #52acdc;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .brand-top-logo {
        width: 140px;
        max-width: 48vw;
    }

    .brand-bottom {
        font-size: 0.63rem;
        max-width: 158px;
        line-height: 1.24;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-art-img {
        max-width: 380px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .portfolio-item {
        margin-bottom: 1rem;
    }

    .stack-items {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .stack-category {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-top-logo {
        width: 118px;
        max-width: 50vw;
    }

    .brand-bottom {
        font-size: 0.58rem;
        max-width: 132px;
        line-height: 1.22;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .hero-art-img {
        max-width: 260px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
    .header {
        transition: none;
    }

    .brand-wordmark {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Selection styles */
::selection {
    background: #52acdc;
    color: #fff;
}

::-moz-selection {
    background: #52acdc;
    color: #fff;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-info-item:hover {
    transform: translateY(-5px);
}

.map-info-item i {
    color: #52acdc;
    font-size: 1.5rem;
    margin-top: 5px;
}

.map-info-item h4 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.map-info-item p {
    color: #666;
    line-height: 1.6;
}

.map-info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-info-item a:hover {
    color: #52acdc;
}

/* Notification System */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.notification-close:hover {
    opacity: 0.8;
}

/* WhatsApp link styling */
a[href*="wa.me"] {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

a[href*="wa.me"]:hover {
    color: #25D366 !important;
}

/* Responsive adjustments for map section */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-info {
        gap: 20px;
    }
    
    .map-info-item {
        padding: 15px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
