@font-face {
  font-family: 'YourDesiredFontName';
  src: url('your-font-file.woff2') format('woff2'),
       url('your-font-file.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
}


body {
  padding-top: 0; /* Removed padding */
}


#app {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}


.floating-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #9B5412; /* Updated background color */
  border-radius: 0;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.floating-navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  width: auto;
}

.floating-navbar li {
  position: relative;
  padding: 0;
}

.floating-navbar a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 5px 0;
  display: block;
  transition: color 0.3s ease;
}


.floating-navbar li::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #DBB567; /* Changed hover bar color */
  border-radius: 1px;
  transition: width 0.3s ease;
}

.floating-navbar li:hover::after,
.floating-navbar li:active::after {
  width: 100%;
}

.floating-navbar a:hover,
.floating-navbar a:active {
  color: #dddddd;
}



.container {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  text-align: left;
}

.container-1 {

  background-image: url('banner.jpg');
  background-color: #455835;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  min-height: 80vh;
  padding: 0;
}

.container-1 .text-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container-1 .image-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;

}




.container-2 {
  /* Updated background for Contato section */
  background: linear-gradient(to bottom, #9B5412, #271505);
  color: #ffffff; /* Changed text color for contrast on dark background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4rem;
  min-height: auto; /* Ensure container grows with content */
}

/* Specific style for the Curso section to override container-2 background */
#curso {
  background: linear-gradient(to bottom, #FFFFFF, #D0AD66); /* Added gradient */
  background-image: none; /* Remove any potential background image */
  color: #213547; /* Change text color for contrast on white */
}

#curso h2 {
  color: #963F06; /* Set title color for #curso */
}


.container-2 .services-content {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  /* Content removed, adjust padding/margin if needed */
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 40px; /* Add space below cards */
}

.card {
  background-color: #963F06; /* Changed background color */
  border-radius: 0; /* Made square */
  border: 0; /* Removed border */
  padding: 0; /* Removed padding to allow image to go edge-to-edge */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center; /* Centralize content within the card */
  width: calc(25% - 20px);
  min-width: 200px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Content removed, adjust padding/min-height if needed to maintain size */
  min-height: auto; /* Allow height to adjust based on content */
  display: flex;
  flex-direction: column; /* Stack image and text vertically */
  justify-content: flex-start; /* Align content to the top */
  align-items: center;
  overflow: hidden; /* Hide parts of image if it exceeds bounds */
}

.card img {
  width: 100%; /* Make image full width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra space below image */
  margin-bottom: 10px; /* Add space between image and text */
}

.card p {
  font-size: 1em;
  margin: 0 10px 5px 10px; /* Add horizontal padding to text */
  text-align: center; /* Centralize the text */
}

.card p:last-child {
    margin-bottom: 10px; /* Add padding below the last paragraph */
}


.card:hover,
.card:active {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


/* Removed styles for card inner elements as content is removed */
/*
.card-icon {
  width: 1.5em;
  height: 1.5em;
  fill: #67D0B2;
  margin-bottom: 10px;
}

.card h3 {
  margin-top: 0;
  color: #67D0B2;
}

.card p {
  font-size: 1em;

}
*/

/* Divider Style */
.section-divider {
  width: 80%; /* Adjust width as needed */
  height: 2px; /* Adjust height as needed */
  margin: 40px auto; /* Center the divider and add vertical space */
  background: linear-gradient(to right, transparent, #9B5412, transparent); /* Fading effect */
}


/* Removed styles for .container-3 and its contents */


h1 {
  font-size: 3.2em;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Style for the smaller part of the title */
h1 .smaller-title-part {
  font-weight: normal; /* Make it normal weight */
  font-size: calc(100% - 5px); /* Make it 5px smaller than the parent h1 */
}


h2 {
  font-size: 2em;
  margin-bottom: 1rem;
  margin-top: 0;
}


h2.smaller-text {
  font-size: 1.4em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
}


p {
  font-size: 1.1em;
}


.cta-button {
  display: inline-block; /* Ensure it behaves like a button */
  margin-top: 2rem;
  padding: 15px 30px;
  border-radius: 25px; /* Made it more rounded */
  background: #963F06; /* Changed background color */
  color: #fff; /* Changed text color for contrast */
  text-decoration: none; /* Remove underline for anchor tag */
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjusted shadow */
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none; /* Remove default button border */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: Georgia, "Times New Roman", Times, serif; /* Added serif font */
}

.cta-button i {
  margin-left: 8px; /* Add space between text and icon */
  margin-right: 0; /* Remove margin-right if it was set */
}


.cta-button:hover {
  background-color: #7a3305; /* Slightly darker on hover */
  transform: translateY(-2px); /* Add slight lift on hover */
}

.cta-button:active {
  transform: translateY(0px); /* Press down effect */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Remove pseudo-elements if not needed for this style */
.cta-button::before,
.cta-button::after {
  display: none;
}


.logo, .card, .read-the-docs, button {


}

/* Removed Popup Styles */
/*
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-overlay.show {
  display: flex;
}

.popup {
  background-color: #9B5412;
  color: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  max-width: 80%;
  width: 400px;
  box-sizing: border-box;
}

.popup h2 {
  margin-top: 0;
  color: #F4E1A6;
}

.popup p {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.6;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
  line-height: 1;
}

.close-popup:hover {
  color: #F4E1A6;
}
*/

/* Expanding Bars Styles Removed */


/* New Expandable Sections Styles Removed */

/* Removed responsive adjustments for .nos-content */


/* Removed Social Icons Styles */


/* Removed Contact Navigation Links Styles */


/* Removed Contact Divider Style */
