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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0f;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* LOGOTIPO - Comando para ajustar tamanho */
.logotipo {
    height: 40px;           /* Altura padrão - AJUSTE AQUI */
    width: auto;            /* Largura automática para manter proporção */
    max-width: 200px;       /* Largura máxima - AJUSTE AQUI */
    object-fit: contain;    /* Mantém proporção sem distorção */
    transition: all 0.3s ease;
}

/* Responsivo para logotipo */
@media (max-width: 768px) {
    .logotipo {
        height: 32px;       /* Altura menor em mobile - AJUSTE AQUI */
        max-width: 150px;   /* Largura máxima menor em mobile - AJUSTE AQUI */
    }
}

/* Header */
.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-header {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(124,58,237,0.2);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(124,58,237,0);stop-opacity:0" /></radialGradient></defs><circle cx="800" cy="300" r="400" fill="url(%23grad1)" /></svg>');
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch; /* Faz ambas colunas terem a mesma altura */
    position: relative;
    z-index: 2;
    min-height: 650px; /* Altura mínima para garantir proporção */
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.problems-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.problems-box h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.problems-list li::before {
    content: '●';
    color: #ef4444;
    font-weight: bold;
    margin-top: 0.1rem;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1.5rem;
}

.cta-primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    min-width: 280px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.hero-benefits {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-benefits span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-benefits span::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ocupa toda altura disponível */
}

.workstation-image-photo {
    width: 100%;
    max-width: 500px;
    height: 100%; /* Altura total do container */
    min-height: 600px; /* Altura mínima para alinhar com o conteúdo */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Cost Section */
.cost-section {
    padding: 80px 0;
    background: #0f0f1a;
    text-align: center;
}

.cost-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cost-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cost-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cost-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.cost-stat {
    text-align: center;
}

.cost-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ef4444;
    display: block;
    margin-bottom: 0.5rem;
}

.cost-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #0a0a0f;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch; /* Faz todos os cards terem a mesma altura */
}

.product-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribui o conteúdo uniformemente */
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #000;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '🖥️';
    font-size: 4rem;
    opacity: 0.7;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.product-price {
    font-size: 1.3rem;
    color: #7c3aed;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-specs {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1; /* Faz a lista ocupar o espaço disponível */
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.product-specs li::before {
    content: '•';
    color: #7c3aed;
    font-weight: bold;
}

.product-cta {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto; /* Empurra o botão para o final */
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: #0f0f1a;
}

.problems-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.problems-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.problems-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-item {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
}

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

.problem-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 1rem;
}

.problem-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.solution-item {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
}

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

.solution-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #22c55e;
    margin-bottom: 1rem;
}

.solution-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ROI Calculator */
.roi-section {
    padding: 80px 0;
    background: #0a0a0f;
    text-align: center;
}

.roi-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.roi-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.roi-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.roi-calculator {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.roi-result {
    text-align: center;
}

.roi-result-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #22c55e;
    display: block;
    margin-bottom: 0.5rem;
}

.roi-result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form input,
.cta-form select {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-form select {
    color: #fff;
}

.cta-form select option {
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem;
}

/* Estilo específico para o texto padrão do select */
.cta-form select:invalid {
    color: rgba(255, 255, 255, 0.6);
}

.cta-form select:valid {
    color: #fff;
}

.cta-form .cta-button {
    grid-column: 1 / -1;
    background: #fff;
    color: #7c3aed;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem auto 0; /* Margem superior e centralização */
    max-width: 300px;
    display: block;
    text-align: center;
}

.cta-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button {
    grid-column: 1 / -1;
    background: #fff;
    color: #7c3aed;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto; /* Centraliza automaticamente */
    text-decoration: none; /* Para links */
    text-align: center;
    max-width: 300px; /* Largura máxima */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Onde Estamos Section - Reformulada */
.contact-info {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 80px; /* Altura mínima consistente */
}

.contact-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-detail:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.contact-detail:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text strong {
    color: #fff;
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.contact-text small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Maps Section - Reformulada */
.maps-section {
    position: relative;
}

.maps-section h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.maps-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 2px;
}

.maps-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%; /* Ocupa toda altura disponível */
    display: flex;
    flex-direction: column;
}

.maps-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transform: rotate(45deg);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.maps-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.maps-container iframe {
    width: 100%;
    height: 350px; /* Altura maior para equilibrar */
    border: 0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    flex: 1; /* Ocupa espaço restante */
}

.maps-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: auto; /* Empurra para baixo */
}

.maps-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.maps-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.maps-link:hover::before {
    left: 100%;
}

.maps-link:active {
    transform: translateY(-1px);
}

/* Floating Elements */
.contact-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .contact-details-grid {
        gap: 1.2rem;
    }

    .contact-detail {
        padding: 1.5rem;
        gap: 1rem;
        min-height: 70px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }

    .contact-text strong {
        font-size: 1rem;
    }

    .maps-container {
        padding: 1.5rem;
    }

    .maps-container iframe {
        height: 280px;
    }
    
    .maps-section h3,
    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-detail {
        padding: 1.2rem;
        min-height: 60px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .maps-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .maps-container iframe {
        height: 240px;
    }
}

/* Footer */
.footer {
    background: #0a0a0f;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logotipo-footer {
    height: 60px;           /* Altura padrão do footer - AJUSTE AQUI */
    width: auto;            /* Largura automática para manter proporção */
    max-width: 250px;       /* Largura máxima do footer - AJUSTE AQUI */
    object-fit: contain;    /* Mantém proporção sem distorção */
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.logotipo-footer:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

/* Responsivo para logotipo do footer */
@media (max-width: 768px) {
    .logotipo-footer {
        height: 50px;       /* Altura menor em mobile - AJUSTE AQUI */
        max-width: 200px;   /* Largura máxima menor em mobile - AJUSTE AQUI */
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #7c3aed;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-info strong {
    color: #fff;
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-info small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-copy p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        min-width: unset;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-details-grid {
        gap: 1rem;
    }

    .contact-detail {
        padding: 1rem;
    }

    .contact-text strong {
        font-size: 1rem;
    }

    .maps-container iframe {
        height: 200px;
    }

    .nav-links {
        display: none;
    }

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

    .footer-brand {
        max-width: none;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}