/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header fixo */
.header {
    background: linear-gradient(135deg, #1E3C72 0%, #2A5298 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    z-index: 1001;
}

.logo img {
    height: 60px;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Menu de navegação */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1E3C72;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav ul {
    list-style: none;
    padding: 1rem 0;
}

.nav li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.nav a:hover,
.nav a:focus {
    background-color: rgba(255,255,255,0.1);
    color: #FF8C00;
}

.nav a.active {
    background-color: rgba(255,255,255,0.2);
    color: #FF8C00;
}

/* Conteúdo principal */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.85)), url('../images/hero-geladeira.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px, 50px 50px;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #FF8C00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn:hover,
.btn:focus {
    background: #E07B00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: white;
    color: #1E3C72;
}

/* Seções */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1E3C72;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Sobre Content */
.sobre-content {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Valores Section */
.valores-section {
    background: white;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.valor-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.valor-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.valor-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1E3C72;
    font-weight: 600;
}

.valor-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Equipe Section */
.equipe-section {
    background: white;
}

.equipe-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.equipe-item {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    border-left: 4px solid #FF8C00;
}

.equipe-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1E3C72;
    font-weight: 600;
}

.equipe-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Área de Atuação */
.area-atuacao-section {
    background: white;
}

.cidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.cidade-item {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1E3C72;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.cidade-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Diferenciais Section */
.diferenciais-section {
    background: white;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.diferencial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}

.diferencial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1E3C72;
    font-weight: 600;
}

.diferencial-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Grid de serviços */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1E3C72;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
}

.btn-link {
    display: inline-block;
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.btn-link:hover {
    color: #E07B00;
}

/* Problemas Section */
.problemas-section {
    background: white;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problema-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.problema-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.problema-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problema-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1E3C72;
    font-weight: 600;
}

.problema-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Marcas Section */
.marcas-section {
    background: white;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.marca-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.marca-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.marca-item img {
    max-width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.marca-item:hover img {
    filter: grayscale(0%);
}

.marca-item p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1E3C72 0%, #2A5298 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section .section-title {
    color: white;
}

.cta-section .section-subtitle {
    color: #eee;
}

/* Depoimentos Section */
.depoimentos-section {
    background: white;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.depoimento-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.depoimento-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-author {
    font-weight: 600;
    color: #1E3C72;
    font-size: 1rem;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1E3C72;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1E3C72;
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #FF8C00;
    font-weight: 600;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section ul {
    color: #ccc;
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

.footer-section a:hover,
.footer-section a:focus {
    color: #FF8C00;
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Responsivo - Tablet */
@media (min-width: 768px) {
    .nav-toggle-label {
        display: none;
    }
    
    .nav {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
    }
    
    .nav ul {
        display: flex;
        padding: 0;
    }
    
    .nav li {
        border: none;
    }
    
    .nav a {
        padding: 0.5rem 1.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

/* Responsivo - Desktop */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .problemas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .valores-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .equipe-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .cta-section {
        display: none;
    }
}



/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    color: #1E3C72;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #1E3C72;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-form-section {
    background: white;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #0056b3;
}

.map-section {
    padding-bottom: 0;
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.map-container iframe {
    display: block;
}

.section-subtitle strong {
    color: #1E3C72;
}



/* Processo de Atendimento Section */
.processo-atendimento-section {
    background: white;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.processo-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.processo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.processo-icon {
    font-size: 3rem;
    color: #1E3C72;
    margin-bottom: 1rem;
    display: block;
    font-weight: bold;
}

.processo-item h3 {
    font-size: 1.8rem;
    color: #1E3C72;
    margin-bottom: 1rem;
}

.processo-item p {
    font-size: 1.1rem;
    color: #555;
}



/* Benefícios Conserto Section */
.beneficios-conserto-section {
    background: white;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.beneficio-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.beneficio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.beneficio-item h3 {
    font-size: 1.6rem;
    color: #1E3C72;
    margin-bottom: 1rem;
}

.beneficio-item p {
    font-size: 1rem;
    color: #555;
}

/* Processo de Conserto Section (similar ao processo-atendimento-section) */
.processo-conserto-section {
    background: white;
}

.processo-conserto-section .processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.processo-conserto-section .processo-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.processo-conserto-section .processo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.processo-conserto-section .processo-icon {
    font-size: 3rem;
    color: #1E3C72;
    margin-bottom: 1rem;
    display: block;
    font-weight: bold;
}

.processo-conserto-section .processo-item h3 {
    font-size: 1.8rem;
    color: #1E3C72;
    margin-bottom: 1rem;
}

.processo-conserto-section .processo-item p {
    font-size: 1.1rem;
    color: #555;
}



/* Garantir visibilidade dos emojis */
.problema-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: #1E3C72 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Emojis no footer e botões */
footer p strong, .cta-buttons a {
    color: inherit !important;
}

.whatsapp-float {
    font-size: 3rem !important;
    color: #25D366 !important;
}


/* Garantir visibilidade dos ícones com fundo branco e sombra */
.diferencial-icon,
.service-icon {
    background: white !important;
    padding: 15px !important;
    border-radius: 12px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15) !important;
}

/* Garantir que imagens de problemas comuns tenham contraste */
.problema-icon {
    background: white !important;
    padding: 10px !important;
    border-radius: 8px !important;
}


/* Garantir visibilidade dos ícones com fundo branco e sombra */
.diferencial-icon,
.service-icon {
}

/* Garantir que imagens de problemas comuns tenham contraste */
.problema-icon {
}
