@import url('navbar.css');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.navbar {
    padding: 1rem 0;
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 140px; /* Increased space for language selector */
    position: relative;
}

.navbar-brand {
    flex: 1;
}



.logo {
    text-decoration: none;
    color: #000;
    font-size: 2.625rem; /* 1.5rem * 1.75 = 2.625rem */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    /* Removed underline from entire text */
}

.logo-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

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

.highlight {
    color: #FFD700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-visual {
    position: relative;
    height: 400px;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #FFD700;
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.card-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.card-5 {
    top: 50%;
    left: 15%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Partners Hero Section */
.partners-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.partners-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.partners-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.partners-hero-visual {
    position: relative;
    height: 300px;
}

.partners-hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.partners-hero-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.partners-hero-card i {
    color: #FFD700;
    font-size: 1.2rem;
}

.partners-hero-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.partners-hero-card:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.partners-hero-card:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

/* Section Header (used by multiple sections) */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Loading Spinner (used by multiple sections) */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Products Section */
.produtos {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Products Banner */
.products-banner {
    margin-bottom: 3rem;
}

.banner-container {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.banner-slides {
    position: relative;
    height: 400px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slide:first-child {
    display: block;
    opacity: 1;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: center;
    padding: 3rem;
}

.banner-image {
    text-align: center;
}

.banner-image img {
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
}

.banner-image-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
    margin: 0 auto;
}

.banner-image-fallback i {
    font-size: 3rem;
    color: #FFD700;
}

.banner-text {
    padding-left: 2rem;
    margin-bottom: 2.5rem; /* Espaço extra para os dots */
}

.banner-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.banner-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.banner-feature i {
    color: #FFD700;
}

.banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.banner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.banner-prev,
.banner-next {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.banner-prev:hover,
.banner-next:hover {
    background: #FFD700;
    color: #000;
}

.banner-dots {
    display: flex;
    gap: 8px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #FFD700;
}

/* Products Grid */
.products-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}
.product-card {
    width: 100%;
    max-width: 320px;
    min-width: 220px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-bottom: 1rem;
}
.product-image img {
    max-height: 60px;
    max-width: 100%;
    border-radius: 8px;
}
.product-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 2rem;
    color: #FFD700;
}
.product-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}
.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    min-height: 48px;
}
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}
.feature-tag {
    background: #f0f0f0;
    color: #555;
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    font-size: 0.85rem;
}
.product-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.products-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Services Section */
.servicos {
    padding: 60px 0;
    background: white;
}

#servicos-container {
    min-height: 400px;
    opacity: 1;
    visibility: visible;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    opacity: 1;
    visibility: visible;
}

.servico-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: 150px !important;
    position: relative !important;
    z-index: 1 !important;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .servico-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .servico-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.1rem;
    }

    .servico-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }

.servico-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.servico-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Partners Section */
.parceiros {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 3rem;
    height: 80px; /* Altura fixa para alinhamento consistente */
    width: 120px; /* Largura fixa para tamanho uniforme */
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.partner-logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.partner-logo i {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666; /* Cor neutra para ícones */
}

/* Tamanho uniforme para todas as logos */

/* Careers Section */
.recrutamento {
    padding: 80px 0;
    background: white;
}

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

.vaga-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15); /* sombra mais forte */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e0e0e0; /* borda mais visível */
    position: relative;
    color: #222; /* texto mais escuro */
}

.vaga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.vaga-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.vaga-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.vaga-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vaga-requirements {
    margin-bottom: 1.5rem;
}

.vaga-requirements h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.vaga-requirements ul {
    list-style: none;
    padding-left: 0;
}

.vaga-requirements li {
    color: #666;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.vaga-requirements li:before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: 0;
}

.vaga-actions {
    display: flex;
    gap: 1rem;
}

.vagas-loading,
.servicos-loading,
.partners-loading {
    text-align: center;
    padding: 3rem;
    display: none; /* Hide by default */
}

.vaga-title, .vaga-requirements h4, .vaga-benefits h4 {
    color: #222 !important;
}
.vaga-description, .vaga-requirements li, .vaga-benefits li {
    color: #444 !important;
}

/* Contact Section */
.contato {
    padding: 80px 0;
    background: #f8f9fa;
}

.contato-content {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

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

.contato-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contato-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contato-details p {
    color: #666;
    line-height: 1.6;
}

.contato-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.mapa-container {
    margin-top: 3rem;
}

.mapa {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Floating Careers Button */
.floating-careers-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    animation: floatingPulse 2s ease-in-out infinite;
}

.floating-careers-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.floating-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.floating-btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-btn-title {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
}

.floating-btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1;
}

.floating-btn-arrow {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes floatingPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    }
}

/* Footer */
.footer {
    background: #333;
    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-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #FFD700;
    color: #000;
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.btn-outline.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-outline.disabled:hover {
    transform: none;
    background: transparent;
    color: #333;
}



/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile devices */
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }
    
    .nav-link {
        min-height: 48px;
        padding: 12px 16px;
    }
    
    .social-link {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve card interactions */
    .servico-card,
    .vaga-card,
    .product-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improve form inputs */
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    /* Improve floating button */
    .floating-careers-btn {
        min-height: 60px;
        padding: 16px 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        padding-right: 100px; /* Reduced space for smaller screens */
    }
    
    .header {
        z-index: 10000;
    }
    

    
    /* Hero section mobile */
    .hero {
        padding: 80px 0 50px;
    }
    
    .servicos {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 250px;
        order: -1;
    }
    
    .floating-card {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Partners hero mobile */
    .partners-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .partners-hero-title {
        font-size: 2.2rem;
    }
    
    .partners-hero-visual {
        height: 200px;
        order: -1;
    }
    
    /* Partners grid mobile */
    .partners-grid {
        flex-direction: row;
        gap: 1.5rem;
        height: 80px;
        overflow-x: auto;
        padding: 0 1rem;
    }
    
    .partner-card {
        min-width: 120px;
        margin: 0;
    }
    
    .partner-logo img {
        width: 80px;
        height: 50px;
    }
    
    /* Products banner mobile */
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }
    
    .banner-text {
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    /* Product cards mobile */
    .product-card {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .product-image img {
        max-height: 80px;
        max-width: 120px;
    }
    
    .product-image-fallback {
        height: 80px;
        width: 80px;
    }
    
    .product-image-fallback i {
        font-size: 2rem;
    }
    
    .product-actions {
        margin-top: 1rem;
    }
    
    .product-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Services grid mobile */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .servico-card {
        padding: 0.8rem;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: auto;
    }
    
    /* Removido o indicador do canto inferior direito */
    
    /* Removido o indicador do canto inferior direito */
    
    /* Removido o indicador do canto inferior direito */
    
    .servico-card.compact {
        padding: 0.2rem 0.6rem 0.8rem 0.6rem;
        min-height: auto;
    }
    
    .servico-card.compact .servico-description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        max-height: 2.8em;
    }
    
    .servico-card.compact .servico-features {
        display: none;
    }
    
    .servico-card.expanded {
        padding: 1rem;
        min-height: auto;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .servico-card.expanded .servico-description,
    .servico-card.expanded .servico-features {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .servico-card:not(.expanded) .servico-features {
        display: none;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Jobs grid mobile */
    .vagas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vaga-card {
        padding: 1.5rem;
    }
    
    /* Contact section mobile */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-item {
        text-align: center;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Floating button mobile */
    .floating-careers-btn {
        bottom: 20px;
        right: 20px;
        min-width: 200px;
        padding: 12px 16px;
    }
    
    .floating-btn-title {
        font-size: 0.8rem;
    }
    
    .floating-btn-subtitle {
        font-size: 0.7rem;
    }
    
    /* Buttons mobile */
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    /* Banner controls mobile */
    .banner-controls {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
        justify-content: center;
    }
    
    /* Section headers mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Improve grid responsiveness */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vagas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Improve card spacing on mobile */
    .servico-card,
    .vaga-card,
    .product-card {
        margin-bottom: 0.5rem;
    }
    
    /* Improve form responsiveness */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Improve button touch targets */
    .btn {
        min-height: 44px; /* Minimum touch target size */
    }
    
    /* Improve navigation touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .servico-expand-btn {
        display: block;
        margin: 0.2rem auto 0.1rem auto;
        text-align: center;
        font-size: 0.9rem;
        font-weight: 500;
        color: #555;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        transition: all 0.2s;
        user-select: none;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .servico-expand-btn:active,
    .servico-expand-btn:focus,
    .servico-expand-btn:hover {
        background: #f5f5f5;
        box-shadow: 0 0 0 2px #555333;
        color: #333;
    }
    .servico-card.compact .servico-expand-btn {
        margin-bottom: 0.2rem;
    }
    .servico-card.expanded .servico-expand-btn {
        margin-top: 0.5rem;
        margin-bottom: 0.1rem;
    }

}

@media (max-width: 480px) {
    .navbar .container {
        padding-right: 70px; /* Even less space for very small screens */
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Hero section very small screens */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .floating-card {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Partners hero very small screens */
    .partners-hero-title {
        font-size: 1.6rem;
    }
    
    .partners-hero-visual {
        height: 150px;
    }
    
    /* Partners grid very small screens */
    .partners-grid {
        height: 60px;
        gap: 1rem;
    }
    
    .partner-card {
        min-width: 100px;
    }
    
    .partner-logo img {
        width: 60px;
        height: 40px;
    }
    
    /* Section titles very small screens */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Banner very small screens */
    .banner-content {
        padding: 1rem;
    }
    
    .banner-title {
        font-size: 1.4rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
    }
    
    /* Cards very small screens */
    .servico-card,
    .vaga-card,
    .product-card {
        padding: 1rem;
    }
    
    /* Contact very small screens */
    .contato-item {
        padding: 1rem;
    }
    
    .contato-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Footer very small screens */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    /* Floating button very small screens */
    .floating-careers-btn {
        bottom: 15px;
        right: 15px;
        min-width: 180px;
        padding: 10px 12px;
    }
    
    .floating-btn-title {
        font-size: 0.7rem;
    }
    
    .floating-btn-subtitle {
        font-size: 0.6rem;
    }
    
    /* Buttons very small screens */
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    

    
    .nav-link {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    /* Product cards very small screens */
    .product-image {
        height: 100px;
    }
    
    .product-image img {
        max-height: 60px;
        max-width: 80px;
    }
    
    .product-image-fallback {
        height: 60px;
        width: 60px;
    }
    
    .product-image-fallback i {
        font-size: 1.5rem;
    }
    
    /* Service cards very small screens */
    .servico-card {
        padding: 0.5rem;
    }
    
    .servico-card.compact {
        padding: 0.1rem 0.4rem 0.6rem 0.4rem;
    }
    
    .servico-card.expanded {
        padding: 0.6rem;
    }
    
    .servico-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .servico-title {
        font-size: 0.9rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .partners-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .vagas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .contato-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .floating-careers-btn {
        min-width: 280px;
    }
} 