/* FC Soluções - Premium Chalet Models */

@import url('./variables.css');
@import url('./fonts.css');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Neo Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--background);
  color: var(--primary-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Animation Classes */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 34, 56, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
  background: rgba(247, 127, 0, 0.1);
}

.has-submenu {
  position: relative;
}

.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.has-submenu > a i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.has-submenu:hover > a i {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(14, 34, 56, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: 1px solid rgba(14, 34, 56, 0.1);
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  margin: 0;
}

.submenu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0;
}

.submenu a:hover {
  background: rgba(247, 127, 0, 0.1);
  color: var(--accent);
  padding-left: 2rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-dark);
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8f1a 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(247, 127, 0, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(247, 127, 0, 0.4);
  background: linear-gradient(135deg, #ff8f1a 0%, var(--accent) 100%);
}

.btn.secondary {
  background: white;
  color: var(--primary-dark);
  border: 2px solid var(--accent);
  box-shadow: 0 4px 15px rgba(14, 34, 56, 0.1);
}

.btn.secondary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 34, 56, 0.85) 0%, rgba(247, 127, 0, 0.75) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-text h1 {
  font-size: 3.8rem;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.3rem;
  color: white;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Models Overview */
.models-overview {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--primary-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.model-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.model-preview:hover {
  transform: translateY(-5px);
}

.model-image {
  position: relative;
  height: 300px;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.model-preview:hover .model-image img {
  transform: scale(1.05);
}

.model-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 2rem;
  color: white;
}

.model-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.model-info p {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.model-info .price {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.75rem;
}

.model-info .view-gallery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.model-preview:hover .view-gallery {
  opacity: 1;
  transform: translateY(0);
}

.view-gallery i {
  font-size: 1rem;
}

.models-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav-model-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(14, 34, 56, 0.1);
  transition: all 0.3s ease;
}

.nav-model-btn:hover,
.nav-model-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Model Sections */
.model-section {
  padding: 5rem 0;
  position: relative;
}

.canastra-section {
  background: linear-gradient(135deg, #f9f0e7 0%, #ffffff 100%);
}

.ipanema-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.model-header {
  text-align: center;
  margin-bottom: 4rem;
}

.model-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.model-header h2 {
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.model-subtitle {
  font-size: 1.3rem;
  color: var(--primary-dark);
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Model Gallery */
.model-gallery {
  margin-bottom: 5rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h3 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.gallery-header p {
  color: var(--primary-dark);
  opacity: 0.7;
  font-size: 1.1rem;
}

/* Model Specifications */
.model-specs {
  margin-bottom: 5rem;
}

.specs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.specs-info h3 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(14, 34, 56, 0.08);
  transition: transform 0.2s ease;
}

.spec-item:hover {
  transform: translateY(-2px);
}

.spec-item i {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.spec-item h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.spec-item p {
  color: var(--primary-dark);
  opacity: 0.7;
  font-size: 0.95rem;
}

.specs-image {
  position: relative;
}

.specs-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(14, 34, 56, 0.15);
}

.image-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* Model Pricing */
.model-pricing {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border-radius: 28px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 
    0 20px 60px rgba(14, 34, 56, 0.15),
    0 4px 12px rgba(14, 34, 56, 0.08);
  border: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, #ff8f1a 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.pricing-header p {
  color: var(--primary-dark);
  opacity: 0.7;
  font-size: 1.1rem;
}

.pricing-value {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(247, 127, 0, 0.05) 0%, rgba(247, 127, 0, 0.1) 100%);
  border-radius: 20px;
  margin-bottom: 2rem;
}

.price-label {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
  opacity: 0.6;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.price-amount {
  display: block;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--accent);
  line-height: 1;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(247, 127, 0, 0.03);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.pricing-features li:hover {
  background: rgba(247, 127, 0, 0.08);
  transform: translateX(5px);
}

.pricing-features i {
  color: #22c55e;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.whatsapp-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
  color: white;
  font-size: 1.1rem;
  padding: 1.2rem 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #1ea952 0%, #25D366 100%);
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

/* Contact Section */
.contato {
  padding: 5rem 0;
  background: var(--primary-dark);
  position: relative;
}

.contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20h40M20 0v40" stroke="%23f77f00" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23lines)"/></svg>');
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.contact-header h2 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: bold;
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--accent);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(247, 127, 0, 0.2);
}

.info-card i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.info-card h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-card p {
  color: var(--accent);
  margin: 0;
}

.contato-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(14, 34, 56, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(247, 127, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-section ul li i {
  color: var(--accent);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Navigation */
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-text h2 {
    font-size: 1.3rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Models Overview */
  .modelos-overview {
    padding: 3rem 0;
  }
  
  .modelos-overview h2 {
    font-size: 2rem;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Model Sections */
  .modelo-section,
  .model-section {
    padding: 3rem 0;
  }
  
  .modelo-header h2,
  .model-header h2 {
    font-size: 2rem;
  }
  
  .modelo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .model-specs .specs-content {
    grid-template-columns: 1fr;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Contact */
  .contato {
    padding: 3rem 0;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contato-form {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .modelo-header h2 {
    font-size: 1.6rem;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .contato-form {
    padding: 1rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.pacotes-flex {
  border-top: 1px solid var(--neutral);

  h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--primary-dark);
  }

  ul {
    list-style: none;
    padding: 0;

    li {
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
      color: var(--primary-dark);
    }
  }
}


.contato {
  background-color: var(--primary-dark);
  padding: 4rem 2rem;
}

.contato h1 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 2rem;
}

.contato-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Neo Sans', sans-serif;
  background-color: white;
  color: var(--accent);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(247, 127, 0, 0.2);
}

/* Responsividade para telas menores */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 2rem 0;
    min-width: 0;
    width: 100%;

    .half-width {
      width: 100%;
      padding: 1.5rem;
      align-items: flex-start;
      text-align: left;
    }

    h1 {
      font-size: 2.2rem;
    }

    p {
      font-size: 1.1rem;
    }
  }

  .planta {
    flex-direction: column;
    height: auto;

    .plant-description-container,
    .plant-image {
      width: 100%;
      height: auto;
    }

    .plant-image {
      margin-top: 2rem;
    }
  }

  .gallery {
    padding: 3rem 1.5rem;

    .gallery-title {
      font-size: 2.2rem;
    }

    .gallery-subtitle {
      font-size: 1.1rem;
    }
  }

  .modelos {
    padding: 4rem 1.5rem;

    .modelos-header h1 {
      font-size: 2.2rem;
    }

    .modelos-subtitle {
      font-size: 1.1rem;
    }

    .modelos-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .modelo-card {
      padding: 2rem;

      h2 {
        font-size: 1.7rem;
      }

      .frase {
        font-size: 1rem;
      }

      .preco {
        font-size: 1.4rem;
      }
    }
  }

  .plant-image {
    justify-content: center;
    align-items: center;
    padding: 1rem 0;

    img {
      max-width: 90vw;
    }
  }
}

@media (max-width: 768px) {
  .half-width {
    width: 100%;
    padding: 1rem;
  }

  .hero {
    h1 {
      font-size: 1.7rem;
    }

    p {
      font-size: 1rem;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
    }
  }

  .gallery {
    padding: 2.5rem 1rem;

    .gallery-title {
      font-size: 1.8rem;
    }

    .gallery-subtitle {
      font-size: 1rem;
    }
  }

  .modelos {
    padding: 3rem 1rem;

    .modelos-header h1 {
      font-size: 1.8rem;
    }

    .modelos-subtitle {
      font-size: 1rem;
    }

    .modelos-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .modelo-card {
      padding: 1.5rem;
      border-radius: 16px;

      &.destaque::after {
        font-size: 0.7rem;
        padding: 0.4rem 2.5rem;
        right: -1.5rem;
      }

      h2 {
        font-size: 1.5rem;
      }

      .frase {
        font-size: 0.95rem;
      }

      .preco {
        font-size: 1.3rem;

        span {
          font-size: 0.9rem;
        }
      }

      ul li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;

        i {
          font-size: 1rem;
        }
      }
    }
  }

  .contato {
    padding: 2rem 1rem;

    h1 {
      font-size: 1.8rem;
    }

    .contato-form {
      padding: 0;
    }
  }

  .plant-image img {
    max-width: 100vw;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 1rem 0;

    h1 {
      font-size: 1.4rem;
    }

    p {
      font-size: 0.95rem;
    }
  }

  .gallery {
    padding: 2rem 0.5rem;

    .gallery-title {
      font-size: 1.5rem;
    }

    .gallery-subtitle {
      font-size: 0.9rem;
    }
  }

  .planta .feature-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .modelos {
    padding: 2rem 0.5rem;

    .modelos-header h1 {
      font-size: 1.5rem;
    }

    .modelos-subtitle {
      font-size: 0.9rem;
    }

    .modelos-grid {
      gap: 1rem;
    }

    .modelo-card {
      padding: 1.25rem;
      border-radius: 12px;

      &.destaque::after {
        display: none; /* Hide ribbon on very small screens */
      }

      h2 {
        font-size: 1.3rem;
      }

      .frase {
        font-size: 0.9rem;
      }

      .preco {
        font-size: 1.2rem;

        span {
          font-size: 0.8rem;
        }
      }

      ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;

        &:hover:not(.indisponivel) {
          margin: 0 -0.5rem 0.5rem -0.5rem;
          padding: 0.5rem;
        }
      }
    }
  }

  .contato {
    padding: 1.5rem 0.5rem;

    h1 {
      font-size: 1.5rem;
    }
  }
}

@media (max-width: 900px) {
  .hero .hero-buttons {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero .half-width {
    align-items: center;
    text-align: center;
  }
}