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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cores da Inkey */
:root {
    --inkey-blue: #1E88E5;
    --inkey-dark-blue: #0D47A1;
    --inkey-light-blue: #42A5F5;
    --inkey-cyan: #00BCD4;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--inkey-blue);
}

.cta-button {
    background: var(--inkey-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: var(--inkey-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-button.full-width {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--inkey-blue);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--inkey-blue) 0%, var(--inkey-dark-blue) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--inkey-cyan);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--inkey-dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-logo {
    height: 60px;
    margin: 1rem 0;
}

/* Sobre Section */
.sobre {
    background: var(--gray-100);
}

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

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

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

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Serviços Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--inkey-blue);
    font-size: 2rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--inkey-dark-blue);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Public Services */
.public-services {
    background: var(--gray-100);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.public-header {
    text-align: center;
    margin-bottom: 3rem;
}

.public-icon {
    width: 80px;
    height: 80px;
    background: var(--inkey-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.public-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--inkey-dark-blue);
    margin-bottom: 1rem;
}

.public-description {
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

.health-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.health-service {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.health-service:hover {
    transform: translateY(-3px);
}

.health-service i {
    color: var(--inkey-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.health-service h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--inkey-dark-blue);
    margin-bottom: 0.5rem;
}

.health-service p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* e-SUS Info */
.esus-info {
    background: var(--inkey-blue);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.esus-info h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.esus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.esus-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.esus-column ul {
    list-style: none;
}

.esus-column li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.esus-column li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--inkey-cyan);
}

/* Diferenciais Section */
.diferenciais {
    background: var(--gray-100);
}

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

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.2);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--inkey-blue);
    font-size: 2rem;
}

.differential-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--inkey-dark-blue);
    margin-bottom: 1rem;
}

.differential-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contato Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--inkey-dark-blue);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--inkey-blue);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inkey-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--inkey-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.office {
    margin-bottom: 1rem;
}

.office:last-child {
    margin-bottom: 0;
}

.whatsapp-card {
    background: var(--inkey-blue);
    color: white;
}

.whatsapp-card .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.whatsapp-card .contact-details h4 {
    color: white;
}

.whatsapp-card .contact-details p {
    color: rgba(255, 255, 255, 0.9);
}

.qr-code {
    margin-top: 1rem;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--inkey-dark-blue);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .health-services-grid {
        grid-template-columns: 1fr;
    }

    .esus-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .public-services {
        padding: 2rem;
    }

    .esus-info {
        padding: 2rem;
    }
}

/* 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 scrolling para navegação */
.nav-link[href^="#"] {
    scroll-behavior: smooth;
}



/* Hero Section with Background Image */
.hero.hero-with-bg {
    background: linear-gradient(rgba(30, 136, 229, 0.7), rgba(13, 71, 161, 0.7)), url("hero_new_background.jpeg") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* Garante que a seção ocupe a altura total da viewport */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero.hero-with-bg .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 0; /* Adiciona um pouco de padding para garantir que o conteúdo não fique colado nas bordas */
}




/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .about-content, .services-grid, .solutions-grid, .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-stats, .service-item, .solution-item, .contact-form, .contact-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .navbar-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        justify-content: space-between;
    }
}


