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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header e Navegação */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    white-space: nowrap;
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

/* Botão CTA */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Seção Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: #fff;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    color: #333;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

/* Seção Sobre */
.sobre {
    padding: 8rem 1rem;
    background-color: #f8f9fa;
}

.sobre h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.sobre-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.sobre-texto {
    flex: 1;
}

.sobre-image {
    flex: 1;
}

.sobre-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.sobre-texto p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.sobre-texto .cta-button {
    margin-top: 2rem;
}

/* Seção Projetos */
.projetos {
    padding: 4rem 0;
    margin: 0;
    background-color: #fff;
}

#projetos {
    background-color: #ffffff;
}

.projetos h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.projeto-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.projeto-card:hover {
    transform: translateY(-5px);
}

.projeto-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.projeto-info {
    padding: 20px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projeto-info h3 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.projeto-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.projetos-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Estilos do Carrossel de Projetos */
.projetos-slider {
    padding: 20px 0;
    position: relative;
}

.projetos-slider .swiper-slide {
    height: auto;
    padding: 10px;
}

.projetos-slider .projeto-card {
    height: 100%;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .projetos-slider .projeto-card {
        max-width: 300px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Seção de Contato */
.contact {
    padding: 100px 0;
    background: #fff !important;
}

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

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222 !important;
    margin-bottom: 50px;
    position: relative;
}

.contact h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 15px auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
    background: #fff !important;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.contact-info {
    background: #007bff;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    font-size: 28px;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff !important;
    box-shadow: none !important;
    border-radius: 10px !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #fff !important;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #333 !important;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #222 !important;
    color: #fff !important;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    background: #333;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

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

.contact-form button {
    padding: 15px 30px;
    background-color: #007bff !important;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.contact-form button:disabled {
    background-color: #444;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-group input.invalid {
    border-color: #dc3545;
    color: #dc3545;
}

.form-group input.invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.valid {
    border-color: #28a745;
    color: #fff;
}

.form-group input.valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.whatsapp-indicator {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #fff;
}

.whatsapp-indicator.valid {
    color: #28a745;
}

.whatsapp-indicator.invalid {
    color: #dc3545;
}

.whatsapp-indicator i {
    margin-right: 0.5rem;
}

.file-upload {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #222 !important;
    border: 1px dashed #444 !important;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff !important;
    width: 100%;
    box-sizing: border-box;
}

.file-label:hover {
    background-color: #333 !important;
    border-color: #007bff !important;
}

.file-info {
    font-size: 0.9rem;
    color: #999 !important;
}

.file-list {
    margin-top: 1rem;
    width: 100%;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #222 !important;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    color: #fff !important;
}

.file-item i {
    color: #007bff;
}

.file-item span {
    flex: 1;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
}

.remove-file:hover {
    color: #c82333;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    color: #666;
}

.social-links a {
    color: #333;
}

.social-links a:hover {
    color: #007bff;
}

/* Chatbot Styles */
.chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.chatbot-button:hover {
    transform: scale(1.1);
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
}

.chatbot-header {
    padding: 15px;
    background-color: #007bff;
    color: white;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: pre-line;
}

.bot-message {
    background-color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    position: relative;
}

.bot-message::before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #000;
}

.user-message {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    position: relative;
}

.user-message::before {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #007bff;
}

.chatbot-input-container {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chatbot-send {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chatbot-send:hover {
    background-color: #0056b3;
}

.chatbot-whatsapp-button {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.whatsapp-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #e0e0e0;
}

.info-item .fab.fa-whatsapp {
    color: #ffffff;
    font-size: 1.5rem;
}

/* Estilos para a seção de Camisas */
#camisas {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

#camisas h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.camisas-slider {
    padding: 20px 0;
    position: relative;
}

.camisas-slider .swiper-slide {
    height: auto;
    padding: 10px;
}

.camisas-slider .projeto-card {
    height: 100%;
    margin: 0;
    background: white;
}

.camisas-slider .projeto-img {
    height: 300px;
    object-fit: contain;
    background: white;
    padding: 20px;
}

/* Estilos para a seção de Camisas de Terceirão */
#terceirao {
    background-color: #ffffff;
    padding: 4rem 0;
}

#terceirao h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.terceirao-slider {
    padding: 20px 0;
    position: relative;
}

.terceirao-slider .swiper-slide {
    height: auto;
    padding: 10px;
}

.terceirao-slider .projeto-card {
    height: 100%;
    margin: 0;
    background: white;
}

.terceirao-slider .projeto-img {
    height: 300px;
    object-fit: contain;
    background: white;
    padding: 20px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
        max-width: 100%;
    }

    .projetos-slider .swiper-slide,
    .camisas-slider .swiper-slide,
    .terceirao-slider .swiper-slide {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .projeto-card {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Header e Navegação */
    .header {
        padding: 1rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        min-height: 70vh;
        text-align: center;
    }

    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 1.5rem auto;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        white-space: normal;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .hero-image img {
        max-width: 320px;
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
    }

    /* Carrosséis */
    .projetos-slider .swiper-slide,
    .camisas-slider .swiper-slide,
    .terceirao-slider .swiper-slide {
        width: 100%;
    }

    .projeto-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .projeto-img {
        height: 250px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }

    /* Contato */
    .contact-info {
        text-align: center;
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    /* Carrosséis */
    .projetos-slider,
    .camisas-slider,
    .terceirao-slider {
        padding: 10px 0;
    }

    .projeto-card {
        margin: 0;
    }

    .projeto-img {
        height: 200px;
    }

    .projeto-info {
        padding: 15px;
    }

    .projeto-info h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .projeto-info p {
        font-size: 0.9rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    /* Contato */
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* WhatsApp */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-button i {
        font-size: 1.5rem;
    }
}

/* Ajustes específicos para os carrosséis */
.projetos-slider,
.camisas-slider,
.terceirao-slider {
    padding: 20px 0;
    margin: 0 -1rem;
}

.projetos-slider .swiper-slide,
.camisas-slider .swiper-slide,
.terceirao-slider .swiper-slide {
    padding: 10px;
}

.whatsapp-indicator {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    color: #666;
}

.whatsapp-indicator.valid {
    color: #128C7E;
}

.whatsapp-indicator.invalid {
    color: #dc3545;
}

.whatsapp-indicator i {
    margin-right: 5px;
}

/* Estilos para upload de arquivos */
.file-upload {
    position: relative;
    margin-bottom: 1rem;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

.file-info {
    font-size: 0.875rem;
    color: #6c757d;
}

.file-list {
    margin-top: 0.5rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.file-item i {
    color: #6c757d;
}

.file-item span {
    flex: 1;
    font-size: 0.875rem;
    color: #495057;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.remove-file:hover {
    color: #c82333;
}

/* Seção de Avaliações */
.avaliacoes {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.avaliacoes h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

.avaliacao-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.avaliacao-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cliente-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cliente-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.estrelas {
    color: #ffc107;
    margin-top: 0.25rem;
}

.avaliacao-texto {
    color: #666;
    margin: 1rem 0;
}

.avaliacao-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.data {
    color: #888;
}

.ver-mais {
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.ver-mais:hover {
    color: #2b5797;
}

.avaliacoes-cta {
    text-align: center;
    margin-top: 2rem;
}

.avaliacoes-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #4285f4;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.avaliacoes-cta .btn:hover {
    background-color: #2b5797;
}

/* Responsividade para Avaliações */
@media (max-width: 768px) {
    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .avaliacao-card {
        margin: 0 1rem;
    }
}

/* Novo formulário de contato azul e branco */
.novo-formulario {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px;
    max-width: 500px;
    margin: 40px auto;
}
.novo-formulario form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.novo-formulario .form-group {
    position: static !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.novo-formulario label {
    position: static !important;
    left: unset !important;
    top: unset !important;
    margin-bottom: 4px !important;
    font-size: 1rem !important;
    color: #007bff !important;
    font-weight: 600 !important;
    background: none !important;
    pointer-events: auto !important;
    transition: none !important;
    z-index: auto !important;
}
.novo-formulario input,
.novo-formulario textarea {
    margin-top: 0 !important;
    background: #fff !important;
    border: 1.5px solid #dbe2ea !important;
    border-radius: 6px !important;
    padding: 12px !important;
    font-size: 1rem !important;
    color: #222 !important;
    transition: border-color 0.2s !important;
}
.novo-formulario input:focus,
.novo-formulario textarea:focus {
    border-color: #007bff !important;
    outline: none !important;
}
.novo-formulario textarea {
    min-height: 120px;
    resize: vertical;
}
.novo-formulario .file-label {
    background: #fff !important;
    border: 1.5px dashed #b6c6e3 !important;
    color: #007bff !important;
    border-radius: 6px !important;
    padding: 10px 16px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}
.novo-formulario .file-label:hover {
    background: #eaf2fb !important;
    border-color: #007bff !important;
}
.novo-formulario .file-info {
    color: #888 !important;
    font-size: 0.95em;
}
.novo-formulario .btn.azul {
    background: #007bff !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 0 !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    margin-top: 10px !important;
}
.novo-formulario .btn.azul:hover {
    background: #0056b3 !important;
}
.novo-formulario .file-list {
    margin-top: 8px;
}
.novo-formulario .file-item {
    background: #fff !important;
    color: #222 !important;
    border-radius: 4px !important;
    padding: 6px 10px !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.98em !important;
}

.novo-formulario .whatsapp-indicator {
    font-size: 0.97em;
    margin-top: 2px;
    display: block;
    color: #888;
    transition: color 0.2s;
}
.novo-formulario .whatsapp-indicator.valid {
    color: #28a745 !important;
}
.novo-formulario .whatsapp-indicator.invalid {
    color: #dc3545 !important;
}
.novo-formulario .whatsapp-indicator i {
    margin-right: 4px;
}

/* Menu hambúrguer responsivo */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: 16px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #007bff;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 16px rgba(0,0,0,0.08);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 32px 32px 32px;
        gap: 32px;
        transition: right 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 1099;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links li {
        margin: 0;
    }
    .nav-links a {
        color: #007bff;
        font-size: 1.2rem;
        font-weight: 600;
    }
    nav {
        position: relative;
    }
    .logo-text {
        font-size: 1rem;
        white-space: normal;
    }
    .hero-content {
        margin-bottom: 0.5rem;
    }
    .cta-button {
        margin-bottom: 1rem;
    }
    .hero {
        margin-bottom: 0.5rem;
        padding-bottom: 1rem;
    }
    .hero-image {
        margin-bottom: 0.5rem;
    }
}

/* Animação do hambúrguer para X */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .sobre-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .sobre-texto, .sobre-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .sobre-img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }
  .sobre h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .sobre-texto p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .sobre-texto .cta-button {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
  }
} 