* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #6366f1;
    --accent-hover: #4f46e5;
    --border: #2a2a2a;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.nexus {
    color: var(--accent);
    font-weight: 400;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav a:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 0;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-cta-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Serviços Section */
.servicos {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.servico-card {
    background-color: var(--bg-card);
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.servico-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.servico-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.servico-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.servico-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.badge-dev {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

/* SaaS Section */
.saas {
    padding: 6rem 0;
}

.saas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.title-with-badge {
    margin-bottom: 1.5rem;
}

.badge-dev-large {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid var(--accent);
    border-radius: 25px;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    display: block;
    width: fit-content;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

.saas-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.saas-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.saas-features {
    list-style: none;
    margin-bottom: 2rem;
}

.saas-features li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.saas-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.saas-gallery {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.gallery-main {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.gallery-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
    display: block;
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: contain;
    background: var(--bg-card);
    max-height: 600px;
    margin: 0 auto;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.gallery-btn {
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.gallery-btn:hover {
    background: var(--gradient);
    border-color: var(--accent);
    transform: scale(1.1);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.dot:hover {
    background: var(--accent);
    transform: scale(1.2);
}

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: var(--bg-card);
}

.thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    border-color: var(--border);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
}

/* Benefícios Section */
.beneficios {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beneficio-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.beneficio-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Depoimentos Section */
.depoimentos {
    padding: 6rem 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.depoimento-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-texto {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.depoimento-autor {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Urgência Section */
.urgencia {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.urgencia-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgencia-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.urgencia-text strong {
    color: var(--text-primary);
}

.urgencia-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.urgencia-item {
    padding: 1rem;
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-weight: 500;
}

.urgencia-cta {
    margin-top: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.urgencia-note {
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-content p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contato Section */
.contato {
    padding: 6rem 0;
}

.contato-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contato-form {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Modal WhatsApp - Removido, não é mais usado */
.modal {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: fixed;
    z-index: -1 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-note {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    color: var(--text-primary) !important;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
    min-width: 150px;
}

.modal-link {
    background: var(--bg-secondary);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-family: monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

.contato-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.info-item:hover {
    color: var(--text-primary);
    background-color: var(--bg-card);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--accent);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-card,
.saas-content,
.sobre-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .saas-content {
        gap: 3rem;
    }

    .gallery-thumbnails {
        gap: 0.6rem;
    }

    .thumbnail {
        width: 70px;
        height: 52px;
    }
}

/* Responsive - Mobile e Tablets pequenos */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--border);
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    /* Hero Mobile */
    .hero {
        margin-top: 70px;
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-cta-note {
        font-size: 0.85rem;
        padding: 0.875rem 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .urgencia-beneficios {
        grid-template-columns: 1fr;
    }

    .urgencia-text {
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Serviços Mobile */
    .servicos {
        padding: 4rem 0;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .servico-card {
        padding: 2rem;
    }

    .servico-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .servico-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .servico-card p {
        font-size: 0.95rem;
    }

    /* SaaS Sections Mobile */
    .saas {
        padding: 4rem 0;
    }

    .saas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .saas-description {
        font-size: 1rem;
    }

    .saas-features {
        margin-bottom: 1.5rem;
    }

    .saas-features li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .badge-dev-large {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        margin-top: 0.75rem;
    }

    /* Gallery Mobile */
    .gallery-main {
        margin-bottom: 1rem;
    }

    .gallery-slide img {
        max-height: 300px;
    }

    .gallery-controls {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .gallery-dots {
        gap: 0.3rem;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .gallery-thumbnails {
        gap: 0.4rem;
        padding: 0 0.5rem;
    }

    .thumbnail {
        width: 50px;
        height: 38px;
    }

    /* Sobre Mobile */
    .sobre {
        padding: 4rem 0;
    }

    .sobre-content p {
        font-size: 1rem;
    }

    /* Contato Mobile */
    .contato {
        padding: 4rem 0;
    }

    .contato-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contato-form {
        margin-bottom: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.875rem;
    }

    .contato-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .info-item {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0;
    }

    .footer p {
        font-size: 0.9rem;
    }
}

/* Responsive - Mobile pequeno */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .nav {
        width: 100%;
        right: -100%;
    }

    .hero {
        padding: 3rem 0;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .servicos {
        padding: 3rem 0;
    }

    .servico-card {
        padding: 1.5rem;
    }

    .servico-icon {
        font-size: 2.5rem;
    }

    .servico-card h3 {
        font-size: 1.3rem;
    }

    .servico-card p {
        font-size: 0.9rem;
    }

    .saas {
        padding: 3rem 0;
    }

    .saas-description {
        font-size: 0.95rem;
    }

    .saas-features li {
        font-size: 0.9rem;
    }

    .gallery-slide img {
        max-height: 250px;
    }

    .gallery-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .thumbnail {
        width: 45px;
        height: 34px;
    }

    .sobre {
        padding: 3rem 0;
    }

    .contato {
        padding: 3rem 0;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

/* Responsive - Mobile muito pequeno */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .servico-card {
        padding: 1.25rem;
    }

    .gallery-slide img {
        max-height: 200px;
    }
}

