* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

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

/* Menu Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #19212e;
}

.cta-header {
    background: #a47bb8;
    color: #2d3748;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-header:hover {
    background: white;
    transform: translateY(-2px);
}

/* Partnership Section */
.partnership {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.partnership::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 1000 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23552e6d" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.partnership-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partnership-text h3 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.partnership-text .highlight {
    background: linear-gradient(120deg, #552e6d, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1em;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(85, 46, 109, 0.1);
    border-left: 4px solid #552e6d;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(85, 46, 109, 0.15);
}

.benefit-item h5 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.partnership-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partnership-card {
    background: linear-gradient(135deg, #2d3748 0%, #552e6d 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(85, 46, 109, 0.3);
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.partnership-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.partnership-card p {
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #a47bb8;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.cta-partnership {
    background: #a47bb8;
    color: #2d3748;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.cta-partnership:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 220px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: #a47bb8;
    color: #2d3748;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: white;
}

.btn-secondary:hover {
    background: white;
    color: #2d3748;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #552e6d, #2d3748);
    border-radius: 2px;
}

/* About Section */
.about {
    background: white;
}

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

.about-text h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-weight: 400;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #552e6d;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-visual {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    background-image: url('about.jpg');
    background-size: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

/* Solutions Section */
.solutions {
    background: #f8f9fa;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #552e6d, #2d3748);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.solution-card h4 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #552e6d, #2d3748);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Cases Section */
.cases {
    background: white;
}

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

.case-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.case-card:hover {
    border-color: #552e6d;
    transform: translateY(-5px);
}

.case-logo {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #2d3748, #552e6d);
    margin: 0 auto 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.case-logo-aoki {
    background-image: url('aoki.png');
}
.case-logo-abhu {
    background-image: url('abhu.png');
}
.case-logo-webmotors {
    background-image: url('webmotors.png');
}
.case-logo-fulltime {
    background-image: url('fulltime.png');
}
.case-logo-unimed {
    background-image: url('unimed.png');
}

/* Correções para a seção de contatos em dispositivos móveis */

/* Contact Section - Ajustes gerais */
.contact {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    /* background: rgba(255,255,255,0.1); */
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.contact-item {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.contact-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-item-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-value {
    font-size: 1.2rem;
    font-weight: bold;
    word-break: break-word; /* Adicionado para quebrar palavras longas */
}

.contact-item-value a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-all; /* Força quebra de linha em emails/links longos */
}

.contact-item-value a:hover {
    color: #a47bb8;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-whatsapp {
    background: #128c7e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 1.1rem;
    white-space: nowrap; /* Evita quebra de linha no texto do botão */
}

.btn-whatsapp:hover {
    background: #07564d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: #552e6d;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 1.1rem;
    white-space: nowrap; /* Evita quebra de linha no texto do botão */
}

.btn-email:hover {
    background: #4a2559;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(85, 46, 109, 0.3);
}

/* Responsive - Ajustes específicos para mobile */
@media (max-width: 768px) {
    /* Contact mobile adjustments - CORRIGIDO */
    .contact-info {
        padding: 1.5rem; /* Reduzido de 2rem para dar mais espaço */
        margin: 0 10px; /* Adiciona margem lateral */
    }

    .contact-info h3 {
        font-size: 1.5rem; /* Reduzido para mobile */
        margin-bottom: 1.5rem;
    }

    .contact-items {
        grid-template-columns: 1fr; /* Uma coluna em mobile */
        gap: 1rem; /* Reduzido o gap */
        margin: 1.5rem 0; /* Reduzido as margens */
    }

    .contact-item {
        padding: 1.2rem; /* Reduzido o padding */
        margin: 0; /* Remove margens extras */
    }

    .contact-item-icon {
        font-size: 2rem; /* Reduzido o tamanho do ícone */
        margin-bottom: 0.8rem;
    }

    .contact-item-label {
        font-size: 0.8rem;
    }

    .contact-item-value {
        font-size: 1rem; /* Reduzido para mobile */
        line-height: 1.4; /* Melhora legibilidade */
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
        padding: 0 1rem; /* Adiciona padding lateral */
    }

    .btn-whatsapp,
    .btn-email {
        width: 100%;
        justify-content: center;
        max-width: 280px; /* Reduzido de 300px */
        font-size: 1rem; /* Reduzido o tamanho da fonte */
        padding: 0.9rem 1.5rem; /* Ajustado o padding */
        text-align: center;
    }
}

/* Ajustes para telas muito pequenas (menos de 480px) */
@media (max-width: 480px) {
    .contact-info {
        padding: 1rem;
        margin: 0 5px;
        border-radius: 15px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item-value {
        font-size: 0.9rem;
    }

    .btn-whatsapp,
    .btn-email {
        max-width: 250px;
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Footer */
footer {
    background: #1a1a1a;
    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-section h4 {
    color: #552e6d;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #552e6d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    /* Mobile menu */
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    nav ul li {
        font-size: 1.2rem;
    }

    .cta-header {
        margin-top: 2rem;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

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

    /* Sections padding adjustment */
    section {
        padding: 60px 0;
    }

    .partnership {
        padding: 40px 0;
    }

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

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
        margin: 1.5rem 0;
    }

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

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .partnership-card {
        padding: 1.5rem;
    }

    .partnership-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .partnership-visual {
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .benefit-item h5 {
        font-size: 0.9rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
    }

    .solutions-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

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

    /* Contact mobile adjustments */
    .contact-info {
        padding: 2rem;
    }

    .contact-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
		max-width: 100%;
		overflow-x: hidden;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-whatsapp,
    .btn-email {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}
