* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.menu a:hover {
    color: #e63946;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('../uploads/Hero_section.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    min-height: 650px;
    padding: 100px 0;
    margin-top: 60px;
    position: relative;
}

.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-content {
    max-width: 600px;
    width: 50%;
    color: #333;
    text-align: left;
    padding: 2rem;
    background: transparent;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2b3c6f;
    line-height: 1.2;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    text-shadow: none;
}

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

.hero-buttons .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background: #2b3c6f;
    color: white;
}

.btn-primary:hover {
    background: #4e6095;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 50, 86, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.entrega-gratis {
    font-size: 1.2rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    border-left: 4px solid #4CAF50;
    display: inline-block;
    color: #333;
}

.entrega-gratis i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.4rem;
}

/* Sobre Nós */
.sobre {
    padding: 0;
    background: transparent;
    position: relative;
}

.sobre-banner {
    background: url('../uploads/sobre_nos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.sobre-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.sobre-banner .container {
    position: relative;
    z-index: 2;
    color: white;
}

.sobre-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sobre-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.sobre-header p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.diferencial-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.diferencial-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diferencial-texto {
    flex: 1;
}

.diferencial-texto h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.diferencial-texto p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Serviços */
.servicos {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.servicos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #2b3c6f;
}

.servicos-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.servicos-carrossel-controles {
    display: flex;
    gap: 0.5rem;
}

.btn-carrossel {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #2b3c6f;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-carrossel:hover {
    background: #2b3c6f;
    color: white;
    border-color: #2b3c6f;
}

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

.servico-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.servico-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.servico-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.servico-card:hover .servico-imagem img {
    transform: scale(1.1);
}

.servico-info {
    padding: 1.5rem;
    text-align: center;
}

.servico-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.btn-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #2b3c6f;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.btn-whatsapp-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.btn-whatsapp-icon:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Portfólio */
.portfolio {
    padding: 80px 0;
    background: #2b3c6f;
    position: relative;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio-header h2 {
    font-size: 2.2rem;
    color: white;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ver-todos:hover {
    background: white;
    color: #2b3c6f;
    border-color: white;
}

.btn-ver-todos i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.btn-ver-todos:hover i {
    transform: translateX(5px);
}

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

.portfolio-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.portfolio-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-imagem img {
    transform: scale(1.1);
}

/* Contato */
.contato {
    padding: 80px 0;
    background: white;
    position: relative;
}

.contato-header {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #2b3c6f;
}

.contato-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contato-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contato-form {
    display: grid;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b3c6f;
    box-shadow: 0 0 0 2px rgba(43, 60, 111, 0.1);
}

.btn-contato {
    background: #2b3c6f;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.btn-contato:hover {
    background: #1a2a4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 60, 111, 0.3);
}

.contato-cards {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.contato-card-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contato-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contato-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2b3c6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.contato-card-texto {
    flex: 1;
}

.contato-card-texto h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #333;
    font-weight: 600;
}

.contato-card-texto p {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

/* Footer */
.footer {
    background: #2b3c6f;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.footer-social a {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #2b3c6f;
    background: white;
    transform: translateY(-3px);
}

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

/* Menu ativo */
.menu a.active {
    color: #2b3c6f;
    font-weight: 600;
    position: relative;
}

.menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2b3c6f;
}

/* Botão Ver Todos Azul */
.btn-ver-todos-azul {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2b3c6f;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #2b3c6f;
}

.btn-ver-todos-azul:hover {
    background: #1a2a4f;
    border-color: #1a2a4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 60, 111, 0.3);
}

.btn-ver-todos-azul i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.btn-ver-todos-azul:hover i {
    transform: translateX(5px);
}

/* Modal de Zoom para Parceiros */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    animation: zoomFade 0.3s;
}

@keyframes zoomFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.zoom-conteudo {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.zoom-conteudo img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    background: white;
    padding: 20px;
    object-fit: contain;
}

.zoom-conteudo h3 {
    color: white;
    margin-top: 20px;
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.zoom-fechar {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.zoom-fechar:hover {
    color: #2b3c6f;
    background: white;
    transform: rotate(90deg);
}