﻿.novo-header * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

	.novo-top-header {
		background: white;
		padding: 20px 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		flex-wrap: wrap;
		gap: 30%;
	}

	.novo-logo-container {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.novo-logo-oab {
		height: 60px;
		width: auto;
	}

	.novo-logo-caamt-wrapper {
		display: flex;
		flex-direction: column;
	}

	.novo-logo-caamt {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.novo-logo-caamt-text {
		font-size: 36px;
		font-weight: bold;
		letter-spacing: -1px;
		line-height: 1;
	}

	.novo-logo-ca { color: #2240ff; }
	.novo-logo-a { color: #f4006e; }
	.novo-logo-mt { color: #2240ff; }

	.novo-subtitle {
		color: #2240ff;
		font-size: 11px;
		margin-top: 2px;
	}

	.novo-social-icons {
		display: flex;
		gap: 10px;
	}

	.novo-social-icon {
		width: 32px;
		height: 32px;
		border-radius: 6px;
		background: #2240ff;
		color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		font-size: 14px;
		transition: transform 0.2s;
	}

	.novo-social-icon:hover {
		transform: translateY(-2px);
		color: white;
		text-decoration: none;
	}

	.novo-right-buttons {
		display: flex;
		gap: 15px;
	}

	.novo-btn {
		padding: 10px 25px;
		border-radius: 25px;
		border: 2px solid #2240ff;
		background: white;
		color: #2240ff;
		font-weight: 600;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 8px;
		transition: all 0.3s;
		text-decoration: none;
		font-size: 14px;
	}

	.novo-btn:hover {
		background: #2240ff;
		color: white;
		text-decoration: none;
	}

	/* Estilos para os dropdowns dos botões */
	.novo-btn-dropdown {
		position: relative;
		display: inline-block;
	}

	.novo-dropdown-content {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: white;
		min-width: 220px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		z-index: 1000;
		border-radius: 8px;
		margin-top: 5px;
		padding: 8px 0;
	}

	.novo-dropdown-content.active {
		display: block;
	}

	.novo-dropdown-content a {
		display: block;
		padding: 10px 20px;
		color: #333;
		text-decoration: none;
		transition: all 0.2s;
		font-size: 13px;
		border-bottom: 1px solid #f3f4f6;
	}

	.novo-dropdown-content a:last-child {
		border-bottom: none;
	}

	.novo-dropdown-content a:hover {
		background: #f3f4f6;
		color: #f4006e;
	}

	/* Indicador visual quando o dropdown está aberto */
	.novo-btn-dropdown.active .novo-btn {
		background: #2240ff;
		color: white;
	}

	.novo-btn-dropdown.active .novo-btn .fa-chevron-down {
		transform: rotate(180deg);
	}

	.novo-btn .fa-chevron-down {
		transition: transform 0.3s;
		font-size: 12px;
	}

	/* Fechar dropdown ao clicar fora */
	.novo-dropdown-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: transparent;
		z-index: 999;
		display: none;
	}

	.novo-pink-wave {
		background: #f4006e;
		height: 60px;
		position: relative;
		overflow: hidden;
	}

	.novo-pink-wave::before {
		content: '';
		position: absolute;
		top: -50%;
		left: 0;
		width: 100%;
		height: 100%;
		background: white;
		border-radius: 0 0 50% 50%;
	}

	.novo-main-nav {
		background: #f4006e;
		padding: 0;
		min-height: 71px;
	}

	.novo-nav-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 50px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.novo-nav-menu {
		display: flex;
		list-style: none;
		gap: 0;
		flex-wrap: wrap;
		margin: 0;
		padding: 0;
	}

	.novo-nav-item {
		position: relative;
	}

	.novo-nav-item > a,
	.novo-nav-item > span {
		color: white;
		padding: 15px 18px;
		cursor: pointer;
		font-weight: 500;
		font-size: 14px;
		transition: background 0.3s;
		white-space: nowrap;
		display: flex;
		align-items: center;
		gap: 5px;
		text-decoration: none;
	}

	.novo-nav-item > a:hover,
	.novo-nav-item > span:hover {
		background: #d42b77;
		color: white;
		text-decoration: none;
        border-radius: 8px;
	}

	.novo-nav-item > span::before {
		content: '▶';
		font-size: 8px;
		margin-right: 5px;
	}

	.novo-nav-item > a::before {
		content: none;
	}

	/* Dropdown Menu - Primeiro Nível (Filhos) */
	.novo-dropdown-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: white;
		min-width: 220px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		z-index: 1000;
		list-style: none;
		padding: 10px 0;
		margin: 0;
		border-radius: 4px;
	}

	.novo-nav-item:hover > .novo-dropdown-menu {
		display: block;
	}

	.novo-dropdown-menu li {
		margin: 0;
	}

	/* CORREÇÃO: Estilizar tanto <a> quanto <span> no dropdown de primeiro nível */
	.novo-dropdown-menu > li > a,
	.novo-dropdown-menu > li > span {
		display: block;
		padding: 10px 20px;
		color: #333;
		text-decoration: none;
		transition: background 0.2s, color 0.2s;
		font-size: 13px;
		cursor: pointer;
	}

	.novo-dropdown-menu > li > a:hover,
	.novo-dropdown-menu > li > span:hover {
		background: #f3f4f6;
		color: #f4006e;
	}

	/* Submenu (segundo nível - Netos) */
	.novo-dropdown-menu li.has-submenu {
		position: relative;
	}

	.novo-dropdown-menu li.has-submenu > .novo-sub-dropdown-menu {
		display: none;
		position: absolute;
		top: 0;
		left: 100%;
		background: white;
		min-width: 220px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		z-index: 1100;
		list-style: none;
		padding: 10px 0;
		margin: 0;
		margin-left: 2px;
		border-radius: 4px;
	}

	.novo-dropdown-menu li.has-submenu:hover > .novo-sub-dropdown-menu {
		display: block;
	}

	/* CORREÇÃO: Adicionar seta indicadora para itens com submenu */
	.novo-dropdown-menu li.has-submenu > span,
	.novo-dropdown-menu li.has-submenu > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-right: 35px;
		position: relative;
	}

	.novo-dropdown-menu li.has-submenu > span::after,
	.novo-dropdown-menu li.has-submenu > a::after {
		content: '▶';
		font-size: 10px;
		margin-left: auto;
		color: #888;
		position: absolute;
		right: 15px;
	}

	/* Estilização dos itens do submenu (netos) */
	.novo-sub-dropdown-menu a {
		display: block;
		padding: 10px 20px;
		color: #333;
		text-decoration: none;
		transition: background 0.2s, color 0.2s;
		font-size: 13px;
		white-space: nowrap;
	}

	.novo-sub-dropdown-menu a:hover {
		background: #f3f4f6;
		color: #f4006e;
	}

	/* Menu Mobile Toggle */
	.novo-mobile-toggle {
		display: none;
		background: transparent;
		border: 2px solid white;
		color: white;
		padding: 8px 12px;
		cursor: pointer;
		border-radius: 4px;
		margin-left: auto;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 44px;
		height: 44px;
		margin-right: 5%;
	}

	.novo-mobile-toggle span {
		display: block;
		width: 25px;
		height: 3px;
		background: white;
		margin: 2px 0;
		transition: 0.3s;
	}

	.novo-mobile-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	.novo-mobile-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.novo-mobile-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	/* ===== RESPONSIVO ===== */
	
	/* Breakpoint para notebooks */
	@media (max-width: 1300px) {
		.novo-top-header {
			gap: 20%;
		}
	}

	/* Ajustes adicionais para telas menores */
	@media (max-width: 1100px) {
		.novo-top-header {
			gap: 10%;
		}
	}
	
	@media (max-width: 992px) {
		.novo-top-header {
			padding: 15px 20px;
			gap: 5%;
			flex-wrap: nowrap;	
		}
		
		.novo-logo-oab {
			height: 45px;
		}

		.novo-social-icon {
			width: 28px;
			height: 28px;
			font-size: 12px;
		}

		.novo-btn {
			padding: 6px 16px;
			font-size: 13px;
			border-radius: 20px;
		}

		.novo-right-buttons {
			gap: 8px;
		}
	}


	@media (max-width: 768px) {
		/* Header Mobile Simplificado */
		.novo-top-header {
			padding: 20px 20px !important;
			flex-direction: row !important;
			justify-content: space-between !important;
			align-items: center !important;
			gap: 0 !important;
		}

		.novo-logo-container {
			gap: 0 !important;
			flex: 1;
		}

		/* Oculta elementos no mobile */
		.novo-logo-caamt-wrapper,
		.novo-social-icons,
		.novo-right-buttons {
			display: none !important;
		}

		.novo-logo-oab {
			height: 50px !important;
		}

		/* Menu Mobile Toggle */
		.novo-mobile-toggle {
			display: flex !important;
			background: transparent;
			border: 2px solid #2240ff;
			color: #2240ff;
		}

		.novo-mobile-toggle span {
			background: #2240ff;
		}

		/* Remove a onda rosa no mobile */
		.novo-pink-wave {
			display: none !important;
		}

		/* Menu Principal Mobile */
		.novo-main-nav {
			position: relative;
			min-height: auto;
			background: transparent;
		}

		.novo-nav-container {
			padding: 0;
		}

		.novo-nav-menu {
			display: none;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			background: #f4006e;
			z-index: 1000;
			flex-direction: column;
			box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		}

		.novo-nav-menu.active {
			display: flex;
		}

		.novo-nav-item {
			width: 100%;
			border-bottom: 1px solid rgba(255,255,255,0.1);
		}

		.novo-nav-item:last-child {
			border-bottom: none;
		}

		.novo-nav-item > a,
		.novo-nav-item > span {
			width: 100%;
			padding: 15px 20px !important;
			justify-content: space-between;
			background: transparent;
		}

		.novo-nav-item > span::before {
			content: none;
		}

		.novo-nav-item > span::after {
			content: '▼';
			font-size: 10px;
			transition: transform 0.3s;
			margin-left: auto;
		}

		.novo-nav-item.active > span::after {
			transform: rotate(180deg);
		}

		/* Dropdown de primeiro nível */
		.novo-dropdown-menu {
			position: static !important;
			background: rgba(255,255,255,0.1) !important;
			box-shadow: none !important;
			display: none;
			width: 100%;
			padding: 0;
		}

		.novo-nav-item.active > .novo-dropdown-menu {
			display: block;
		}

		.novo-dropdown-menu li {
			position: relative;
			border-bottom: 1px solid rgba(255,255,255,0.05);
		}

		.novo-dropdown-menu li:last-child {
			border-bottom: none;
		}

		.novo-dropdown-menu > li > a,
		.novo-dropdown-menu > li > span {
			color: white !important;
			padding: 12px 20px 12px 40px !important;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.novo-dropdown-menu > li > a:hover,
		.novo-dropdown-menu > li > span:hover {
			background: rgba(255,255,255,0.1) !important;
			color: white !important;
		}

		/* Submenu de segundo nível */
		.novo-dropdown-menu li.has-submenu > span::after {
			content: '▼';
			font-size: 10px;
			transition: transform 0.3s;
			margin-left: auto;
		}

		.novo-dropdown-menu li.has-submenu.active > span::after {
			transform: rotate(180deg);
		}

		.novo-dropdown-menu .novo-sub-dropdown-menu {
			display: none;
			background: rgba(0,0,0,0.1);
			padding: 0;
			list-style: none;
		}

		.novo-dropdown-menu li.has-submenu.active > .novo-sub-dropdown-menu {
			display: block;
		}

		.novo-sub-dropdown-menu li {
			border-bottom: 1px solid rgba(255,255,255,0.05);
		}

		.novo-sub-dropdown-menu li:last-child {
			border-bottom: none;
		}

		.novo-sub-dropdown-menu a {
			color: white !important;
			padding: 10px 20px 10px 60px !important;
			display: block;
		}

		.novo-sub-dropdown-menu a:hover {
			background: rgba(255,255,255,0.1) !important;
			color: white !important;
		}

		/* Responsivo para dropdowns dos botões */
		.novo-btn-dropdown {
			width: 100%;
		}
		
		.novo-dropdown-content {
			position: static;
			width: 100%;
			margin-top: 5px;
			box-shadow: none;
			border: 1px solid #e5e7eb;
		}
	}


	/* ===== ESTILOS DO NOVO RODAPÉ ===== */
	.footer-wave-container {
		position: relative;
		background: white;
		overflow: hidden;
	}

	.footer-wave-svg {
		width: 100%;
		height: 354px;
		display: block;
	}

	.footer-rounded-bg {
		width: 100%;
		height: 96px;
		margin-top: -50px;
	}

	.footer-content {
		color: #2240ff;
		padding: 0 0 60px;
		margin-top: -200px;
		position: relative;
	}

	.footer-grid {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 50px;
		display: grid;
		grid-template-columns: 2fr 1fr 1fr 1fr;
		gap: 100px;
	}

	.footer-brand-section {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.footer-logo-img {
		height: 60px;
		width: auto;
	}

	.footer-description {
		font-size: 14px;
		line-height: 1.6;
		margin: 0;
		opacity: 0.95;
	}

	.footer-info-item {
		margin-bottom: 16px;
	}

	.footer-info-label {
		font-weight: 600;
		margin-bottom: 4px;
		font-size: 14px;
	}

	.footer-info-text {
		font-size: 14px;
		opacity: 0.9;
	}

	.footer-social-icons {
		display: flex;
		gap: 16px;
	}

	.footer-social-link {
		width: 40px;
		height: 40px;
		background: #2240ff;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		text-decoration: none;
		transition: all 0.3s;
		font-size: 18px;
	}

	.footer-social-link:hover {
		background: #1a33cc;
		transform: translateY(-2px);
		color: white;
		text-decoration: none;
	}

	.footer-column h3 {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 16px;
		color: #2240ff;
	}

	.footer-links {
		list-style: none;
		padding: 0;
		margin: 0;
		color: #2240ff;
	}

	.footer-links li {
		margin-bottom: 8px;
	}

	.footer-links a {
		color: #2240ff;
		text-decoration: none;
		font-size: 14px;
		transition: all 0.3s;
		display: inline-block;
	}

	.footer-links a:hover {
		color: #2240ff;
		transform: translateX(4px);
		text-decoration: none;
	}

	.footer-contact-section {
		max-width: 1200px;
		margin: 0 auto;
		padding: 48px 50px 0;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.footer-contact-item {
		display: flex;
		gap: 12px;
		align-items: flex-start;
	}

	.footer-contact-icon {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
		margin-top: 4px;
	}

	.footer-contact-content {
		flex: 1;
	}

	.footer-contact-title {
		font-weight: 600;
		font-size: 14px;
		margin-bottom: 4px;
		color: #2240ff;
	}

	.footer-contact-text {
		font-size: 14px;
		line-height: 1.6;
		opacity: 0.9;
		margin: 0;
	}

	.footer-copyright {
		max-width: 1200px;
		margin: 0 auto;
		padding: 32px 50px 0;
		text-align: center;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		margin-top: 48px;
	}

	.footer-copyright p {
		font-size: 14px;
		opacity: 0.9;
		margin: 0;
	}

	/* Responsividade do Rodapé */
	
	@media (max-width: 1300px) {
		.footer-grid {
			max-width: 990px;
			margin: 0 auto;
			padding: 0 50px;
			display: grid;
			grid-template-columns: 2fr 1fr 1fr 1fr;
			gap: 5%;
		}
		.footer-contact-section{
			max-width: 1000px;
			padding: 48px 35px 0;

		}
		.footer-copyright {
			max-width: 1000px;
			padding: 32px 35px 0;
			margin-top: 35px;
		}
		
	}

	/* Ajustes adicionais para telas menores */
	@media (max-width: 1100px) {
		.footer-grid {
        max-width: 800px;
        gap: 1%;
		}
		.footer-contact-section{
			max-width: 800px;
			padding: 48px 35px 0;

		}
		.footer-copyright {
			max-width: 800px;
			padding: 32px 35px 0;
			margin-top: 35px;
		}
	}
	
	@media (max-width: 1024px) {
		.footer-grid {
			grid-template-columns: 1fr 1fr 1fr 1fr;
			padding: 0 30px;
		}
		.footer-logo-img {
			height: 60px;
		}
		.novo-btn {
			padding: 10px 15px;
		}

		.footer-contact-section {
			padding: 48px 30px 0;
		}

		.footer-copyright {
			padding: 32px 30px 0;
		}
	}

	@media (max-width: 800px) {
		.footer-wave-svg {
			display: none;
		}

		.footer-content {
			margin-top: 0;
		}

		.footer-rounded-bg {
			margin-top: 0;
            height: 20px
		}

		.footer-grid {
			grid-template-columns: 1fr;
            padding:0px;
			gap: 40px;
            margin-right: 50px;
            margin-left: 50px;
		}

		.footer-contact-section {
			grid-template-columns: 1fr;
			padding: 40px 20px 0;
			gap: 24px;
		}

		.footer-copyright {
			padding: 32px 20px 0;
		}

		.footer-brand-section {
			text-align: center;
			align-items: center;
		}

		.footer-column {
			text-align: center;
		}

		.footer-links a:hover {
			transform: none;
		}

		.footer-contact-item {
			flex-direction: column;
			align-items: center;
			text-align: center;
		}
	}