/* Design: Minimalismo Técnico Moderno */
/* Cores: Azul Marinho (#003D82), Laranja (#FF6B35), Branco, Cinza */

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

:root {
    --primary: #003D82;
    --primary-light: #0052B3;
    --accent: #FF6B35;
    --accent-light: #FF8555;
    --secondary: #4A4A4A;
    --secondary-light: #6B6B6B;
    --background: #FFFFFF;
    --foreground: #1A1A1A;
    --border: #E5E5E5;
    --muted: #F5F5F5;
    --dark-bg: #1A1A1A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.6s ease-out;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo {
    height: 48px;
    width: auto;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

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

.nav-link:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

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

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

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-light);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

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

.btn:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--background);
    animation: fadeIn 0.6s ease-out;
}

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

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.Logo_tex{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 30;
    color: var(--primary);
    align-items: center;

}.Logo_tex2{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 20;
    color: var(--primary);
    align-items: center;
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 0.5rem;
    padding: 3rem;
    height: 24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gradient-box.gradient-orange {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.hero-icon {
    width: 6rem;
    height: 6rem;
    color: white;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gradient-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background-color: var(--muted);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideUp 0.6s ease-out;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--secondary);
    max-width: 42rem;
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--muted);
    border-radius: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--accent-light);
}

/* Cases Section */
.cases {
    padding: 5rem 0;
    background-color: var(--background);
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.case-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.case-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.case-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--muted);
    border-radius: 0.5rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.case-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.case-period {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
}

.case-description {
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.case-technologies {
    margin-bottom: 1rem;
}

.case-tech-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.case-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-tech-tag {
    display: inline-block;
    background-color: var(--muted);
    color: var(--primary);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.case-results {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.case-results-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.case-results-text {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background-color: var(--muted);
}

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

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

.sobre-text {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sobre-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sobre-bullet {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.sobre-item p {
    color: var(--secondary);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
}

.cta-content {
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

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

.footer-text {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: white;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .cta-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
.slider-container {
    width: 100%;
    max-width: 800px; /* Largura máxima do slide */
    margin: 0 auto;
    overflow: hidden; /* Esconde as fotos que estão fora da área */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  /* Div que contém todas as fotos lado a lado */
  .slider {
    display: flex;
    width: 400%; /* 4 fotos = 400% da largura do container */
    animation: slide-auto 16s infinite ease-in-out;
  }

  .slider img {
    width: 25%; /* Cada foto ocupa 1/4 do total (que é 100% do container) */
    object-fit: cover;
  }

  /* Animação: 100% / 4 fotos = 25% por foto */
  @keyframes slide-auto {
    0%, 20% { transform: translateX(0); }            /* Foto 1 */
    25%, 45% { transform: translateX(-25%); }      /* Foto 2 */
    50%, 70% { transform: translateX(-50%); }      /* Foto 3 */
    75%, 95% { transform: translateX(-75%); }      /* Foto 4 */
    100% { transform: translateX(0); }             /* Volta ao início */
  }

  /* Pausa a animação quando o mouse estiver em cima */
  .slider-container:hover .slider {
    animation-play-state: paused;
  }