/* 
 * empresa.css
 * Contiene estilos específicos de la página empresa.html,
 * incluyendo secciones como hero, target audience, optimization process,
 * cta, benefits, form, y sus media queries.
 */

/* Wrappers para extender los fondos a los márgenes */
.enterprise-hero-wrapper { background-color: #e6f0fa; width: 100%; }
.target-audience-wrapper { background-color: #fff; width: 100%; }
.optimization-process-wrapper { background-color: #f5f7fa; width: 100%; }
.cta-section-wrapper { background-color: #e6f0fa; width: 100%; }
.benefits-wrapper { background-color: #fff; width: 100%; }

.enterprise-hero { padding: 60px 0; text-align: center; }
.enterprise-hero-text h1 { font-size: 2.5em; color: #003087; margin-bottom: 20px; font-weight: 700; }
.enterprise-hero-text p { font-size: 1.1em; color: #555; max-width: 800px; margin: 0 auto; line-height: 1.8; }

.target-audience { padding: 40px 0; text-align: center; }
.target-audience h2 { font-size: 2em; color: #003087; margin-bottom: 20px; font-weight: 700; }
.target-audience p { font-size: 1em; color: #555; margin-bottom: 40px; line-height: 1.8; }
.target-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.target-grid--secondary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 20px; }
.target-card { background-color: #f9f9f9; padding: 25px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease; }
.target-card:hover { transform: translateY(-5px); }
.target-card i { font-size: 2.5em; color: #f4a261; margin-bottom: 15px; }
.target-card h3 { font-size: 1.3em; color: #003087; margin-bottom: 10px; font-weight: 500; }
.target-card p { font-size: 0.95em; color: #666; line-height: 1.6; }

.optimization-process { padding: 40px 0; text-align: center; }
.optimization-process h2 { font-size: 2em; color: #003087; margin-bottom: 20px; font-weight: 700; }
.optimization-process p { font-size: 1em; color: #555; margin-bottom: 40px; line-height: 1.8; }
.process-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.process-item { display: flex; flex-direction: column; align-items: center; gap: 10px; background-color: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
.process-item i { font-size: 2.5em; color: #f4a261; }
.process-item p { font-size: 0.95em; color: #666; margin: 0; line-height: 1.6; text-align: center; }
.process-item a { color: #003087; text-decoration: none; }
.process-item a:hover { color: #f4a261; }

.cta-section { padding: 40px 0; text-align: center; }
.cta-section h2 { font-size: 2em; color: #003087; margin-bottom: 20px; font-weight: 700; }
.cta-section p { font-size: 1em; color: #555; margin-bottom: 40px; line-height: 1.8; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.step-card { background-color: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); position: relative; }
.step-number { position: absolute; top: 10px; left: 10px; background-color: #f4a261; color: #fff; border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; font-size: 1em; }
.step-card h3 { font-size: 1.2em; color: #003087; margin-top: 35px; margin-bottom: 10px; font-weight: 500; }
.step-card p { font-size: 0.9em; color: #666; line-height: 1.5; }

.benefits { padding: 40px 0; text-align: center; background-color: #fff; }
.benefits h2 { font-size: 2em; color: #003087; margin-bottom: 20px; font-weight: 700; }
.benefits p { font-size: 1em; color: #555; margin-bottom: 40px; line-height: 1.8; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.benefit-card { background-color: #f9f9f9; padding: 20px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; }
.benefit-card:hover { transform: translateY(-5px); }
.benefit-icon { font-size: 2.5em; color: #f4a261; margin-bottom: 15px; }
.benefit-card h3 { font-size: 1.2em; color: #003087; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9em; color: #666; line-height: 1.5; }
.benefit-card a { color: #003087; text-decoration: none; }
.benefit-card a:hover { color: #f4a261; }

.cta-section { padding: 40px 0; text-align: center; }
.cta-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.cta-image { flex: 0 0 40%; text-align: center; }
.cta-image__img { max-width: 300px; height: auto; }
.cta-text { flex: 0 0 55%; text-align: left; }
.cta-text h2 { font-size: 2em; color: #003087; margin-bottom: 20px; font-weight: 700; }
.cta-text p { font-size: 1em; color: #555; margin-bottom: 20px; line-height: 1.8; }
.cta-button { background-color: #f4a261; color: #fff; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-size: 1em; transition: background-color 0.3s ease, transform 0.2s ease; display: inline-block; }
.cta-button:hover { background-color: #e08e4e; transform: translateY(-2px); }

/* Media queries específicas de empresa.html */
@media (max-width: 992px) {
  .target-grid, .target-grid--secondary, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-image, .cta-text { flex: 1; }
  .cta-text { text-align: center; }
}

@media (max-width: 768px) {
  .enterprise-hero { padding: 40px 0; }
  .enterprise-hero-text h1 { font-size: 2em; }
  .enterprise-hero-text p { font-size: 1em; }
  .target-audience, .optimization-process, .cta-section, .benefits { padding: 20px 0; }
  .target-grid, .target-grid--secondary, .benefit-grid { grid-template-columns: 1fr; }
  .cta-image__img { max-width: 250px; }
}

@media (max-width: 480px) {
  .enterprise-hero-text h1 { font-size: 1.6em; }
  .enterprise-hero-text p { font-size: 0.9em; }
  .target-audience h2, .optimization-process h2, .cta-section h2, .benefits h2 { font-size: 1.6em; }
  .target-card h3, .process-item p, .step-card h3, .benefit-card h3 { font-size: 1.1em; }
  .target-card p, .step-card p, .benefit-card p { font-size: 0.85em; }
  .cta-text h2 { font-size: 1.6em; }
  .cta-text p { font-size: 0.9em; }
}