/* RESET E ESTILOS BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f8f8;
}

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

a {
  text-decoration: none;
  color: #ED1C24;
  transition: color 0.3s;
}

a:hover {
  color: #FFCC00;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  background-color: #ED1C24;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #FFCC00;
  color: #333;
  transform: translateY(-2px);
}

/* HEADER */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
}

.menu {
  display: flex;
}

.menu li {
  margin-left: 30px;
}

.menu li a {
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.menu li a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ED1C24;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.menu li a:hover:before {
  visibility: visible;
  width: 100%;
}

/* MENU DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  display: block;
  text-align: left;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #ED1C24;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn i {
  margin-left: 5px;
  font-size: 12px;
}

/* MENU TOGGLE (MOBILE) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* BANNER */
.banner {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.banner-content-background {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-bottom: 20px;
}

.banner-content-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  z-index: -1;
}

.banner-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* FEATURES */
.features {
  padding: 80px 0;
  background-color: #fff;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-item {
  flex: 0 0 calc(33.333% - 30px);
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item .icon {
  font-size: 2.5rem;
  color: #ED1C24;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-item p {
  color: #666;
}

/* ABOUT */
.about {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.about .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.about-content p {
  margin-bottom: 20px;
  color: #666;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* GALLERY */
.gallery {
  padding: 80px 0;
  background-color: #fff;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column p {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
}

.footer-column ul li a:hover {
  color: #FFCC00;
}

.footer-column i {
  margin-right: 10px;
  color: #ED1C24;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* PAGE HEADER */
.page-header {
  background-color: #ED1C24;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* SERVICES PAGE */
.services {
  padding: 60px 0;
  background-color: #fff;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
  flex: 0 0 80px;
  font-size: 50px;
  color: #ED1C24;
  text-align: center;
}

.service-content {
  flex: 1;
  padding-left: 30px;
}

.service-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.service-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.service-content ul li {
  margin-bottom: 8px;
  color: #555;
}

.service-content p {
  color: #555;
  margin-bottom: 15px;
}

/* CTA SECTION */
.cta {
  background-color: #FFCC00;
  padding: 60px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background-color: #333;
  color: #fff;
}

.cta .btn:hover {
  background-color: #ED1C24;
}

/* CONTACT PAGE */
.contact {
  padding: 60px 0;
  background-color: #fff;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2, .contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item .icon {
  flex: 0 0 50px;
  font-size: 24px;
  color: #ED1C24;
}

.info-item .text h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #333;
}

.info-item .text p {
  color: #666;
}

.map {
  margin-top: 40px;
}

.map h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-form form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* TERMS PAGES */
.terms {
  padding: 60px 0;
  background-color: #fff;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  margin-bottom: 40px;
  color: #888;
  font-style: italic;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.terms-section p, .terms-section ul {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.7;
}

.terms-section ul {
  list-style: disc;
  margin-left: 20px;
}

.terms-section ul li {
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .banner-content h1 {
    font-size: 3rem;
  }
  
  .banner-content h2 {
    font-size: 1.8rem;
  }
  
  .feature-item {
    flex: 0 0 calc(50% - 30px);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .menu.active {
    display: block;
  }
  
  .menu li {
    margin: 0;
    margin-bottom: 15px;
  }
  
  .menu li a {
    display: block;
    padding: 10px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content h2 {
    font-size: 1.5rem;
  }
  
  .about .container {
    flex-direction: column;
  }
  
  .feature-item {
    flex: 0 0 100%;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-icon {
    margin-bottom: 20px;
  }
  
  .service-content {
    padding-left: 0;
  }
  
  .contact .container {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    flex: 0 0 100%;
  }
  
  .terms-content {
    padding: 0 20px;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 50vh;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content h2 {
    font-size: 1.2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    flex: 0 0 100%;
  }
}
