/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header y Navegación */
.site-header {
    background-color: #800000;
    color: white;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}
.logo a img{
    width:20%;
}
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: #34495e;
}

/* Footer */
.site-footer {
    background-color: #800000;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
}

/* Formulario */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

/* Tarjetas de características */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Alertas */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}









/* ===== FOOTER EMPRESARIAL ===== */
.site-footer {
    background: linear-gradient(135deg, #800000 0%, #5e2129 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #bbdefb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #3949ab;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-subtitle {
    color: #90caf9;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Oportunidades de negocio */
.business-opportunities {
    list-style: none;
}

.business-opportunities li {
    margin-bottom: 0.8rem;
    transition: transform 0.3s;
}

.business-opportunities li:hover {
    transform: translateX(5px);
}

.opportunity-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e3f2fd;
    text-decoration: none;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #42a5f5;
    transition: all 0.3s;
}

.opportunity-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #ff9800;
    color: #fff;
}

.opportunity-link i {
    font-size: 1.2rem;
    color: #64b5f6;
    min-width: 30px;
}

.opportunity-link div {
    flex: 1;
}

.opportunity-link strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 3px;
}

.opportunity-link span {
    font-size: 0.85rem;
    color: #90caf9;
}

/* Links del footer */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e3f2fd;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff9800;
}

.footer-links i {
    font-size: 0.8rem;
}

/* Información de contacto */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #e3f2fd;
}

.contact-info i {
    color: #64b5f6;
    min-width: 20px;
}

.newsletter {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.newsletter h4 {
    color: #bbdefb;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 5px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #90caf9;
}

.newsletter-form button {
    background: #42a5f5;
    color: white;
    border: none;
    border-radius: 4px;
    width: 40px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #2196f3;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #90caf9;
    margin-bottom: 0.5rem;
}

.business-call {
    color: #ffb74d !important;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Social links empresarial */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #42a5f5;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-sections {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .opportunity-link {
        padding: 10px;
    }
}

/* ===== PORTAL EMPRESARIAL ===== */
.business-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.business-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #bbdefb;
}

/* Estadísticas */
.business-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2rem;
    color: #42a5f5;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

/* Grid de opciones empresariales */
.business-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.business-option-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    display: block;
}

.business-option-card:hover {
    border-color: #42a5f5;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(66, 165, 245, 0.15);
}

.business-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.business-option-header i {
    font-size: 1.8rem;
    color: #42a5f5;
}

.business-option-header h3 {
    color: #1a237e;
    font-size: 1.2rem;
}

.business-option-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.business-option-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.business-option-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #555;
}

.business-option-features i {
    color: #4caf50;
    font-size: 0.9rem;
}

.business-option-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #42a5f5;
    font-weight: bold;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.business-option-cta i {
    transition: transform 0.3s;
}

.business-option-card:hover .business-option-cta i {
    transform: translateX(5px);
}







