/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
/*    --primary-color: #2563eb;*/
/*    --primary-dark: #1e40af;*/

	--text-t: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);

	--primary-color: #6634a8;
    --primary-dark: #46286e;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
	--wpp: #21C063
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
/*body {*/
/*            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
/*            min-height: 100vh;*/
/*            padding: 0px;*/
/*        }*/

.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 7px;
}

/* ===========================
   Header & Navigation
   =========================== */
/* Header */
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Container */
.header .container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-wrap: initial;
}

/* Logo */
.logoPrincipal {
  height:150px;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logoPrincipal {
  height: 111px;
  width: auto;
}


.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-bottom: 0rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero.auto-height {
    height: auto;
    min-height: 400px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===========================
   Search Section
   =========================== */
.search-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.search-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.search-box h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.filter-group input,
.filter-group select {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===========================
   Vehicles Section
   =========================== */
.vehicles-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-t);
}

.vehicle-count {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vehicle-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    position: relative; /* cria contexto */
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.vehicle-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.vehicle-brand {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.vehicle-year {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.vehicle-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    height: 90px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-color);
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicle-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.contact-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #d97706;
    transform: scale(1.05);
}

.loading {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

.loading i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination .page-link {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .page-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}



.teste{
	font-size: medium;
	font-weight: 450;
	text-align: justify;
}
.teste2{
	font-size: medium;
	font-weight: 450;
	text-align: justify;
/*	max-width: 600px;*/
/*	margin-left: auto;*/
/*	margin-right: auto;*/
}

/* ===========================
   About Section
   =========================== */
.about-section {
/*    background: var(--bg-light);*/
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
	background: var(--bg-light);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3,
.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    margin-top: 0.5rem;
}


.form-wpp input,
.form-wpp textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-wpp input:focus,
.form-wpp textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

/* ===========================
   Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-vehicle-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-vehicle-content {
    padding: 2rem;
}

.modal-vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.modal-vehicle-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.modal-vehicle-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.modal-spec {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-spec i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.modal-spec-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.modal-spec-info span {
    color: var(--text-light);
}

.modal-description {
    margin: 1.5rem 0;
}

.modal-description h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.modal-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions button {
    flex: 1;
    padding: 15px;
    font-size: 1.1rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
	.mobile-menu-toggle {
	        display: block;
	    }

	    .nav-menu {
	        display: none;
	        position: fixed;
	        top: 72px;
	        left: 0;
	        right: 0;
	        background: var(--white);
	        flex-direction: column;
	        padding: 2rem;
	        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	        z-index: 999;
	        gap: 0;
	    }
	    
	    /* IMPORTANTE: use !important para sobrescrever */
	    .nav-menu.active {
	        display: flex !important;
	    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
		
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-vehicle-image {
        height: 250px;
    }

    .modal-vehicle-header {
        flex-direction: column;
        align-items: start;
    }

    .modal-actions {
        flex-direction: column;
    }
	
	.hero-sobre {
	        padding: 6rem 1.5rem 3rem;
	        min-height: auto;
	    }
	    
	    .hero-sobre .section-title {
	        font-size: 1.5rem;
	        margin-bottom: 1rem;
	    }
	    
	    .hero-sobre .teste,
	    .hero-sobre .teste2 {
	        font-size: 0.95rem;
	        text-align: justify;
	        padding: 0 0.5rem;
	    }
		
		.mobile-menu-toggle {
		        display: block;
		        background: none;
		        border: none;
		        font-size: 1.5rem;
		        color: var(--text-dark);
		        cursor: pointer;
		        z-index: 1001;
		    }

		    .nav-menu {
		        display: none;
		        position: fixed;
		        top: 72px; /* Altura do header */
		        left: 0;
		        right: 0;
		        background: var(--white);
		        flex-direction: column;
		        padding: 2rem;
		        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		        z-index: 999;
		        gap: 0;
		    }
		    
		    .nav-menu li {
		        margin: 0;
		        padding: 1rem 0;
		        border-bottom: 1px solid var(--border-color);
		    }
		    
		    .nav-menu li:last-child {
		        border-bottom: none;
		    }
		    
		    /* Classe que será adicionada pelo JavaScript */
		    .nav-menu.active {
		        display: flex;
		        animation: slideDown 0.3s ease-out;
		    }
		    
		    @keyframes slideDown {
		        from {
		            opacity: 0;
		            transform: translateY(-10px);
		        }
		        to {
		            opacity: 1;
		            transform: translateY(0);
		        }
		    }
		    
		    /* Ícone do botão muda quando menu está aberto */
		    .mobile-menu-toggle.active i::before {
		        content: "\f00d"; /* Font Awesome 'times' icon */
		    }
}

@media (max-width: 480px) {
	.hero-sobre {
	        padding: 5rem 1rem 2rem;
	    }
	    
	    .hero-sobre .section-title {
	        font-size: 1.3rem;
	        margin-bottom: 0.8rem;
	    }
	    
	    .hero-sobre .teste,
	    .hero-sobre .teste2 {
	        font-size: 0.9rem;
			text-align: justify;
	    }
	    
	    /* Reduz espaçamento entre seções em mobile */
	    .hero-sobre br {
	        display: none;
	    }
	    
	    .hero-sobre p {
	        margin-bottom: 1.5rem;
	    }
	
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .vehicle-price {
        font-size: 1.5rem;
    }

    .modal-vehicle-title {
        font-size: 1.5rem;
    }

    .modal-vehicle-price {
        font-size: 2rem;
    }
	
	
	.detail-container {
		max-width: 1290px;
	    margin: 0 auto;
	    padding: 2rem;
	}
	
	
	.mobile-menu-toggle {
	        display: block;
	        background: none;
	        border: none;
	        font-size: 1.5rem;
	        color: var(--text-dark);
	        cursor: pointer;
	        z-index: 1001;
	    }

	    .nav-menu {
	        display: none;
	        position: fixed;
	        top: 72px; /* Altura do header */
	        left: 0;
	        right: 0;
	        background: var(--white);
	        flex-direction: column;
	        padding: 2rem;
	        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	        z-index: 999;
	        gap: 0;
	    }
	    
	    .nav-menu li {
	        margin: 0;
	        padding: 1rem 0;
	        border-bottom: 1px solid var(--border-color);
	    }
	    
	    .nav-menu li:last-child {
	        border-bottom: none;
	    }
	    
	    /* Classe que será adicionada pelo JavaScript */
	    .nav-menu.active {
	        display: flex;
	        animation: slideDown 0.3s ease-out;
	    }
	    
	    @keyframes slideDown {
	        from {
	            opacity: 0;
	            transform: translateY(-10px);
	        }
	        to {
	            opacity: 1;
	            transform: translateY(0);
	        }
	    }
	    
	    /* Ícone do botão muda quando menu está aberto */
	    .mobile-menu-toggle.active i::before {
	        content: "\f00d"; /* Font Awesome 'times' icon */
	    }
}




.q {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Conteúdo do modal */
.q-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

/* Botão de fechar */
.cl {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.cl:hover,
.cl:focus {
    color: #000;
}

.btn-wpp{
	color: #FFFFFF;
	background-color: var(--wpp);
}

.valor-antigo {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.valor-novo {
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.img-wrapper {
    height: 250px;
    border-radius: 12px 12px 0 0;
    background-repeat: no-repeat;
    background-position: center;
}

/* CASO "EM PREPARAÇÃO" */
.img-wrapper.preparacao {
    background-size: contain;   /* 🔥 não corta */
    background-color: #000;     /* fundo uniforme */
}

/* CASO FOTO REAL */
.img-wrapper.foto {
    background-size: cover;     /* preenche tudo */
}



.tag-oferta {
  position: absolute;
  top: 18px;
  right: -40px;            
  background: #cc1d23;
  color: #fff;
  padding: 6px 48px;
  font-size: 0.75rem;
  font-weight: bold;
  transform: rotate(45deg); 
  transform-origin: center;
  box-shadow: 0 4px 8px rgba(0,0,0,.3);
  text-transform: uppercase;
  z-index: 10;          
    pointer-events: none;
    text-transform: uppercase;
}

.tag-oferta {
    transition: transform 0.2s ease;
}

.vehicle-card:hover .tag-oferta {
    transform: rotate(45deg) scale(1.05);
}

.vehicle-location i {
    margin-right: 4px;
    font-size: 0.7rem;
    color: #999;
}

.vehicle-location {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.company-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.company-city {
    font-size: 0.75rem;
    font-weight: 400;
    color: #777;
}

.hero-sobre {
    height: auto;
    min-height: 400px;
    padding: 8rem 2rem 4rem;
}

.container-sobre {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Ajusta espaçamento dos textos na página sobre */
.hero-sobre .teste,
.hero-sobre .teste2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
