:root {
	--hero-text: #ffffff;
	--title: #4a23e7;
	--subtitle: #cc3366;
	--paragraph: #31344e;
	--dark-div: #2f1548;
	--buttons: #ff4382;
	--svg-card-figures: #cc3366;
	--colored-pink-card-start: #ff4382;
	--colored-pink-card-end: #b62958;
	--colored-purple-card-start: #50227c;
	--colored-purple-card-end: #5626a6;
	--cases-background-start: #2f1548;
	--cases-background-end: #5626a6;
	--footer-background: #2f1548;
}

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

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--paragraph);
	background-color: #fff;
}

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

.container-quem-somos {
	margin-top: 60px;
}

/* NAVBAR */
header {
	padding: 10px 120px;
	background-color: #211247;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	text-align: center;
}

.navbar {
	padding: 1rem 0;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	justify-content: center;
}

.logo img {
	height: 30px;
}
.logo-footer img {
	height: 50px;
}

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

.nav-menu a {
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: color 0.3s;
}


.nav-menu a:hover {
	color: var(--subtitle);
}

.cta-button {
	background-color: var(--buttons);
	color: white;
	padding: 0.7rem 1.5rem;
	border-radius: 8px;
	transition: background-color 0.3s;
	font-weight: 600;
}

.cta-button a {
	color: white !important;
}

.cta-button:hover {
	background-color: #e03a75 !important;
	color: white !important;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 3px 0;
	transition: 0.3s;
}

/* HERO SECTION */
.hero {
	background: linear-gradient(
		135deg,
		var(--dark-div) 0%,
		var(--cases-background-end) 100%
	);
	background-image: url("../assets/images/bg-banner.png");
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--hero-text);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	width: 100%;
	max-width: 900px;
	padding: 0 20px;
}

.hero-text-top h1 {
	font-size: 3.5rem;
	margin-bottom: 2rem;
	font-weight: 700;
}

.hero-text-top h1 span {
	display: block;
	color: var(--subtitle);
}

.hero-center-space {
	height: 150px;
}

.hero-text-bottom p {
	font-size: 1.6rem;
	max-width: 700px;
	margin: 0 auto 2rem;
	opacity: 0.9;
}

.btn-primary {
	display: inline-block;
	background-color: var(--buttons);
	color: white;
	padding: 15px 35px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary:hover {
	background-color: #e03a75;
}

/* SECTIONS */
.section {
	padding: 50px 0;
}

.section-subtitle {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--subtitle);
	margin-bottom: 1rem;
	text-align: center;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1.5rem;
	color: var(--title);
}

.section-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	color: var(--paragraph) !important;
}

smetod {
	font-weight: bold;
	color: var(--title);
}

/* QUEM SOMOS */
.quem-somos {
	background-color: #f9f9f9;
}

.content-grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 0 160px;
	margin-bottom: 4rem;
}

.content-grid.reverse {
	direction: rtl;
}

.content-grid.reverse > * {
	direction: ltr;
}

.text-block p {
		color: var(--paragraph) !important;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 36px;
}

.placeholder-image {
	/* background-color: #eaeaea; */
	height: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 44px;
	/* color: var(--svg-card-figures); */
}

.placeholder-image img {
	height: 240px;
	border-radius: 44px;
}

.placeholder-image i {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.placeholder-image.small {
	height: 200px;
}

.placeholder-image.smalliv {
	height: 0;
}

.placeholder-image.small i {
	font-size: 3rem;
}

.placeholder-image.round {
	border-radius: 50%;
	width: 100px;
	height: 100px;
}

/* O QUE FAZEMOS */
.o-que-fazemos {
	text-align: center;
}

.cards-grid {
	margin-top: 4rem;
	display: grid;
	gap: 3rem;
	align-items: center;
	justify-content: center;
	justify-items: center;
	grid-template-columns: 1fr 1fr;
}

.card {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 2rem;
	align-items: center;
	margin-bottom: 1.5rem;
	background: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card.reverse {
	direction: rtl;
}

.card.reverse > * {
	direction: ltr;
}

.card-content h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: var(--title) !important;
    text-decoration: underline;
    text-align: left;
    text-underline-offset: 12px;
	text-decoration-thickness: 1px;
}

.card-content p {
	font-size: 1.1rem;
	color: var(--paragraph) !important;
	line-height: 1.7;
    text-align: justify;
}

.card-image .placeholder-image img {
    height: 131px;
	border-radius: 0 !important;
	align-items: end !important;
	justify-self: end !important;
}

/* COMO FAZEMOS */
.como-fazemos {
	background-color: #f9f9f9;
}

.link-como-fazemos {
	text-align: center;
}

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

.servico-card {
	background: white;
	padding: 2.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

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

.servico-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: white;
}

.pink-gradient {
	background: linear-gradient(
		135deg,
		var(--colored-pink-card-start) 0%,
		var(--colored-pink-card-end) 100%
	);
	color: white;
}

.purple-gradient {
	background: linear-gradient(
		135deg,
		var(--colored-purple-card-start) 0%,
		var(--colored-purple-card-end) 100%
	);
	color: white;
}

.divider {
	height: 2px;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 1.5rem 0;
}

.servico-features {
	list-style: none;
}

.servico-features li {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}

.servico-features i {
	margin-right: 10px;
}

/* FEEDBACKS */
.feedbacks {
	background: linear-gradient(
		135deg,
		var(--cases-background-start) 0%,
		var(--cases-background-end) 100%
	);
	color: white;
}

.feedbacks .section-title,
.feedbacks .section-subtitle,
.feedbacks .section-intro {
	color: white;
}

.feedback-container {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.feedback-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.feedback-content {
	background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 10px;
	backdrop-filter: blur(10px);
}

.client-logo {
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.client-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
}

.feedback-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin: 1.5rem 0;
}

.client-info {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.client-details h4 {
	font-size: 1.3rem;
	margin-bottom: 0.3rem;
}

.feedback-options {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.option {
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s;
	text-align: center;
}

.option:hover {
	background: rgba(255, 255, 255, 0.2);
}

.option.active {
	background: var(--buttons);
}

/* FAQ */
.faq {
	background-color: #f9f9f9;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
	padding: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-question h4 {
	margin: 0;
	color: var(--title);
	font-size: 1.2rem;
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--subtitle);
	transition: transform 0.3s;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	color: var(--paragraph) !important;
	transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
	padding: 0 1.5rem 1.5rem;
	max-height: 500px;
	color: var(--paragraph) !important;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.agendar {
	background: linear-gradient(
		135deg,
		#50227C  0%,
		#5626A6  100%
	);
}

/* FOOTER */
footer {
	background-color: var(--footer-background);
	color: white;
	padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section ul {
	list-style: none;
}

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

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

.footer-section a:hover {
	color: white;
}

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

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: background-color 0.3s;
}

.social-links a:hover {
	background-color: var(--buttons);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #cbd5e0;
	font-size: 0.9rem;
}
/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .feedback-logo {
        max-width: 120px;
    }
}
/* Tablets e dispositivos médios */
@media (max-width: 1024px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    .content-grid {
        padding: 0 60px;
        gap: 3rem;
    }

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

    .hero-text-bottom p {
        font-size: 1.4rem;
    }

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

    .card {
        grid-template-columns: 2fr 1fr;
        padding: 1.5rem;
    }

    .feedback-container {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablets pequenos */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

	.nav-menu a {
		color: var(--paragraph);
	}

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

    .hero {
        height: 80vh;
    }

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

    .hero-text-bottom p {
        font-size: 1.2rem;
    }

    .hero-center-space {
        height: 100px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

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

    .cards-grid {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }

    .card.reverse {
        direction: ltr;
    }

    .card-content h3 {
        text-align: center;
    }

    .card-content p {
        text-align: center;
    }

    .feedback-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feedback-options {
        flex-direction: row;
        justify-content: space-between;
    }

    .option {
        flex: 1;
        padding: 1rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Dispositivos móveis */
@media (max-width: 480px) {

	.card-image img {
		visibility: hidden;
	}
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .hero {
        height: 70vh;
    }

    .hero-text-top h1 {
        font-size: 2rem;
    }

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

    .hero-center-space {
        height: 80px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .content-grid {
        padding: 0 15px;
        gap: 1.5rem;
    }

    .text-block p {
		color: var(--paragraph) !important;
        font-size: 1rem;
        line-height: 1.6;
    }

    .placeholder-image {
        height: 200px;
    }

    .placeholder-image img {
        height: 200px;
    }

    .section {
        padding: 40px 0;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    .cards-grid {
        gap: 1rem;
    }

    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

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

    .feedback-content {
        padding: 1.5rem;
    }

    .feedback-text p {
        font-size: 1rem;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feedback-options {
        flex-direction: column;
    }

    .servico-card {
        padding: 1.5rem;
    }

    .servico-card h3 {
        font-size: 1.5rem;
    }

    .servico-features li {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
    .hero-text-top h1 {
        font-size: 1.8rem;
    }

    .hero-text-bottom p {
        font-size: 0.9rem;
    }

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

    .card {
        padding: 0.8rem;
    }

    .servico-card {
        padding: 1rem;
    }

    .feedback-content {
        padding: 1rem;
    }
}

/* Orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-center-space {
        height: 50px;
    }

    .nav-menu {
        top: 60px;
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .content-grid {
        padding: 0 200px;
    }
}

/* Impressão */
@media print {
    .navbar,
    .btn-primary,
    .feedback-options,
    .social-links {
        display: none;
    }

    .hero {
        background: none !important;
        color: black !important;
        height: auto;
    }

    .section {
        padding: 20px 0;
    }
}