
:root {
  --navy: #0A2463;
  --navy-light: #1E3A8A;
  --navy-dark: #041840;
  --contrast-color: #5bb0f7;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --gray-dark: #4B5563;
  --white: #FFFFFF;
  --max-width: 1400px;
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--gray-dark);
}

.container {
  width: 90%;
  /* max-width: var(--max-width); */
  margin: 0 auto;
  
}

.blue-bg
{
  background-color: var(--navy);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}



.section-header.dark
{
  color: var(--white);
}

.section-header.dark h2
{
 
}


/* Buttons */
.primary-button, .secondary-button, .submit-button, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-size: 1rem;
}



.primary-button, .submit-button, .cta-button {
  background-color: var(--gray-light);
  color: var(--navy);
}

.primary-button:hover, .submit-button:hover, .cta-button:hover {
  border: 1px solid var(--navy);
}

.secondary-button {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.2rem;
  border-bottom: 1px solid var(--navy-dark);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo
{
  width: 18%;
}
.nav-logo img {
  width: 100%;
  height: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  width: 70%;
  margin-bottom: 5%;
}

.logo  img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}



.nav-links a:hover {
  color: var(--gray);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(0deg, rgb(10 36 99) 0%, rgb(10 36 99 / 1%) 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 36, 99, 0.7);

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  
  animation: fadeIn 1s ease-out;
  display: flex
;
    justify-content: center;
    align-items: center;
}

.hero-text
{
  width: 50%;
}

.hero-logo
{
  width: 30%;
  margin: 5% auto;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-indicator svg {
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

/* About Section */
.about-business {
  position: relative;
  padding: 6rem 0;
  background-color: #f9f9f9;
  background: linear-gradient(180deg,rgba(11, 35, 98, 1) 0%, rgba(11, 35, 98, 0.3) 100%);

}

.about-business::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(images/about-bg.jpg);
  background-size: cover;
  background-position: center;
  /* opacity: 0.2; */
  z-index: -1;
  
}

.about-business .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-business .about-image
{
  height: 100%;

}

.about-business .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-business .about-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-business .about-info h2 span {
  color: var(--contrast-color);
}

.about-business .about-info .highlight {
  font-size: 1.2rem;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-business .about-info p {
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  color: var(--white);
  
}

.about-benefits {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.about-benefits li {
  margin-bottom: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--white)
}

.btn-primary {
  display: inline-block;
  background-color: var(--navy);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: var(--navy-dark);
}

.about-benefits li i {
  margin-right: 0.6rem;
  color: var(--navy); /* ou outra cor desejada */
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 360px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background-color: #000;
  transition: var(--transition);
  border: none;
}

.service-card .background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0));
  z-index: 1;
}

.service-card:hover .background {
  transform: scale(1.1);
}

.service-card-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.service-card h3 {
  font-size: var(--);
  color: var(--white);
  background-color: var(--navy);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 900;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.service-card a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--white);
  color: var(--navy);
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.service-card a:hover {
  background-color: var(--gray-light);
}


/* Contact Section */
.contact {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background-color: var(--navy);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.info-list {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.info-list h4 {

  color: var(--white);
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item a{
  text-decoration: none;
  color: var(--white);
  transition: 0.3s ease-in-out;
}

.info-item a:hover{
  
  color: var(--gray);
}


.info-item svg {
  fill: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social-link svg {
  fill: var(--white);
}

.social-link i {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

label {
  font-weight: 500;
  color: var(--gray-dark);
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  background-color: var(--white);
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
}

textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info {
  max-width: 400px;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer h3
{
  color: var(--white);
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gray);
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* services pages */
.banner
{
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start; /* Alinha à esquerda */

}

.service-content
{
  z-index: 2;
  margin-top: 30%;
  color: white;
  width: 60%;
  margin-left: 5%; /* Alinhamento à esquerda */
  padding: 0 5% 0 0

}

.service-content h2
{
  color: white;

}

.img-row {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  width: 50%;
}

.img-row img {
  flex: 1 1 45%;
  border-radius: 6px;
  max-width: 100%;
  height: auto;
}

.service-baner-image
{
  width: 33%;
  z-index: 1
}

.service-baner-image img
{
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.service-contet{
  margin-top: 5%;
  width: 60%;
  gap: 5%;
  text-align: justify;
  text-justify: inter-word;
}

.service-contet h1
{
  
  margin-bottom: 1rem;
}


/* Service page */
.why-import
{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}

.offset-top-image
{
  margin-top: -5vw;
}

.quote-box {
  background-color: #eef6ff;
  border-left: 4px solid #007BFF;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
}

.timeline-importacao {
  padding: 4rem 2rem;
  background-color: #f7f9fc;
  text-align: center;
}

.timeline-importacao h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #0a2463;
}

.timeline-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.timeline-step {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  width: 23%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.timeline-step i {
  font-size: 2rem;
  color: #0a2463;
  margin-bottom: 0.5rem;
}

.timeline-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0a2463;
}

.timeline-step p {
  font-size: 0.95rem;
  color: #333;
}

.quote-box {
  margin-top: 3rem;
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
  margin: 3rem auto;
  width: 80%;
}

.maquinas-agricolas .content
{
  color: var(--white);
}


.testimonial {
  background-color: #f9f9f9;
  border-left: 5px solid #28a745;
  padding: 20px;
  margin-top: 40px;
  border-radius: 4px;
}

.testimonial-author {
  font-weight: bold;
  margin-top: 10px;
  text-align: right;
}

.cta-box.highlight {
  background-color: #007BFF;
  color: white;
  border-left: none;
  padding: 30px;
}

.cta-box.highlight .btn {
  background-color: #ffffff;
  color: #007BFF;
}

.cta-box.highlight .btn:hover {
  background-color: #e6e6e6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }

  .about-info {
    text-align: left;
    padding: 0 1rem;
  }

  .about-info h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .about-info .highlight {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
  }

  .about-info p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .about-benefits {
    padding-left: 1rem;
  }

  .about-benefits li {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .about-benefits li i {
    font-size: 1.1rem;
    color: var(--navy);
  }

  .btn-primary {
    display: inline-block;
    margin-top: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-info {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    color: var(--white);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--navy);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-logo
  {
    width: 35%;
  }

  .hero-content
  {
    flex-direction: column-reverse;
  }

  .hero-text
  {
    width: 100%;
    text-align: center;
    margin-top: 0;
  }

  .hero-logo
  {
    width: 70%;
    margin: 5% auto;
  }

  .about-business .about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }

  .about-info {
    text-align: left;
    padding: 0 1rem;
    
  }

  .about-info h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .about-info .highlight {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
  }

  .about-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
  }

  .about-benefits {
    padding-left: 1rem;
  }

  .about-benefits li {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .about-benefits li i {
    font-size: 1.1rem;
    color: var(--navy);
  }

  .btn-primary {
    display: inline-block;
    margin-top: 1.5rem;
  }

  .button-group {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-info {
    grid-column: span 1;
  }
}


/* imporatacao page */
.maquinas-agricolas {
  padding: 60px 20px;
  color: white;
  background-color: #0a2463; /* Azul escuro institucional */
}

.maquinas-agricolas .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0;
   color: var(--navy);
  margin-bottom: 2rem;
}

.blue-bg .section-header h2 {
  color: var(--white);
}

.maquinas-agricolas .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.text-block {
  flex: 1 1 500px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  color: var(--white);
}

/* .img-row {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-row img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
} */

.benefits {
  margin-top: 40px;
  color: var(--white);
}

.benefits h3 {
  font-size: 1.4rem;
  margin-bottom: 5%;
  color: var(--white);
  text-align: center;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  padding-left: 1rem;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffae;
  font-weight: bold;
}

@media (max-width: 768px) {
  .checklist {
    grid-template-columns: 1fr;
  }
}

.cta-box {
  background-color: rgba(216, 216, 216, 0.1);
  padding: 30px;
  margin-top: 50px;
  border-left: 5px solid #00ffae;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
}

.cta-box p {
  font-size: 1.2rem;
  font-weight: 600;
}

.cta-box .btn {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 25px;
  background-color: #00ffae;
  color: #0a2463;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-box .btn:hover {
  background-color: #00e0a0;
}

@media (max-width: 768px) {
  .service-contet
  {
    width: 100%;
    margin-top: 0;
    padding: 0 5%;
  }

  .service-baner-image
  {
    display: none;
  }
  
  .timeline-step
  {
    width: auto;
  }
  .service-section .content
  {
    flex-direction: column;
  }

  .reverse .content {
    flex-direction: column-reverse !important;
  }
  
  .maquinas-agricolas .content {
    flex-direction: column;
  }

  .img-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .img-row img {
    max-width: 100%;
  }

  .cta-box {
    text-align: left;
  }
}

.silos-secadores {
  padding: 60px 20px;
  color: white;
  background-color: #0a2463;
}

.consultoria-comex {
  padding: 60px 20px;
  background-color: #f7f9fc;
  color: #333;
}
.consultoria-comex .cta-box p {
  color: #0a2463;
}

.service-section {
  padding: 60px 20px;

}

.service-section .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}



/* reverse */
.reverse {
  background-color: #f5f5f5; /* Fundo claro */
  color: #0a2463; /* Texto escuro */
}

.reverse .section-header h2,
.reverse .benefits h3,
.reverse .cta-box p {
  color: #0a2463;
}

.reverse .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex-direction: row-reverse;
}

.reverse .checklist {
  color: var(--navy);
}


.reverse .btn {
  background-color: #0a2463;
  color: white;
}

.reverse .btn:hover {
  background-color: #1b3680;
}

/* Inverte .img-row e .text-block */
.reverse .text-image-grid {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.reverse .text-block
{
  color: var(--navy);
}

.reverse .img-row,
.reverse .text-block {
  flex: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .reverse .text-image-grid {
    flex-direction: column;
  }
}

.diferenciais-luxo {
  background-color: #f7f7f7;
  padding: 5rem 2rem;
  color: #333;
}

.section-header.vertical {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.vertical h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-header.vertical .intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #555;
}

.features-vertical {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-item i {
  font-size: 2rem;
  color: #007bff;
  min-width: 32px;
  margin-top: 2px;
}

.feature-item p {
  font-size: 1.1rem;
  margin: 0;
}


