/* /public/assets/css/chatbot.css */

/* Estilos específicos y modernos para la Landing del Chatbot */
.chatbot-hero {
    background-color: #181a1c;
    color: white;
    padding: 80px 7%;
    text-align: center;
    background-image: url('/assets/images/Main Slider/Background/sliderback.svg');
    background-size: cover;
    background-position: center;
}
.chatbot-hero h1 { 
    color: #030303; 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    font-weight: 900; 
}
.chatbot-hero p { 
    font-size: 1.2rem; 
    max-width: 800px; 
    margin: 0 auto 40px auto; 
    color: #e0e0e0; 
    line-height: 1.6;
}

.demo-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 80px 7%;
    background-color: #f8f9fa;
    align-items: center;
}
.demo-text { 
    flex: 1; 
    min-width: 300px; 
}
.demo-text h2 { 
    font-size: 2.5rem; 
    color: #181a1c; 
    margin-bottom: 20px; 
    font-weight: 800;
}
.demo-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}
.demo-text ul { 
    list-style: none; 
    padding: 0; 
}
.demo-text ul li { 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    color: #333;
}
.demo-text ul li i { 
    color: #fece1a; 
    font-size: 1.5rem; 
    margin-top: 3px;
}

.demo-widget {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 600px;
    overflow: hidden;
    position: relative;
    border: 4px solid #181a1c;
    display: flex;
    flex-direction: column;
}

.demo-header {
    background: #181a1c;
    color: #fece1a;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-section {
    text-align: center;
    padding: 80px 7%;
    background-color: #fff;
}
.cta-section h2 {
    font-size: 2.5rem;
    color: #181a1c;
    margin-bottom: 30px;
}
.cta-btn {
    display: inline-block;
    background-color: #fece1a;
    color: #181a1c;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(254, 206, 26, 0.4);
}
.cta-btn:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(254, 206, 26, 0.6);
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .chatbot-hero h1 { font-size: 2.5rem; }
    .demo-text h2 { font-size: 2rem; }
    .demo-widget { height: 500px; }
}

/* Estilos para la nueva sección de Beneficios */
.benefits-section {
    padding: 80px 7%;
    background-color: #ffffff;
    text-align: center;
}
.benefits-section h2 {
    font-size: 2.5rem;
    color: #181a1c;
    margin-bottom: 10px;
    font-weight: 800;
}
.benefits-section > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.benefit-card {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: #fece1a;
}
.benefit-card i {
    font-size: 3rem;
    color: #fece1a;
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 1.3rem;
    color: #181a1c;
    margin-bottom: 15px;
    font-weight: bold;
}
.benefit-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}