/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #1B365D;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #1B365D;
    position: relative;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variáveis CSS */
:root {
    --primary-color: #1B365D;
    --secondary-color: #2E5984;
    --light-blue: #E8F1F8;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --success: #10B981;
    --warning: #F59E0B;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(27, 54, 93, 0.1);
    --transition: all 0.3s ease;
}

/* Header */
.header {
    background: var(--white);
    color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary-color);
}

.header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: auto;
    border-radius: 8px;
}

.slogan {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-contact:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1B365D 0%, #2E5984 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1920&q=80') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(27, 54, 93, 0.8) 0%, 
        rgba(46, 89, 132, 0.7) 50%,
        rgba(27, 54, 93, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8F1F8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-highlight {
    color: #FFD700;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    padding: 8px 0;
}

.feature-item i {
    color: #FFD700;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--primary-color);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    animation: slideInRight 1s ease-out 0.3s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Animações */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Produtos Section */
.produtos {
    background: var(--gray-light);
}

.produtos .container {
    max-width: 1400px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.produto-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.15);
}

.produto-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.produto-card:hover .produto-image img {
    transform: scale(1.05);
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.produto-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produto-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.produto-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.produto-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.produto-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.produto-features i {
    color: var(--success);
    font-size: 12px;
}

.btn-produto {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-produto:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Vantagens Section */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vantagem-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.vantagem-item:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
}

.vantagem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.vantagem-item:hover .vantagem-icon {
    transform: scale(1.1);
}

.vantagem-icon i {
    font-size: 32px;
    color: var(--white);
}

.vantagem-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vantagem-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Depoimentos Section */
.depoimentos {
    background: var(--light-blue);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.15);
}

.depoimento-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}

.depoimento-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.depoimento-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Orçamento Section */
.orcamento {
    background: var(--gray-light);
}

.orcamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.orcamento-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.orcamento-content-center .orcamento-info {
    max-width: 800px;
    margin: 0 auto;
}

.orcamento-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.orcamento-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.orcamento-benefits {
    margin-bottom: 40px;
}

.orcamento-benefits .benefit-item {
    margin-bottom: 15px;
}

.orcamento-benefits i {
    color: var(--success);
}

.contato-direto {
    display: grid;
    gap: 20px;
}

.contato-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    color: var(--white);
    font-size: 18px;
}

.contato-info strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contato-info span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.contato-info small {
    color: var(--text-light);
    font-size: 12px;
}

/* CTA Buttons Section */
.orcamento-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-terciary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.btn-terciary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 89, 132, 0.3);
}

.btn-whatsapp-orcamento {
    background: #25D366;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.btn-whatsapp-orcamento:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.orcamento-cta .btn-primary,
.orcamento-cta .btn-secondary {
    min-width: 250px;
    justify-content: center;
}

/* Form */
.orcamento-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.3);
}

.form-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-disclaimer i {
    color: var(--success);
}

/* Localização Section */
.lojas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.endereco-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}

.endereco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.15);
}

.endereco-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.endereco-icon i {
    color: var(--white);
    font-size: 20px;
}

.endereco-details {
    flex: 1;
}

.endereco-details h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 18px;
}

.loja-badge {
    background: #FFD700;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.endereco-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.endereco-details small {
    color: var(--text-light);
    font-style: italic;
}

.endereco-contato {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-telefone,
.btn-whatsapp {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
}

.btn-telefone {
    background: var(--primary-color);
    color: var(--white);
}

.btn-telefone:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.horario-geral {
    margin-top: 40px;
}

.horario-card {
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.horario-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.horario-icon i {
    color: var(--white);
    font-size: 24px;
}

.horario-info h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.horario-info p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 0 20px;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: auto;
    border-radius: 8px;
}

.footer-company p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.footer-legal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    margin-top: 2px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-horario p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .produtos .container {
        max-width: 1200px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .orcamento-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .orcamento-content-center {
        text-align: center;
    }
    
    .orcamento-content-center .orcamento-info {
        max-width: 100%;
    }
    
    .orcamento-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .orcamento-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .orcamento-benefits {
        margin-bottom: 30px;
    }
    
    .orcamento-benefits .benefit-item {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .contato-direto {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .contato-item {
        padding: 15px;
    }
    
    .contato-icon {
        width: 40px;
        height: 40px;
    }
    
    .contato-icon i {
        font-size: 16px;
    }
    
    .contato-info strong {
        font-size: 14px;
    }
    
    .contato-info span {
        font-size: 14px;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
    }
    
    .lojas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .endereco-card {
        padding: 20px;
        gap: 15px;
    }
    
    .endereco-icon {
        width: 50px;
        height: 50px;
    }
    
    .endereco-details h3 {
        font-size: 16px;
    }
    
    .btn-telefone,
    .btn-whatsapp {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .horario-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .logo-section {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        text-align: left;
    }
    
    .slogan {
        display: none;
    }
    
    .contact-header {
        display: flex;
        align-items: center;
    }
    
    .contact-item {
        display: none;
    }
    
    .btn-contact {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .produtos .container {
        max-width: 1200px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .lojas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
    }
    
    .orcamento-cta {
        margin-top: 30px;
        gap: 12px;
    }
    
    .orcamento-cta .btn-primary,
    .orcamento-cta .btn-secondary,
    .orcamento-cta .btn-terciary,
    .orcamento-cta .btn-whatsapp-orcamento {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .endereco-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
        padding: 25px 15px;
        max-width: 90%;
        width: 100%;
        margin: 0 auto;
        min-height: 280px;
        display: flex;
        justify-content: space-between;
    }
    
    .endereco-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .endereco-details {
        text-align: center;
        width: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .endereco-details h3 {
        text-align: center;
        margin-bottom: 8px;
    }
    
    .loja-badge {
        display: block;
        text-align: center;
        margin: 5px auto 10px auto;
        width: fit-content;
    }
    
    .endereco-details p {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .endereco-contato {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-telefone,
    .btn-whatsapp {
        min-width: auto;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .horario-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        margin: 0 auto;
        max-width: 90%;
        width: 100%;
    }
    
    .horario-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .horario-icon i {
        font-size: 20px;
    }
    
    .horario-info {
        text-align: center;
    }
    
    .horario-info h4 {
        font-size: 16px;
        text-align: center;
    }
    
    .horario-info p {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-horario {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .lojas-grid {
        gap: 15px;
    }
    
    .endereco-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        align-items: center;
        padding: 20px 12px;
        margin: 0 auto;
        max-width: 95%;
        width: 100%;
        min-height: 260px;
        display: flex;
        justify-content: space-between;
    }
    
    .endereco-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .endereco-icon i {
        font-size: 18px;
    }
    
    .endereco-details {
        text-align: center;
        width: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .endereco-details h3 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .loja-badge {
        font-size: 11px;
        padding: 3px 10px;
        margin: 3px auto 8px auto;
        display: block;
        width: fit-content;
    }
    
    .endereco-details p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .endereco-details small {
        font-size: 12px;
    }
    
    .endereco-contato {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        gap: 6px;
    }
    
    .btn-telefone,
    .btn-whatsapp {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
        gap: 5px;
    }
    
    .horario-geral {
        margin-top: 30px;
    }
    
    .horario-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px 12px;
        margin: 0 auto;
        max-width: 95%;
        width: 100%;
    }
    
    .horario-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .horario-icon i {
        font-size: 18px;
    }
    
    .horario-info {
        text-align: center;
    }
    
    .horario-info h4 {
        font-size: 15px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .horario-info p {
        font-size: 13px;
        text-align: center;
        line-height: 1.4;
    }
}

/* Telas muito pequenas - Mobile Extra Small */
@media (max-width: 360px) {
    .endereco-card {
        padding: 15px 8px;
        max-width: 98%;
        width: 100%;
    }
    
    .endereco-details h3 {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .endereco-details p {
        font-size: 13px;
    }
    
    .loja-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .btn-telefone,
    .btn-whatsapp {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .endereco-contato {
        max-width: 220px;
    }
    
    .horario-card {
        padding: 15px 8px;
        max-width: 98%;
        width: 100%;
    }
    
    .horario-info h4 {
        font-size: 14px;
    }
    
    .horario-info p {
        font-size: 12px;
    }
}
    
    .orcamento {
        padding: 40px 0;
    }
    
    .orcamento-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .orcamento-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .orcamento-benefits {
        margin-bottom: 25px;
    }
    
    .orcamento-benefits .benefit-item {
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .contato-direto {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .contato-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contato-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    
    .contato-icon i {
        font-size: 14px;
    }
    
    .contato-info {
        text-align: center;
    }
    
    .contato-info strong {
        font-size: 13px;
    }
    
    .contato-info span {
        font-size: 13px;
    }
    
    .contato-info small {
        font-size: 11px;
    }
    
    .orcamento-form {
        padding: 15px;
        margin-top: 15px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 15px;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .form-disclaimer {
        margin-top: 10px;
        font-size: 12px;
    }
    
    .orcamento-form {
        padding: 20px;
        margin-top: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 15px 25px;
        font-size: 15px;
    }
    
    .form-disclaimer {
        margin-top: 12px;
        font-size: 13px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 160px;
        right: 20px;
    }


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
