body {
	font-family: Arial, sans-serif;
	margin: 0;
	color: #020c45;
	background-color:#f7eee8; /* Default background */
}

/* --- Header --- */
header {
    background-color: #020c45;
    padding: 15px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation (The Centering Logic) --- */
header nav ul {
    display: flex;
    align-items: center;     /* Aligns text and logo vertically */
	justify-content: center;
    gap: 50px;               /* Space between items */
    list-style: none;
    margin: 0px;
    padding: 0;
}

/* --- Logo Styling (Inside the li) --- */
.logo img {
    max-width: 150px !important;
    display: block; /* Prevents tiny gap at the bottom */
    cursor: pointer;
}

/* --- Link Styling --- */
.nav-link {
    text-decoration: none;
    color: #ba8d4f;
    font-size: 18px;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f7eee8; 
}

/* Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #bfa071; 
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}


/* --- Section Text --- */
.section-title {
    font-size: 50px;
    color: #020c45;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.section-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- hero Section --- */
.hero-banner {
	position: relative;
	width: 100%;
	height: 80vh; 
	display: flex;
	align-items: center; /* Centers text vertically */
	justify-content: center; /* Centers text horizontally */
	overflow: hidden;
	background-color: #000; 
  }
  
  .hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; 
	z-index: 1; 
  }
  
  .hero-overlay {
	position: relative; 
	z-index: 2; 
	text-align: center;
	color: #f7eee8;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-family: 'Bebas Neue', sans-serif;
	animation: slideLeft 1.5s ease-out forwards;
}

@keyframes slideLeft {
  from {
    transform: translateX(-100%); /* Começa fora da tela à esquerda */
    opacity: 0;
  }
  to {
    transform: translateX(0);    /* Termina na posição original */
    opacity: 1;
  }
}
  
  .impactful-phrase {
	font-size: 50px;
	font-weight: bold;
	text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  }

/* --- Impact Section --- */
.impact-section {
	background-color: #f7eee8;
	padding: 50px 0;
}

.impact-section .grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 200px;
	align-items: center;
	
}

.foto-box {
	text-align: center;
	border-radius: 10px;
}

.foto img {
    width: 100%  !important;   
    max-width: 500px !important;
    border-radius: 100%;
    display: block;    
}

.impact-section .buttons {
	display: flex;
	gap: 30px;
}

.btn{
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: solid;
	margin-top: 20px;
	display: inline-block;
	padding: 15px 20px;
	background-color:#ba8d4f;
	color:#f7eee8; 
	font-weight: bold;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.3s;
	width: 250px;
}

.btn:hover {
	background-color:#020c45;
	color:#ba8d4f;
}
/* --- Approach Section --- */
.approach-section {
	padding: 50px;
	margin-bottom: 40px;
}



.approach-section .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.card {
	background-color:#f7eee8; 
	color: #020c45;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-top: 70px;
}

.card-image {
	height: 150px;
	background-size: cover;
	background-position: center;
}

.card:nth-child(1) .card-image { background-image: url('placeholder.jpg'); } /* Placeholder */
.card:nth-child(2) .card-image { background-image: url('placeholder.jpg'); } /* Placeholder */
.card:nth-child(3) .card-image { background-image: url('placeholder.jpg'); } /* Placeholder */

.card-content {
	padding: 20px;
}

.card-title {
	font-weight: bold;
	margin-bottom: 10px;
}

.card-text {
	font-size: 14px;
	margin-bottom: 15px;
}

.card-action {
	font-weight: bold;
	color: #020c45;
}

/* --- Marquee Section --- */
.marquee-section {
    background-color: #f7eee8;
    padding: 60px 0; 
    overflow: hidden;
	margin-left: 150px;
	
}

.s-marquee-svg {
    width: 100%;
    height: auto;
	
	
}

.marquee-text {
    fill: #020c45; 
    font-size: 35px; 
    font-weight: bold; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: sans-serif;
}



/* --- Recent Posts --- */
.gold-section{
	background-color: #020c45;
	padding: 50px 0 100px 0; /* Extra bottom padding for the V space */
    
    /* The V-Shape Logic */
	clip-path: polygon(0 10%, 50% 0, 100% 10%, 100% 100%, 0 100%);
	color:  #f7eee8;

}

.recent-posts{
	margin-top: 200px;
	border-bottom: double 4px #020c45;
}

.recent-posts .container {
	position: relative;
}

.recentposts-title {

	color: #f7eee8;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	margin-top: 100px;
	letter-spacing: 2px;
}

/* Grid Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Styling */
.card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background-color: #d1e0d0; /* Soft sage placeholder */
    background-image: linear-gradient(135deg, #d1e0d0 25%, #c5d6c4 100%);
}

.card-content {
    padding: 30px;
    color: #333;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.cta {
    text-decoration: none;
    color: #bfa071;
    font-weight: bold;
    font-size: 0.95rem;
    display: inline-block;
}

/* See More Button */

.see-more{
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: solid;
	margin-top: 20px;
	display: inline-block;
	padding: 15px 20px;
	background-color:#ba8d4f;
	color: #f7eee8;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.3s;
	width: 200px;
	margin-bottom: 70px;
}

.see-more:hover {
	background-color: #f7eee8;
	color:#020c45;
}
/* --- Review Section --- */


.review-section {
	background-color: #f7eee8; 
	padding: 50px 0;
	margin-top: 30px;
	margin-bottom: 130px;
}

.review-card {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	max-width: 800px;
	margin: 15px auto;
	display: flex;
	gap: 20px;
    flex: 1; 
    box-shadow: 0 4px 15px #020c45;
}


/* 1. The Wrapper: Forces everything into a horizontal row */
.review-flex-container {
    display: flex;
    align-items: center;    /* Vertically centers arrows with the card */
    justify-content: center; /* Horizontally centers the whole group */
    gap: 40px;               /* Space between arrows and card */
    width: 100%;
    margin: 0 auto;
}

/* 2. The Arrows: Cleaned up and sized */
.arrow-btn {
    background: none;
    border: none;
    font-size: 40px;
    color: #bfa071; 
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0; /* Prevents arrows from getting squashed */
}

.arrow-btn:hover {
    transform: scale(1.2);
    color: #020c45;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #1a2a44; /* Dark blue/black from your screenshot */
    margin-bottom: 2px;
}

.user-handle {
    font-size: 14px;
    color: #888;
}

.review-body {
    display: flex;
    gap: 10px;
}

.review-quote-icon {
    font-size: 40px;
    color: #eee;
    line-height: 1;
}

.review-text {
    font-style: italic;
    color: #020c45;
    line-height: 1.6;
    margin: 0;
}


/* --- Footer --- */

footer {
	margin-top: 20px;
    background-color: #020c45;
    color: #fff;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    position: relative;
    text-decoration: none;
    font-size: 18px;
    padding-bottom: 5px; 
    display: inline-block;
    line-height: 1;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #ba8d4f;
}

/* The Underline (matches the header) */
.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #bfa071;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.social-link:hover{
	color: #f7eee8; 
}

.social-link:hover::after {
    width: 100%;
}

.container img{
	max-width: 230px;
}

.copyright{
	text-align: center;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin-top: 50px;
	border-top: double 4px #bfa071;

}