/* EM Marcenaria - Estilos Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Ajuste de fonte para telas muito pequenas */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
  background: #000000;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #555555;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

@media (min-width: 768px) {
  .header-container {
    padding: 0 1rem;
    height: 80px;
  }
}

.logo img {
  width: 80px;
  height: 50px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo img {
    width: 120px;
    height: 75px;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .nav-link {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 192px;
  background: #292D30;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 0.875rem;
  text-align: center;
  border-bottom: 1px solid #4b5563;
  transition: background 0.3s;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: #2788B1;
}

/* Social Icons */
.social-icons {
  display: none;
}

@media (min-width: 992px) {
  .social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .social-icons {
    gap: 1rem;
  }
}

.social-icons a {
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .social-icons img {
    width: 30px;
    height: 30px;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #444444;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.mobile-submenu {
  background: #292D30;
  padding-left: 1rem;
}

.mobile-submenu a:hover {
  background: #2788B1;
}

.mobile-social {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #4b5563;
}

.mobile-social img {
  width: 24px;
  height: 24px;
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
  background: #6b6b6b;
  margin-top: 60px;
}

@media (min-width: 480px) {
  .hero-carousel {
    height: 60vh;
    min-height: 400px;
  }
}

@media (min-width: 768px) {
  .hero-carousel {
    height: 75vh;
    min-height: 500px;
    margin-top: 80px;
  }
}

@media (min-width: 1024px) {
  .hero-carousel {
    height: 85vh;
    min-height: 600px;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .carousel-btn {
    width: 48px;
    height: 48px;
  }
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.carousel-btn.prev {
  left: 0.5rem;
}

.carousel-btn.next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .carousel-btn.prev {
    left: 1rem;
  }
  .carousel-btn.next {
    right: 1rem;
  }
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  color: white;
}

@media (min-width: 768px) {
  .carousel-btn svg {
    width: 24px;
    height: 24px;
  }
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* ========== NOS SECTION ========== */
.nos-section {
  background: #4a4a4a;
  padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
  .nos-section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nos-section {
    padding: 5rem 1.5rem;
  }
}

.nos-container {
  max-width: 1280px;
  margin: 0 auto;
}

.nos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .nos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.nos-text {
  text-align: justify;
}

.nos-text p {
  font-size: 1rem;
  color: white;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .nos-text p {
    font-size: 1.125rem;
  }
}

.nos-title {
  font-size: 2.25rem;
  font-weight: 700;
  font-style: normal;
}

@media (min-width: 480px) {
  .nos-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 768px) {
  .nos-title {
    font-size: 3.75rem;
  }
}

.nos-image {
  position: relative;
  width: 100%;
  height: 200px;
}

@media (min-width: 480px) {
  .nos-image {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .nos-image {
    height: 288px;
  }
}

.nos-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nos-paragraph {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.nos-paragraph p {
  font-size: 0.95rem;
  color: white;
  line-height: 1.75;
  font-style: italic;
}

@media (min-width: 480px) {
  .nos-paragraph p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .nos-paragraph p {
    font-size: 1.25rem;
  }
}

.nos-button {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .nos-button {
    justify-content: flex-end;
    margin-top: 2rem;
  }
}

.nos-button a {
  background: white;
  color: black;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .nos-button a {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.nos-button a:hover {
  background: #e5e5e5;
}

/* ========== DIVIDER ========== */
.divider {
  width: 100%;
  height: 2px;
  background: #6b7280;
}

/* ========== DIFERENCIAIS ========== */
.diferenciais-header {
  background: #555555;
  padding: 0.75rem 0;
}

@media (min-width: 768px) {
  .diferenciais-header {
    padding: 1rem 0;
  }
}

.diferenciais-header h2 {
  font-size: 0.95rem;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media (min-width: 768px) {
  .diferenciais-header h2 {
    font-size: 1.25rem;
  }
}

.diferenciais-content {
  background: #000000;
  padding: 1.5rem 0.75rem;
}

@media (min-width: 768px) {
  .diferenciais-content {
    padding: 2.5rem 1rem;
  }
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .diferenciais-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
  }
}

.diferencial-item {
  text-align: center;
  padding: 0 0.5rem;
  flex: 1;
}

@media (min-width: 768px) {
  .diferencial-item {
    padding: 0 1.5rem;
  }
}

.diferencial-item h3 {
  color: #2788B1;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .diferencial-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.diferencial-item p {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .diferencial-item p {
    font-size: 0.875rem;
    line-height: 1.625;
  }
}

.diferencial-divider {
  display: none;
}

@media (min-width: 768px) {
  .diferencial-divider {
    display: block;
    width: 1px;
    background: #6b7280;
    align-self: stretch;
  }
}

/* ========== PORTFOLIO ========== */
.portfolio-section {
  background: #4a4a4a;
  padding: 2.5rem 0.75rem;
}

@media (min-width: 768px) {
  .portfolio-section {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-section {
    padding: 5rem 1rem;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.375rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio-item {
    border-radius: 0.5rem;
  }
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.portfolio-overlay h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .portfolio-overlay h3 {
    font-size: 1.5rem;
  }
}

/* ========== PERSONALIZACAO ========== */
.personalizacao-section {
  background: #000000;
  padding: 2.5rem 0.75rem;
}

@media (min-width: 768px) {
  .personalizacao-section {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .personalizacao-section {
    padding: 5rem 1rem;
  }
}

.personalizacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .personalizacao-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 0.375rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .video-container {
    border-radius: 0.5rem;
  }
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.personalizacao-text {
  text-align: center;
}

@media (min-width: 768px) {
  .personalizacao-text {
    text-align: left;
  }
}

.personalizacao-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00bcd4;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .personalizacao-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .personalizacao-text h2 {
    font-size: 2.25rem;
  }
}

.personalizacao-text p {
  color: #d1d5db;
  line-height: 1.625;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .personalizacao-text p {
    font-size: 1rem;
  }
}

/* ========== PARCEIROS ========== */
.parceiros-header {
  background: #555555;
  padding: 0.75rem 0;
}

@media (min-width: 768px) {
  .parceiros-header {
    padding: 1rem 0;
  }
}

.parceiros-header h2 {
  font-size: 0.95rem;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .parceiros-header h2 {
    font-size: 1.25rem;
  }
}

.parceiros-content {
  background: #6b6b6b;
  padding: 1.5rem 0.5rem;
}

@media (min-width: 768px) {
  .parceiros-content {
    padding: 3rem 1rem;
  }
}

.parceiros-carousel {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .parceiros-carousel {
    padding: 0;
  }
}

.parceiros-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .parceiros-track {
    gap: 2rem;
  }
}

.parceiro-item {
  flex: 0 0 45%;
  min-width: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 480px) {
  .parceiro-item {
    flex: 0 0 40%;
    height: 80px;
  }
}

@media (min-width: 768px) {
  .parceiro-item {
    flex: 0 0 33.333%;
    height: 96px;
  }
}

.parceiro-item img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .parceiro-item img {
    max-width: 150px;
    max-height: 80px;
  }
}

.parceiros-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .parceiros-btn {
    width: 40px;
    height: 40px;
  }
}

.parceiros-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.parceiros-btn.prev {
  left: 0;
}

.parceiros-btn.next {
  right: 0;
}

@media (min-width: 768px) {
  .parceiros-btn.prev {
    left: -1rem;
  }
  .parceiros-btn.next {
    right: -1rem;
  }
}

.parceiros-btn svg {
  width: 16px;
  height: 16px;
  color: white;
}

@media (min-width: 768px) {
  .parceiros-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ========== MEIO AMBIENTE ========== */
.meioambiente-header {
  background: #555555;
  padding: 0.75rem 0;
}

@media (min-width: 768px) {
  .meioambiente-header {
    padding: 1rem 0;
  }
}

.meioambiente-header h2 {
  font-size: 0.8rem;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0 0.5rem;
}

@media (min-width: 480px) {
  .meioambiente-header h2 {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) {
  .meioambiente-header h2 {
    font-size: 1.25rem;
  }
}

.meioambiente-content {
  background: #000000;
  padding: 1rem 0.5rem;
}

@media (min-width: 768px) {
  .meioambiente-content {
    padding: 1.5rem 1rem;
  }
}

.meioambiente-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.meioambiente-inner p {
  font-size: 0.8rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

@media (min-width: 480px) {
  .meioambiente-inner p {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .meioambiente-inner p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.certificacoes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .certificacoes {
    justify-content: space-between;
    gap: 1rem;
  }
}

.certificacao-item {
  width: 18%;
  min-width: 55px;
  height: 55px;
  position: relative;
}

@media (min-width: 480px) {
  .certificacao-item {
    min-width: 70px;
    height: 70px;
  }
}

@media (min-width: 768px) {
  .certificacao-item {
    min-width: 80px;
    height: 96px;
  }
}

.certificacao-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========== CONTATO (sem formulário) ========== */
.contato-section {
  background: #292D30;
  padding: 2.5rem 0.75rem;
}

@media (min-width: 768px) {
  .contato-section {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contato-section {
    padding: 5rem 1rem;
  }
}

.contato-container {
  max-width: 1152px;
  margin: 0 auto;
}

.contato-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00bcd4;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contato-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .contato-title {
    font-size: 2.25rem;
    margin-bottom: 4rem;
  }
}

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

@media (min-width: 768px) {
  .contato-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.contato-col {
  text-align: center;
}

.contato-col h3 {
  color: #00bcd4;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .contato-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.contato-col p {
  color: white;
  margin: 0.4rem 0;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .contato-col p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
}

.contato-col a {
  color: white;
  transition: color 0.3s;
}

.contato-col a:hover {
  color: #00bcd4;
}

.contato-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .contato-social {
    gap: 0.75rem;
  }
}

.contato-social a {
  background: #00bcd4;
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .contato-social a {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
  }
}

.contato-social a:hover {
  background: #00a5bd;
  color: white;
}

/* ========== FOOTER ========== */
.footer {
  background: #2a2a2a;
  padding: 2rem 1rem;
}

.footer p {
  color: #9ca3af;
  font-size: 0.875rem;
  text-align: center;
}

/* ========== GALLERY PAGES ========== */
.gallery-page {
  background: #6B6C6C;
  min-height: 100vh;
  padding-top: 60px;
}

@media (min-width: 768px) {
  .gallery-page {
    padding-top: 80px;
  }
}

.gallery-header {
  padding: 1.5rem 0.75rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .gallery-header {
    padding: 3rem 1rem 2rem;
  }
}

.gallery-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .gallery-header h1 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
  padding: 0 0.375rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .gallery-grid {
    gap: 0.5rem;
    padding: 0 0.5rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 0.75rem 3rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 1rem 3rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.25rem;
}

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

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

/* ========== NOSSA EMPRESA ========== */
.empresa-page {
  background: #605F5F;
  min-height: 100vh;
  padding-top: 60px;
}

@media (min-width: 768px) {
  .empresa-page {
    padding-top: 80px;
  }
}

.empresa-intro {
  background: #605F5F;
  padding: 2rem 0.75rem;
}

@media (min-width: 768px) {
  .empresa-intro {
    padding: 3rem 1rem;
  }
}

@media (min-width: 1024px) {
  .empresa-intro {
    padding: 4rem 1rem;
  }
}

.empresa-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1152px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .empresa-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.empresa-intro-text p {
  color: white;
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .empresa-intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.empresa-intro-image {
  position: relative;
  height: 200px;
}

@media (min-width: 480px) {
  .empresa-intro-image {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .empresa-intro-image {
    height: 300px;
  }
}

.empresa-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eficiencia-header {
  background: #555555;
  padding: 0.75rem 0;
}

@media (min-width: 768px) {
  .eficiencia-header {
    padding: 1rem 0;
  }
}

.eficiencia-header h2 {
  font-size: 1rem;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .eficiencia-header h2 {
    font-size: 1.25rem;
  }
}

.eficiencia-content {
  background: #292D30;
  padding: 1.5rem 0.5rem;
}

@media (min-width: 768px) {
  .eficiencia-content {
    padding: 2rem 1rem;
  }
}

.eficiencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .eficiencia-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.eficiencia-item {
  text-align: center;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .eficiencia-item {
    padding: 0 1rem;
  }
}

.eficiencia-item h3 {
  color: #2788B1;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .eficiencia-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.eficiencia-item p {
  color: #d1d5db;
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .eficiencia-item p {
    font-size: 0.875rem;
    line-height: 1.625;
  }
}

.video-section {
  background: #6B6C6C;
  padding: 2rem 0.75rem;
}

@media (min-width: 768px) {
  .video-section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 1024px) {
  .video-section {
    padding: 4rem 1rem;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1152px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.video-text p {
  color: white;
  line-height: 1.75;
  text-align: justify;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .video-text p {
    font-size: 1rem;
  }
}

.certificado-bar {
  background: #000000;
  padding: 1rem 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .certificado-bar {
    padding: 1.5rem 1rem;
  }
}

.certificado-bar a {
  color: #00bcd4;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .certificado-bar a {
    font-size: 1rem;
  }
}

.certificado-bar a:hover {
  color: #00e5ff;
}

.sonho-section {
  background: #000000;
  padding: 2rem 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .sonho-section {
    padding: 3rem 1rem;
  }
}

.sonho-section p {
  color: white;
  font-size: 1rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sonho-section p {
    font-size: 1.25rem;
  }
}
