/**
 * Estilos para la sección "Powerful Tools for Your Inbox"
 * Muestra las características clave de Titan Email
 */

.titan-inbox-tools {
    background-color: #f5f9ff;
    padding: 60px 0;
    margin: 40px 0;
}

.titan-inbox-tools .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.titan-inbox-tools .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.titan-inbox-tools .section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.tool-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6f0ff;
    border-radius: 50%;
}

.tool-icon i {
    font-size: 30px;
    color: #0060fe;
}

.tool-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tool-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .titan-inbox-tools {
        padding: 50px 0;
    }
    
    .titan-inbox-tools .section-title h2 {
        font-size: 32px;
    }
    
    .tool-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .titan-inbox-tools {
        padding: 40px 0;
    }
    
    .titan-inbox-tools .section-title h2 {
        font-size: 28px;
    }
    
    .titan-inbox-tools .section-title p {
        font-size: 16px;
    }
    
    .tool-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .titan-inbox-tools {
        padding: 30px 15px;
    }
    
    .titan-inbox-tools .section-title h2 {
        font-size: 24px;
    }
    
    .tool-card {
        padding: 20px 15px;
    }
    
    .tool-icon {
        width: 60px;
        height: 60px;
    }
    
    .tool-icon i {
        font-size: 24px;
    }
}