/*
Theme Name: Condo Locker
Description: Tema WordPress personalizado para o site Condo Locker - Solução inteligente para entregas em condomínios
Version: 1.0
Author: Manus AI
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 80px; /* Aumentado de 50px para 80px */
    width: auto;
    max-width: 300px; /* Adicionando largura máxima para controle */
}

.nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #3b82f6;
}

.cta-button {
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2563eb;
}

/* Main content */
.main-content {
    margin-top: 80px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f97316;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #ea580c;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #6b7280;
}

/* Problems section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #ef4444;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.problem-card p {
    color: #6b7280;
    margin-bottom: 10px;
}

.problem-impact {
    font-weight: 600;
    color: #ef4444;
}

/* Solution section */
.solution {
    background: #f8fafc;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.solution-feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.solution-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.solution-feature p {
    color: #6b7280;
    margin-bottom: 15px;
}

.solution-highlight {
    font-weight: 600;
    color: #10b981;
}

/* How it works */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.step p {
    color: #6b7280;
}

/* Benefits section */
.benefits {
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.benefits-column h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1e3a8a;
}

.benefit-item {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.benefit-item p {
    color: #6b7280;
    margin-bottom: 10px;
}

.benefit-highlight {
    font-weight: 600;
    color: #10b981;
}

/* Stats section */
.stats {
    background: #1e3a8a;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f97316;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Specs section */
.specs {
    padding: 80px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.spec-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.spec-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.spec-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 10px;
}

.spec-label {
    color: #6b7280;
}

/* Coverage section */
.coverage {
    background: #f8fafc;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.city-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.city-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
}

/* Contact form */
.contact {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1e3a8a;
}

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

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

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

.submit-btn {
    background: #3b82f6;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2563eb;
}

/* Contact info */
.contact-info {
    background: #1e3a8a;
    color: white;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item p {
    opacity: 0.9;
}

.contact-item a {
    color: #f97316;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .nav {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-content {
        margin-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-grid,
    .solution-features,
    .steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }
}



/* Estilos para hierarquia de logos */
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-primary {
    height: 80px;
    width: auto;
    max-width: 300px;
}

.logo-secondary {
    height: 40px;
    width: auto;
    max-width: 150px;
    opacity: 0.8;
}

.licensing-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 2px;
}

/* Ajustes responsivos para logos */
@media (max-width: 768px) {
    .header-container {
        height: 100px;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo-primary {
        height: 60px;
        max-width: 250px;
    }
    
    .logo-secondary {
        height: 30px;
        max-width: 120px;
    }
    
    .licensing-text {
        font-size: 0.7rem;
    }
    
    .nav {
        display: none; /* Esconder navegação em mobile para economizar espaço */
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .main-content {
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 120px;
        padding: 10px;
    }
    
    .logo-primary {
        height: 50px;
        max-width: 200px;
    }
    
    .logo-secondary {
        height: 25px;
        max-width: 100px;
    }
    
    .main-content {
        margin-top: 120px;
    }
}

/* Melhorias adicionais para o logo principal */
.logo-primary:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Estilos para o footer com logo secundário */
.footer-licensing {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.footer-licensing .logo-secondary {
    margin: 0 auto 10px;
    display: block;
}

.footer-licensing .licensing-text {
    color: #9ca3af;
    font-size: 0.8rem;
}

